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/archive/heimdall/docker-compose.yml

23 lines
426 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
restart: unless-stopped
2022-05-17 23:10:56 +02:00
ports:
- 8081:80
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,noatime"
2022-03-07 11:10:16 +01:00
device: ":/server_data/heimdall"