Skip to content

Commit

Permalink
fix(devops): update docker-compose.dev.yml to remove restart on failu…
Browse files Browse the repository at this point in the history
…re statements for backend and client for dev deployment
  • Loading branch information
Meminseeker authored Nov 18, 2024
1 parent 044f827 commit a540279
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ services:
./wait-for-it.sh db:3306 --
python manage.py migrate &&
python manage.py runserver 0.0.0.0:8000"
restart: "on-failure"
env_file: ./.env.dev
depends_on:
db:
Expand All @@ -45,7 +44,6 @@ services:
container_name: client
command: >
sh -c "serve -s dist -l 3310"
restart: "on-failure"
env_file: ./.env.dev
depends_on:
- backend
Expand Down

0 comments on commit a540279

Please sign in to comment.