Files
notification/stack.yaml
A'zamov Samandar 2bbe34f703
Some checks failed
Deploy to Production / build-and-deploy (push) Failing after 15s
feat(devops)
2025-11-05 19:41:57 +05:00

36 lines
669 B
YAML

version: "3.8"
services:
notification:
image: jscorptech/taxi-notification:latest
env_file:
- /opt/env/.notification
networks:
- taxi
deploy:
mode: replicated
restart_policy:
condition: any
update_config:
parallelism: 1
order: start-first
failure_action: rollback
monitor: 10s
delay: 10s
max_failure_ratio: 0.2
resources:
limits:
cpus: "2"
memory: 1024M
logging:
driver: json-file
options:
max-size: "10m"
max-file: 10
networks:
taxi:
driver: overlay
external: true
attachable: true