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:
parent
0601e00064
commit
10626b49d8
5 changed files with 4 additions and 4 deletions
|
|
@ -9,7 +9,7 @@ services:
|
||||||
container_name: app
|
container_name: app
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: ./Dockerfiles/Dockerfile.app
|
dockerfile: ./Dockerfiles/app.Dockerfile
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
|
|
@ -128,7 +128,7 @@ services:
|
||||||
container_name: worker
|
container_name: worker
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: ./Dockerfiles/Dockerfile.worker
|
dockerfile: Dockerfiles/worker.Dockerfile
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
|
|
@ -156,7 +156,7 @@ services:
|
||||||
container_name: stock_updater
|
container_name: stock_updater
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: ./Dockerfiles/Dockerfile.stock_updater
|
dockerfile: Dockerfiles/stock_updater.Dockerfile
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
|
|
@ -184,7 +184,7 @@ services:
|
||||||
container_name: beat
|
container_name: beat
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: ./Dockerfiles/Dockerfile.beat
|
dockerfile: Dockerfiles/beat.Dockerfile
|
||||||
restart: always
|
restart: always
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue