From 19d87cc4719b4ccae91f537f041387261d83fd4f Mon Sep 17 00:00:00 2001 From: Junv Zhao Date: Sun, 5 Jan 2020 14:42:14 +1100 Subject: [PATCH] Move heimdall --- heimdall/docker-compose.yaml | 18 ++++++++++++++++++ plex/docker-compose.yaml | 13 ------------- 2 files changed, 18 insertions(+), 13 deletions(-) create mode 100644 heimdall/docker-compose.yaml 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