diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 40d832c..eafcf23 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,7 +13,7 @@ build: before_script: - docker login -u mathwave -p $DOCKERHUB_PASSWORD script: - - docker build -t sprint-base . + - docker build -t mathwave/sprint-repo:sprint . - docker build -t local_postgres dockerfiles/postgres - docker build -t local_rabbitmq dockerfiles/rabbitmq - docker push mathwave/sprint-repo:sprint diff --git a/docker-compose-deploy.yaml b/docker-compose-deploy.yaml index f1f0290..528d201 100644 --- a/docker-compose-deploy.yaml +++ b/docker-compose-deploy.yaml @@ -19,7 +19,7 @@ services: condition: on-failure migrations: - image: sprint-base + image: mathwave/sprint-repo:sprint command: ./manage.py migrate depends_on: - postgres @@ -29,7 +29,7 @@ services: condition: none web: - image: sprint-base + image: mathwave/sprint-repo:sprint environment: PORT: $PORT HOST: $HOST @@ -47,7 +47,7 @@ services: condition: on-failure storage: - image: sprint-base + image: mathwave/sprint-repo:sprint command: ./manage.py storage ports: - "5555:5555" @@ -59,7 +59,7 @@ services: condition: on-failure bot: - image: sprint-base + image: mathwave/sprint-repo:sprint environment: HOST: $HOST command: ./manage.py bot @@ -71,7 +71,7 @@ services: condition: on-failure loop: - image: sprint-base + image: mathwave/sprint-repo:sprint environment: HOST: $HOST command: ./manage.py loop @@ -93,7 +93,7 @@ services: condition: on-failure worker: - image: sprint-base + image: mathwave/sprint-repo:sprint privileged: true command: ./manage.py receive environment: @@ -114,7 +114,7 @@ services: condition: on-failure apply-languages: - image: sprint-base + image: mathwave/sprint-repo:sprint command: ./manage.py apply_languages depends_on: - migrations @@ -126,7 +126,7 @@ services: condition: none notify-admin: - image: sprint-base + image: mathwave/sprint-repo:sprint command: ./manage.py success_deploy depends_on: - migrations