30 lines
552 B
YAML
30 lines
552 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
timeline:
|
|
init: true
|
|
image: schmelczera/timeline
|
|
networks:
|
|
- network
|
|
deploy:
|
|
replicas: 3
|
|
resources:
|
|
limits:
|
|
# no cpu limit
|
|
memory: 16M
|
|
reservations:
|
|
cpus: '0.2'
|
|
memory: 16M
|
|
placement:
|
|
max_replicas_per_node: 1
|
|
update_config:
|
|
parallelism: 1
|
|
failure_action: rollback
|
|
delay: 10s
|
|
monitor: 10s
|
|
restart_policy:
|
|
condition: on-failure
|
|
window: 30s
|
|
|
|
networks:
|
|
network:
|