diff --git a/docker-compose.yaml b/docker-compose.yaml index 20e8ad2b..d5576b22 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -18,7 +18,7 @@ services: command: sh -c "exec redis-server --requirepass \"$${REDIS_PASSWORD}\"" migration: - image: ${REGISTRY}/${REPOSITORY}:${IMAGE_TAG:-latest} + image: ${IMAGE_NAME}:${IMAGE_TAG:-latest} depends_on: db: condition: service_healthy @@ -35,7 +35,7 @@ services: command: sh -c "./manage.py migrate" worker: - image: ${REGISTRY}/${REPOSITORY}_eks:${IMAGE_TAG:-latest} + image: ${IMAGE_NAME}_eks:${IMAGE_TAG:-latest} depends_on: redis: condition: service_started @@ -62,7 +62,7 @@ services: frontend: # Apologies to future devops. Naming is hard. - image: ${REGISTRY}/${REPOSITORY}_eks:${IMAGE_TAG:-latest} + image: ${IMAGE_NAME}_eks:${IMAGE_TAG:-latest} build: context: . # network: ${NETWORK:-default}