37 lines
690 B
Markdown
37 lines
690 B
Markdown
# Heimdall
|
|
|
|
|
|
|
|
|
|
|
|
| Création | dockge |
|
|
| ----------- | ---------------------------------- |
|
|
| Mise-à-jour | Watchtower |
|
|
| Ports | 8056 |
|
|
| Liens | [Heimdall](https://heimdall.site/) |
|
|
|
|
|
|
|
|
```yaml
|
|
name: heimdall
|
|
services:
|
|
heimdall:
|
|
container_name: heimdall
|
|
ports:
|
|
- 8056:80
|
|
- 7543:443
|
|
environment:
|
|
- PUID=1026
|
|
- PGID=100
|
|
- TZ=Europe/Paris
|
|
labels:
|
|
- com.centurylinklabs.watchtower.enable=true
|
|
volumes:
|
|
- /volume1/docker/dockge/stacks/heimdall:/config
|
|
restart: always
|
|
image: ghcr.io/linuxserver/heimdall
|
|
networks: {}
|
|
|
|
```
|
|
|