46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
# Docker Compose File für Wizarr
|
|
# docker-compose -f docker-compose.wizarr.yml up -d
|
|
version: '3.5'
|
|
|
|
networks:
|
|
wizarr:
|
|
traefik:
|
|
external: true
|
|
|
|
services:
|
|
wizarr:
|
|
image: ghcr.io/wizarrrr/wizarr:4.1.1
|
|
container_name: wizarr
|
|
restart: always
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Berlin
|
|
ports:
|
|
- "5690:5690"
|
|
networks:
|
|
- wizarr
|
|
- traefik
|
|
volumes:
|
|
- "/docker/wizarr/database:/data/database"
|
|
logging:
|
|
driver: "gelf"
|
|
options:
|
|
gelf-address: "udp://192.168.1.250:12201"
|
|
labels:
|
|
# - "traefik.docker.network=traefik"
|
|
- "traefik.enable=false"
|
|
# - "traefik.backend=shaarli"
|
|
# - "traefik.passHostHeader=true"
|
|
# - 'traefik.frontend.rule=Host:bm.czechman.dynvpn.de;PathPrefixStrip: /'
|
|
# - "traefik.frontend.auth.basic.users=McSeeno:$$2y$$13$$maYBYazCRDGmcKdSy/QA0eWBUEIpobxcUy.z68fnifcpoCqWm18wW"
|
|
# - "traefik.protocol=http"
|
|
# - "traefik.port=80"
|
|
# - "traefik.frontend.auth.forward.trustForwardHeader=true"
|
|
# - "traefik.frontend.auth.forward.tls.insecureSkipVerify=true"
|
|
# - "traefik.http.routers.shaarli.entypoint=web"
|
|
# - "traefik.http.routers.shaarli.rule=Host(`flix.czechman.dynvpn.de`)"
|
|
# - "traefik.http.routers.shaarli.entrypoints=websecure"
|
|
# - "traefik.http.routers.shaarli.tls.certresolver=myresolver"
|
|
|