All checks were successful
Deploy Dev / Build (pull_request) Successful in 4s
Deploy Dev / Push (pull_request) Successful in 7s
Deploy Dev / Deploy dev (pull_request) Successful in 10s
Deploy Prod / Build (pull_request) Successful in 5s
Deploy Prod / Push (pull_request) Successful in 7s
Deploy Prod / Deploy prod (pull_request) Successful in 10s
47 lines
1001 B
YAML
47 lines
1001 B
YAML
version: "3.4"
|
|
|
|
|
|
services:
|
|
worker:
|
|
image: mathwave/sprint-repo:pizda-bot
|
|
command: worker
|
|
environment:
|
|
MONGO_HOST: "mongo.develop.sprinthub.ru"
|
|
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
|
STAGE: "development"
|
|
networks:
|
|
- queues-development
|
|
- configurator
|
|
deploy:
|
|
mode: replicated
|
|
restart_policy:
|
|
condition: any
|
|
update_config:
|
|
parallelism: 1
|
|
order: start-first
|
|
|
|
pizda-bot-nginx:
|
|
image: mathwave/sprint-repo:pizda-bot
|
|
command: api
|
|
environment:
|
|
MONGO_HOST: "mongo.develop.sprinthub.ru"
|
|
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
|
STAGE: "development"
|
|
networks:
|
|
- common-infra-nginx-development
|
|
deploy:
|
|
mode: replicated
|
|
restart_policy:
|
|
condition: any
|
|
update_config:
|
|
parallelism: 1
|
|
order: start-first
|
|
|
|
networks:
|
|
common-infra-nginx-development:
|
|
external: true
|
|
queues-development:
|
|
external: true
|
|
configurator:
|
|
external: true
|