66 lines
1.4 KiB
YAML
66 lines
1.4 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
|
|
nginx:
|
|
image: bunkerity/bunkerized-nginx
|
|
ports:
|
|
- published: 80
|
|
target: 8080
|
|
mode: host
|
|
protocol: tcp
|
|
- published: 443
|
|
target: 8443
|
|
mode: host
|
|
protocol: tcp
|
|
environment:
|
|
- SWARM_MODE=yes
|
|
- USE_API=yes
|
|
- API_URI=/ChangeMeToSomethingHardToGuess # must match API_URI from autoconf
|
|
- MULTISITE=yes
|
|
- SERVER_NAME=
|
|
- AUTO_LETS_ENCRYPT=yes
|
|
networks:
|
|
- bunkerized-net
|
|
- services-net
|
|
deploy:
|
|
mode: global
|
|
placement:
|
|
constraints:
|
|
- "node.role==worker"
|
|
# mandatory label
|
|
labels:
|
|
- "bunkerized-nginx.AUTOCONF"
|
|
|
|
autoconf:
|
|
image: bunkerity/bunkerized-nginx-autoconf
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- cache-vol:/cache
|
|
- certs-vol:/etc/letsencrypt
|
|
environment:
|
|
- SWARM_MODE=yes
|
|
- API_URI=/ChangeMeToSomethingHardToGuess # must match API_URI from nginx
|
|
networks:
|
|
- bunkerized-net
|
|
deploy:
|
|
replicas: 1
|
|
placement:
|
|
constraints:
|
|
- "node.role==manager"
|
|
|
|
# This will create the networks for you
|
|
networks:
|
|
bunkerized-net:
|
|
driver: overlay
|
|
attachable: true
|
|
name: bunkerized-net
|
|
services-net:
|
|
driver: overlay
|
|
attachable: true
|
|
name: services-net
|
|
# And the volumes too
|
|
volumes:
|
|
cache-vol:
|
|
certs-vol:
|