mirror of
https://github.com/cupcakearmy/rauchmelder.git
synced 2024-12-22 16:16:28 +00:00
22 lines
430 B
YAML
22 lines
430 B
YAML
version: '3.6'
|
|
|
|
services:
|
|
home:
|
|
image: nginx:alpine
|
|
restart: always
|
|
ports:
|
|
- 80
|
|
volumes:
|
|
- ./public:/usr/share/nginx/html:ro
|
|
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 |