ops/stacks/ftsco/stack.yml

35 lines
672 B
YAML

version: "3.7"
networks:
mother:
external: true
services:
website:
image: registry.vnfco.ir/ftsco/website:latest
environment:
- TZ=Asia/Tehran
deploy:
update_config:
parallelism: 1
delay: 10s
order: start-first
restart_policy:
condition: any
delay: 5s
window: 120s
replicas: 1
mode: replicated
volumes:
- type: bind
source: /etc/localtime
target: /etc/localtime
read_only: true
- type: bind
source: /etc/timezone
target: /etc/timezone
read_only: true
ports:
- 3000:3000
networks:
- mother