Features: 1) None;

Fixes: 1) Corrected `docker-compose.yml` to reference renamed Dockerfiles for `app`, `worker`, `stock_updater`, and `beat`;

Extra: 1) Renamed Dockerfiles to align with consistent naming convention.
This commit is contained in:
Egor Pavlovich Gorbunov 2025-09-13 15:15:27 +03:00
parent 0601e00064
commit 10626b49d8
5 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ services:
container_name: app
build:
context: .
dockerfile: ./Dockerfiles/Dockerfile.app
dockerfile: ./Dockerfiles/app.Dockerfile
restart: always
volumes:
- .:/app
@ -128,7 +128,7 @@ services:
container_name: worker
build:
context: .
dockerfile: ./Dockerfiles/Dockerfile.worker
dockerfile: Dockerfiles/worker.Dockerfile
restart: always
volumes:
- .:/app
@ -156,7 +156,7 @@ services:
container_name: stock_updater
build:
context: .
dockerfile: ./Dockerfiles/Dockerfile.stock_updater
dockerfile: Dockerfiles/stock_updater.Dockerfile
restart: always
volumes:
- .:/app
@ -184,7 +184,7 @@ services:
container_name: beat
build:
context: .
dockerfile: ./Dockerfiles/Dockerfile.beat
dockerfile: Dockerfiles/beat.Dockerfile
restart: always
volumes:
- .:/app