26 lines
502 B
YAML
26 lines
502 B
YAML
version: "3.4"
|
|
|
|
|
|
services:
|
|
configurator:
|
|
image: mathwave/sprint-repo:configurator
|
|
networks:
|
|
- configurator-development
|
|
- monitoring
|
|
environment:
|
|
MONGO_HOST: "mongo.develop.sprinthub.ru"
|
|
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
|
deploy:
|
|
mode: replicated
|
|
restart_policy:
|
|
condition: any
|
|
update_config:
|
|
parallelism: 1
|
|
order: start-first
|
|
|
|
networks:
|
|
configurator-development:
|
|
external: true
|
|
monitoring:
|
|
external: true
|