forked from flavioaiello/swarm-router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstack-b.yml
45 lines (41 loc) · 888 Bytes
/
stack-b.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
version: '3.2'
services:
swarm-router:
image: flavioaiello/swarm-router:latest
environment:
- HTTP_PORTS=8080
- TLS_PORTS=8443
- DNS_BACKEND_FQDN=false
- HTTP_BACKENDS_PORT=whoami:8000
networks:
default:
swarm_routing:
aliases:
- swarm-router.stack-b.localtest.me
- whoami.stack-b.localtest.me
healthcheck:
test: nc -w 7 -zvv 0.0.0.0 1111
interval: 30s
timeout: 30s
retries: 20
deploy:
resources:
reservations:
cpus: '0.05'
memory: 8M
limits:
memory: 8M
mode: replicated
replicas: 1
restart_policy:
condition: any
delay: 5s
max_attempts: 10
whoami:
image: jwilder/whoami:latest
networks:
default:
internal: true
driver: overlay
swarm_routing:
external: true