From d147ed0310d9b01f99fb57fa447467ed81fb2dd4 Mon Sep 17 00:00:00 2001 From: Max Buz <79866323+xopek-by@users.noreply.github.com> Date: Sat, 23 Sep 2023 12:39:56 +0200 Subject: [PATCH] re-defined compose and .env file names --- .../{cloudflare_example.env => .env} | 0 .../{ddns-cloudflare.yaml => compose.yaml} | 1 + heimdall/{heimdall.yaml => compose.yaml} | 1 + immich/{immich_example.env => .env} | 0 immich/{immich.yaml => compose.yaml} | 0 mealie/.env | 5 +++ mealie/compose.yaml | 39 +++++++++++++++++++ nextcloud/{nextcoud_example.env => .env} | 0 nextcloud/{nextcloud.yaml => compose.yaml} | 0 .../{nginx_example.env => .env} | 0 .../{nginx-proxy.yaml => compose.yaml} | 0 portainer/{portainer_example.env => .env} | 0 portainer/{portainer.yaml => compose.yaml} | 0 webtop/{webtop_example.env => .env} | 0 webtop/{webtop.yaml => compose.yaml} | 0 15 files changed, 46 insertions(+) rename ddns-cloudflare/{cloudflare_example.env => .env} (100%) rename ddns-cloudflare/{ddns-cloudflare.yaml => compose.yaml} (95%) rename heimdall/{heimdall.yaml => compose.yaml} (95%) rename immich/{immich_example.env => .env} (100%) rename immich/{immich.yaml => compose.yaml} (100%) create mode 100644 mealie/.env create mode 100644 mealie/compose.yaml rename nextcloud/{nextcoud_example.env => .env} (100%) rename nextcloud/{nextcloud.yaml => compose.yaml} (100%) rename nginx-proxy-manager/{nginx_example.env => .env} (100%) rename nginx-proxy-manager/{nginx-proxy.yaml => compose.yaml} (100%) rename portainer/{portainer_example.env => .env} (100%) rename portainer/{portainer.yaml => compose.yaml} (100%) rename webtop/{webtop_example.env => .env} (100%) rename webtop/{webtop.yaml => compose.yaml} (100%) diff --git a/ddns-cloudflare/cloudflare_example.env b/ddns-cloudflare/.env similarity index 100% rename from ddns-cloudflare/cloudflare_example.env rename to ddns-cloudflare/.env diff --git a/ddns-cloudflare/ddns-cloudflare.yaml b/ddns-cloudflare/compose.yaml similarity index 95% rename from ddns-cloudflare/ddns-cloudflare.yaml rename to ddns-cloudflare/compose.yaml index 626665b..a272a68 100644 --- a/ddns-cloudflare/ddns-cloudflare.yaml +++ b/ddns-cloudflare/compose.yaml @@ -1,4 +1,5 @@ version: '2' + services: cloudflare-ddns: container_name: ddns-cloudflare diff --git a/heimdall/heimdall.yaml b/heimdall/compose.yaml similarity index 95% rename from heimdall/heimdall.yaml rename to heimdall/compose.yaml index def2477..74e1811 100644 --- a/heimdall/heimdall.yaml +++ b/heimdall/compose.yaml @@ -1,4 +1,5 @@ version: "2.1" + services: heimdall: image: lscr.io/linuxserver/heimdall:latest diff --git a/immich/immich_example.env b/immich/.env similarity index 100% rename from immich/immich_example.env rename to immich/.env diff --git a/immich/immich.yaml b/immich/compose.yaml similarity index 100% rename from immich/immich.yaml rename to immich/compose.yaml diff --git a/mealie/.env b/mealie/.env new file mode 100644 index 0000000..80c4754 --- /dev/null +++ b/mealie/.env @@ -0,0 +1,5 @@ +# Where your media will be stored +DATA_FOLDER=/path/to/data + +# URL for your domain for Mealie +BASE_URL=https://mealie.yourdomain.com \ No newline at end of file diff --git a/mealie/compose.yaml b/mealie/compose.yaml new file mode 100644 index 0000000..0b1469d --- /dev/null +++ b/mealie/compose.yaml @@ -0,0 +1,39 @@ +version: "3.7" + +services: + mealie-frontend: + image: hkotel/mealie:frontend-v1.0.0beta-5 + container_name: mealie-frontend + env_file: + - stack.env + environment: + # Set Frontend ENV Variables Here + - API_URL=http://mealie-api:9000 + restart: unless-stopped + ports: + - "9925:3000" + volumes: + - ${DATA_FOLDER}/mealie:/app/data/ + mealie-api: + image: hkotel/mealie:api-v1.0.0beta-5 + container_name: mealie-api + deploy: + resources: + limits: + memory: 1024M + volumes: + - ${DATA_FOLDER}/mealie:/app/data/ + environment: + # Set Backend ENV Variables Here + - ALLOW_SIGNUP=true + - PUID=1000 + - PGID=1000 + - TZ=Europe/Warsaw + - MAX_WORKERS=1 + - WEB_CONCURRENCY=1 + - BASE_URL=${BASE_URL} + restart: unless-stopped + +volumes: + mealie-data: + driver: local \ No newline at end of file diff --git a/nextcloud/nextcoud_example.env b/nextcloud/.env similarity index 100% rename from nextcloud/nextcoud_example.env rename to nextcloud/.env diff --git a/nextcloud/nextcloud.yaml b/nextcloud/compose.yaml similarity index 100% rename from nextcloud/nextcloud.yaml rename to nextcloud/compose.yaml diff --git a/nginx-proxy-manager/nginx_example.env b/nginx-proxy-manager/.env similarity index 100% rename from nginx-proxy-manager/nginx_example.env rename to nginx-proxy-manager/.env diff --git a/nginx-proxy-manager/nginx-proxy.yaml b/nginx-proxy-manager/compose.yaml similarity index 100% rename from nginx-proxy-manager/nginx-proxy.yaml rename to nginx-proxy-manager/compose.yaml diff --git a/portainer/portainer_example.env b/portainer/.env similarity index 100% rename from portainer/portainer_example.env rename to portainer/.env diff --git a/portainer/portainer.yaml b/portainer/compose.yaml similarity index 100% rename from portainer/portainer.yaml rename to portainer/compose.yaml diff --git a/webtop/webtop_example.env b/webtop/.env similarity index 100% rename from webtop/webtop_example.env rename to webtop/.env diff --git a/webtop/webtop.yaml b/webtop/compose.yaml similarity index 100% rename from webtop/webtop.yaml rename to webtop/compose.yaml