diff --git a/heimdall/docker-compose.yaml b/heimdall/docker-compose.yaml new file mode 100644 index 0000000..dadc216 --- /dev/null +++ b/heimdall/docker-compose.yaml @@ -0,0 +1,18 @@ +version: '3' +services: + heimdall: + image: linuxserver/heimdall + container_name: heimdall + restart: unless-stopped + environment: + - TZ=Australia/Melbourne + - VIRTUAL_HOST=index.home.toozhao.com + - LETSENCRYPT_HOST=index.home.toozhao.com + - LETSENCRYPT_EMAIL=me@toozhao.com + volumes: + - ${CONFIG_DIR}/heimdall:/config + networks: + - gateway_default +networks: + gateway_default: + external: true diff --git a/plex/docker-compose.yaml b/plex/docker-compose.yaml index 4a03c76..39528a1 100644 --- a/plex/docker-compose.yaml +++ b/plex/docker-compose.yaml @@ -72,19 +72,6 @@ services: - /mnt/downloads:/movies networks: - gateway_default - heimdall: - image: linuxserver/heimdall - container_name: heimdall - restart: unless-stopped - environment: - - TZ=Australia/Melbourne - - VIRTUAL_HOST=index.home.toozhao.com - - LETSENCRYPT_HOST=index.home.toozhao.com - - LETSENCRYPT_EMAIL=me@toozhao.com - volumes: - - ${CONFIG_DIR}/heimdall:/config - networks: - - gateway_default networks: gateway_default: external: true