Created
October 17, 2020 01:00
-
-
Save TheTinkerDad/f29058bcdec6a7b2a47af331978a203b to your computer and use it in GitHub Desktop.
Super-simple Docker Compose configuration for running Heimdall
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: "2.0" | |
volumes: | |
heimdall-data: | |
services: | |
heimdall: | |
image: linuxserver/heimdall:latest | |
ports: | |
- 9999:80 | |
environment: | |
- TZ=Europe/Budapest | |
volumes: | |
- heimdall-data:/config | |
restart: always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment