Fix incorrect docker image tag

This commit is contained in:
Keannu Bernasol 2024-09-15 00:32:01 +08:00
parent 0ec3cc2697
commit 97bcf6295b

View file

@ -4,7 +4,7 @@ services:
# Django Backend # Django Backend
django: django:
env_file: .env env_file: .env
image: keannu125/drf_template:latest image: keannu125/drf-template:latest
ports: ports:
- "${BACKEND_PORT}:8000" - "${BACKEND_PORT}:8000"
environment: environment:
@ -20,7 +20,7 @@ services:
env_file: .env env_file: .env
environment: environment:
- RUN_TYPE=worker - RUN_TYPE=worker
image: keannu125/drf_template:latest image: keannu125/drf-template:latest
depends_on: depends_on:
- django - django
- postgres - postgres
@ -33,7 +33,7 @@ services:
env_file: .env env_file: .env
environment: environment:
- RUN_TYPE=beat - RUN_TYPE=beat
image: keannu125/drf_template:latest image: keannu125/drf-template:latest
depends_on: depends_on:
- celery - celery
- django - django