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:
env_file: .env
image: keannu125/drf_template:latest
image: keannu125/drf-template:latest
ports:
- "${BACKEND_PORT}:8000"
environment:
@ -20,7 +20,7 @@ services:
env_file: .env
environment:
- RUN_TYPE=worker
image: keannu125/drf_template:latest
image: keannu125/drf-template:latest
depends_on:
- django
- postgres
@ -33,7 +33,7 @@ services:
env_file: .env
environment:
- RUN_TYPE=beat
image: keannu125/drf_template:latest
image: keannu125/drf-template:latest
depends_on:
- celery
- django