From 071f419938f42fef282d1c9407a445eef0ea3df2 Mon Sep 17 00:00:00 2001 From: Sturdy <91910406+apollo-sturdy@users.noreply.github.com> Date: Wed, 28 Feb 2024 19:34:08 +0100 Subject: [PATCH] fix: remove unnecessary arm compose file --- apps/duckdns/docker-compose.arm64.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 apps/duckdns/docker-compose.arm64.yml diff --git a/apps/duckdns/docker-compose.arm64.yml b/apps/duckdns/docker-compose.arm64.yml deleted file mode 100644 index 83f9dcae..00000000 --- a/apps/duckdns/docker-compose.arm64.yml +++ /dev/null @@ -1,20 +0,0 @@ -version: "3.9" -services: - duckdns: - container_name: duckdns # Should be exact same name as "id" field in config.json - image: lscr.io/linuxserver/duckdns:arm64v8-b14c520a-ls8 # Try to avoid "latest" tag. As it may break configs in the future. - environment: - - PUID=1000 - - PGID=1000 - - TZ=${TZ} - - SUBDOMAINS=${DUCKDNS_SUBDOMAINS} - - TOKEN=${DUCKDNS_TOKEN} - - UPDATE_IP=${DUCKDNS_UPDATE_IP} - - LOG_FILE=${DUCKDNS_ENABLE_LOG_FILE} - volumes: - - ${APP_DATA_DIR}:/config - ports: - - ${APP_PORT}:80 - restart: unless-stopped - networks: - - tipi_main_network