Skip to content

Commit

Permalink
Adjust demo containers restart
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorvsk committed Nov 19, 2023
1 parent 0baf71d commit 6b6ae34
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion demo/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ services:
webserver:
build:
context: ..
restart: unless-stopped
env_file: ./.env
ports:
- 3000:3000
Expand All @@ -105,6 +106,7 @@ services:
worker:
build:
context: ..
restart: unless-stopped
env_file: ./.env
command: bin/worker
depends_on:
Expand All @@ -113,6 +115,7 @@ services:
scheduler:
build:
context: ..
restart: unless-stopped
env_file: ./.env
command: bin/scheduler
depends_on:
Expand All @@ -121,7 +124,7 @@ services:
mirrors:
build:
context: ..
restart: always
restart: unless-stopped
env_file: ./.env
command: bin/mirrors
depends_on:
Expand Down

0 comments on commit 6b6ae34

Please sign in to comment.