Un dashbord très sympa, convivial et très facile à configurer, à mon avis plus moderne visuellement que Organizr.
En recherchant sur Mondedie et mis à part un post de @Aerya ici (on voit ceux qui trainent vers Cloudbox 😋), je n'ai rien trouvé d'autre concernant Heimdall, d’où l'occasion de vous le faire découvrir.
VIDEO
Install en docker -traefik
création du fichier traefik.toml
nano /home/user/traefik/traefik.toml
Copier dedans le contenu ci dessous
defaultEntryPoints = ["https","http"]
InsecureSkipVerify = true
[api]
entryPoint = "traefik"
dashboard = true
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
minVersion = "VersionTLS12"
cipherSuites = [
"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305",
"TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384",
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256",
"TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA",
"TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA"
]
[entryPoints.traefik]
address = ":8080"
[acme]
email = "admin@example.com"
storage = "/etc/traefik/acme/acme.json"
entryPoint = "https"
onHostRule = true
onDemand = false
[acme.httpChallenge]
entryPoint = "http"
[docker]
endpoint = "unix:///var/run/docker.sock"
domain = "example.com"
watch = true
exposedbydefault = false
Puis le docker-compose
version: '3'
services:
traefik:
image: traefik
container_name: traefik
restart: unless-stopped
hostname: traefik
labels:
- traefik.enable=true
- traefik.frontend.rule=Host:traefik.example.com
- traefik.port=80
- traefik.docker.network=traefik_proxy
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- /home/user/traefik/traefik.toml:/traefik.toml:ro
- /home/user/letsencrypt/certs:/etc/traefik/acme:rw
ports:
- "80:80"
- "443:443"
networks:
- proxy
heimdall:
container_name: heimdall
image: linuxserver/heimdall
restart: unless-stopped
hostname: heimdall
labels:
- traefik.enable=true
- traefik.frontend.rule=Host:heimdall.example.com
- traefik.port=443
- traefik.docker.network=traefik_proxy
- traefik.protocol=https
environment:
- TZ=Paris/Europe
- PUID=1001
- PGID=1001
volumes:
- /home/user/heimdall/config:/config
networks:
- proxy
networks:
proxy:
external:
name: traefik_proxy
https://upandclear.org/2018/09/16/heimdall-une-page-daccueil-avec-vos-raccourcis-multimedia/
N'oubliez pas de changer adresse mail, domaine et user