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
787 B
YAML
Raw Normal View History

2020-07-22 20:29:58 +02:00
---
2022-03-07 11:58:11 +01:00
version: "3"
2020-07-22 20:29:58 +02:00
services:
heimdall:
image: linuxserver/heimdall
container_name: heimdall
environment:
2022-03-07 11:10:46 +01:00
- PUID=1000
- PGID=100
2020-07-22 20:29:58 +02:00
- TZ=Europe/Zurich
volumes:
2022-03-07 11:10:16 +01:00
- heimdall:/config
2020-07-22 20:29:58 +02:00
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
2022-03-15 23:40:31 +01:00
networks:
2022-03-16 09:05:16 +01:00
- proxy
2022-03-07 11:10:16 +01:00
volumes:
heimdall:
driver_opts:
type: "nfs"
o: "addr=10.7.89.108,nolock,hard,rw,vers=4.1"
2022-03-07 11:10:16 +01:00
device: ":/server_data/heimdall"
2022-03-15 23:40:31 +01:00
networks:
proxy:
external:
2022-03-16 09:05:16 +01:00
name: "proxy"