Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
danial29rus committed Mar 3, 2023
1 parent d45889b commit 7b4c166
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ services:
- redis_data:/data

booking:
env_file: .env
env_file: .env-non-dev
build:
context: .
command: bash -c "alembic upgrade fe06c327c5a1 && uvicorn app.main:app --host 0.0.0.0 --port 8000"
command: bash -c "alembic upgrade head && uvicorn app.main:app --host 0.0.0.0 --port 8000"
container_name: booking_app
ports:
- 8000:8000
Expand All @@ -37,7 +37,7 @@ services:


celery:
env_file: .env
env_file: .env-non-dev
build:
context: .
container_name: booking_celery
Expand All @@ -46,7 +46,7 @@ services:
- redis

flower:
env_file: .env
env_file: .env-non-dev
build:
context: .
container_name: booking_flower
Expand Down

0 comments on commit 7b4c166

Please sign in to comment.