rauchmelder/docker-compose.prod.yml

22 lines
430 B
YAML
Raw Normal View History

2019-11-08 21:36:04 +00:00
version: '3.6'
2019-03-05 00:21:52 +00:00
services:
home:
2019-11-08 21:36:04 +00:00
image: nginx:alpine
restart: always
ports:
- 80
volumes:
- ./public:/usr/share/nginx/html:ro
2019-03-05 00:21:52 +00:00
networks:
- traefik
labels:
- traefik.enable=true
- traefik.port=80
- traefik.docker.network=traefik
- traefik.backend=rauchmelder
- traefik.frontend.rule=Host:rauchmelder.nicco.io
networks:
traefik:
external: true