mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-12-01 12:45:00 +01:00
16 lines
286 B
YAML
16 lines
286 B
YAML
|
---
|
||
|
version: "2.1"
|
||
|
services:
|
||
|
heimdall:
|
||
|
image: lscr.io/linuxserver/heimdall:latest
|
||
|
container_name: heimdall
|
||
|
environment:
|
||
|
- PUID=1000
|
||
|
- PGID=1000
|
||
|
volumes:
|
||
|
- ./heimdall/config:/config
|
||
|
ports:
|
||
|
- 80:80
|
||
|
- 443:443
|
||
|
restart: unless-stopped
|