All checks were successful
Deploy Dev / Build (pull_request) Successful in 5s
Deploy Dev / Push (pull_request) Successful in 7s
Deploy Dev / Deploy dev (pull_request) Successful in 7s
Deploy Prod / Build (pull_request) Successful in 5s
Deploy Prod / Push (pull_request) Successful in 7s
Deploy Prod / Deploy prod (pull_request) Successful in 9s
42 lines
853 B
YAML
42 lines
853 B
YAML
version: "3.4"
|
|
|
|
|
|
services:
|
|
queues-nginx:
|
|
image: mathwave/sprint-repo:queues
|
|
networks:
|
|
- common-infra-nginx
|
|
environment:
|
|
MONGO_HOST: "mongo.develop.sprinthub.ru"
|
|
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
|
QUEUES_TOKEN: $QUEUES_TOKEN_DEV
|
|
deploy:
|
|
mode: replicated
|
|
restart_policy:
|
|
condition: any
|
|
update_config:
|
|
parallelism: 1
|
|
order: start-first
|
|
|
|
queues:
|
|
image: mathwave/sprint-repo:queues
|
|
networks:
|
|
- queues
|
|
environment:
|
|
MONGO_HOST: "mongo.develop.sprinthub.ru"
|
|
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
|
NEW: "true"
|
|
deploy:
|
|
mode: replicated
|
|
restart_policy:
|
|
condition: any
|
|
update_config:
|
|
parallelism: 1
|
|
order: start-first
|
|
|
|
networks:
|
|
common-infra-nginx:
|
|
external: true
|
|
queues:
|
|
external: true
|