29 lines
627 B
YAML
29 lines
627 B
YAML
version: "3.4"
|
|
|
|
|
|
services:
|
|
certupdater:
|
|
image: mathwave/sprint-repo:certupdater
|
|
command: worker
|
|
environment:
|
|
MINIO_HOST: "minio.develop.sprinthub.ru"
|
|
MINIO_SECRET_KEY: $MINIO_SECRET_KEY_DEV
|
|
MONGO_HOST: "mongo.develop.sprinthub.ru"
|
|
MONGO_PASSWORD: $MONGO_PASSWORD_DEV
|
|
STAGE: "development"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
networks:
|
|
- configurator
|
|
deploy:
|
|
mode: replicated
|
|
restart_policy:
|
|
condition: any
|
|
update_config:
|
|
parallelism: 1
|
|
order: start-first
|
|
|
|
networks:
|
|
configurator:
|
|
external: true
|