19 lines
563 B
YAML
19 lines
563 B
YAML
|
networks:
|
||
|
default:
|
||
|
enable_ipv6: true
|
||
|
|
||
|
services:
|
||
|
server:
|
||
|
image: git.gnous.eu/gnouseu/maintenance:latest
|
||
|
restart: always
|
||
|
read_only: true
|
||
|
ports:
|
||
|
- "8081:80"
|
||
|
labels:
|
||
|
- "traefik.enable=true"
|
||
|
- "traefik.http.routers.gnousdoteu.entryPoints=websecure"
|
||
|
- "traefik.http.routers.gnousdoteu.rule=Host(`gnous.eu`)"
|
||
|
- "traefik.http.routers.gnousdoteu.tls=true"
|
||
|
- "traefik.http.routers.gnousdoteu.tls.certresolver=defaultacme"
|
||
|
- "traefik.http.routers.gnousdoteu.middlewares=proxyHeader@file,proxyError@file"
|