This repository has been archived on 2022-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
docker_systems/heimdall/docker-compose.yml

34 lines
803 B
YAML

---
version: "3"
services:
heimdall:
image: linuxserver/heimdall
container_name: heimdall
environment:
- PUID=1000
- PGID=100
- TZ=Europe/Zurich
volumes:
- heimdall:/config
labels:
- "traefik.enable=true"
- "traefik.http.routers.heimdall.rule=Host(`heimdall.2li.ch`)"
- "traefik.http.routers.heimdall.entrypoints=websecure"
- "traefik.http.routers.heimdall.tls.certresolver=myresolver"
- "traefik.http.routers.heimdall.middlewares=default-headers@file"
restart: unless-stopped
networks:
- traefik_proxy
volumes:
heimdall:
driver_opts:
type: "nfs"
o: "addr=10.7.89.108,nolock,soft,rw,vers=4.1"
device: ":/server_data/heimdall"
networks:
proxy:
external:
name: "traefik_proxy"