Skip to content

Commit

Permalink
fix: Явно указал путь к Dockerfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonVagabond committed Mar 9, 2024
1 parent 5caf1de commit 00c8925
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ version: '3.11'
services:

web:
build: ./
build:
context: .
dockerfile: src/Dockerfile
command: python manage.py runserver 0.0.0.0:8000
container_name: web-online-store
volumes:
Expand Down Expand Up @@ -62,10 +64,11 @@ services:
- ./:/usr/src/app/
container_name: celery-beat-store
depends_on:
- web
- db
- redis
- rabbitmq
- web
- celery

volumes:
postgres_data:

0 comments on commit 00c8925

Please sign in to comment.