docker – Blame information for rev 57
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
57 | office | 1 | version: '3.8' |
2 | services: |
||
3 | flood: |
||
4 | image: docker.internal:5000/flood:latest |
||
5 | hostname: docker |
||
6 | user: 0:0 |
||
7 | ports: |
||
8 | - 3000:3000 |
||
9 | volumes: |
||
10 | - /mnt/swarm/docker/data/flood:/config |
||
11 | healthcheck: |
||
12 | test: curl -f http://localhost:3000/login || exit 1 |
||
13 | interval: 1m |
||
14 | timeout: 10s |
||
15 | retries: 3 |
||
16 | start_period: 60s |
||
17 | deploy: |
||
18 | labels: |
||
19 | - shepherd.enable=true |
||
20 | - shepherd.auth.config=local |
||
21 | replicas: 1 |
||
22 | placement: |
||
23 | max_replicas_per_node: 1 |