mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
32 lines
719 B
YAML
32 lines
719 B
YAML
---
|
|
version: "3"
|
|
|
|
###########################################################################################################################
|
|
# Heimdall (Homepage)
|
|
#
|
|
# DockerHub: https://hub.docker.com/r/linuxserver/heimdall
|
|
#
|
|
# SAMPLE ENV
|
|
# <intentionally blank>
|
|
#
|
|
# NOTES
|
|
#
|
|
# Make sure your volume is set correctly
|
|
#
|
|
# You can edit vol/www/.env
|
|
# For https include FORCE_HTTPS=true
|
|
#
|
|
###########################################################################################################################
|
|
|
|
services:
|
|
heimdall:
|
|
image: linuxserver/heimdall:2.5.6
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Vancouver
|
|
volumes:
|
|
- ./data:/config
|
|
restart: unless-stopped
|
|
|