From 7c1ded08bd16568d93bd9b28cf2fbd48e2e73159 Mon Sep 17 00:00:00 2001 From: Marko Korhonen Date: Mon, 9 Jun 2025 23:24:50 -0500 Subject: [PATCH] Docker: remove some programs I'm not likely using again --- docker/drop/DISABLED | 0 docker/firefish/DISABLED | 0 docker/firefish/docker-compose.yaml | 48 --------------------- docker/netbootxyz/DISABLED | 0 docker/netbootxyz/docker-compose.yaml | 24 ----------- docker/opentogethertube/DISABLED | 0 docker/opentogethertube/docker-compose.yaml | 42 ------------------ docker/opentogethertube/production.toml | 5 --- docker/pihole/DISABLED | 0 docker/pihole/docker-compose.yaml | 29 ------------- docker/tftp/DISABLED | 0 docker/tftp/docker-compose.yaml | 10 ----- docker/watchtower/DISABLED | 0 docker/watchtower/docker-compose.yaml | 18 -------- 14 files changed, 176 deletions(-) delete mode 100644 docker/drop/DISABLED delete mode 100644 docker/firefish/DISABLED delete mode 100644 docker/firefish/docker-compose.yaml delete mode 100644 docker/netbootxyz/DISABLED delete mode 100644 docker/netbootxyz/docker-compose.yaml delete mode 100644 docker/opentogethertube/DISABLED delete mode 100644 docker/opentogethertube/docker-compose.yaml delete mode 100644 docker/opentogethertube/production.toml delete mode 100644 docker/pihole/DISABLED delete mode 100644 docker/pihole/docker-compose.yaml delete mode 100644 docker/tftp/DISABLED delete mode 100644 docker/tftp/docker-compose.yaml delete mode 100644 docker/watchtower/DISABLED delete mode 100644 docker/watchtower/docker-compose.yaml diff --git a/docker/drop/DISABLED b/docker/drop/DISABLED deleted file mode 100644 index e69de29b..00000000 diff --git a/docker/firefish/DISABLED b/docker/firefish/DISABLED deleted file mode 100644 index e69de29b..00000000 diff --git a/docker/firefish/docker-compose.yaml b/docker/firefish/docker-compose.yaml deleted file mode 100644 index de031490..00000000 --- a/docker/firefish/docker-compose.yaml +++ /dev/null @@ -1,48 +0,0 @@ -volumes: - files: {} - config: {} - redis: {} - db: {} -services: - firefish: - image: registry.firefish.dev/firefish/firefish - container_name: firefish - restart: unless-stopped - depends_on: - - redis - ports: - - 3084:3000 - networks: - - firefish - - proxy - environment: - NODE_ENV: production - volumes: - - files:/firefish/files - - config:/firefish/.config:ro - redis: - image: redis - container_name: redis-firefish - restart: unless-stopped - networks: - - firefish - volumes: - - redis:/data - db: - image: groonga/pgroonga:3.1.8-alpine-16-slim - container_name: firefish-db - restart: unless-stopped - networks: - - firefish - volumes: - - db:/var/lib/postgresql/data - healthcheck: - test: pg_isready --user="firefish" --dbname="firefish" - interval: 5s - timeout: 5s - retries: 5 -networks: - firefish: - internal: true - proxy: - external: true diff --git a/docker/netbootxyz/DISABLED b/docker/netbootxyz/DISABLED deleted file mode 100644 index e69de29b..00000000 diff --git a/docker/netbootxyz/docker-compose.yaml b/docker/netbootxyz/docker-compose.yaml deleted file mode 100644 index b6cd5bea..00000000 --- a/docker/netbootxyz/docker-compose.yaml +++ /dev/null @@ -1,24 +0,0 @@ -volumes: - config: {} - assets: {} -services: - netbootxyz: - image: lscr.io/linuxserver/netbootxyz - container_name: netbootxyz - restart: unless-stopped - environment: - - PUID=1000 - - PGID=1000 - - TZ=Etc/UTC - - MENU_VERSION=1.9.9 - - PORT_RANGE=30000:30010 - - SUBFOLDER=/ - - NGINX_PORT=80 - - WEB_APP_PORT=3000 - ports: - - 3000:3000 - - 69:69/udp - - 8081:80 - volumes: - - config:/config - - assets:/assets diff --git a/docker/opentogethertube/DISABLED b/docker/opentogethertube/DISABLED deleted file mode 100644 index e69de29b..00000000 diff --git a/docker/opentogethertube/docker-compose.yaml b/docker/opentogethertube/docker-compose.yaml deleted file mode 100644 index f4ed1f85..00000000 --- a/docker/opentogethertube/docker-compose.yaml +++ /dev/null @@ -1,42 +0,0 @@ -services: - opentogethertube: - image: dyc3/opentogethertube - container_name: opentogethertube - restart: unless-stopped - environment: - - PORT=8080 - - REDIS_HOST=redis - - REDIS_PORT=6379 - - FFPROBE_PATH=/usr/bin/ffprobe - - DB_MODE=postgres - - POSTGRES_USER=opentogethertube - - POSTGRES_DB=opentogethertube - - POSTGRES_HOST=postgres - - POSTGRES_PASSWORD - - DOCKER=1 - - OTT_HOSTNAME=ott.korhonen.cc - - YOUTUBE_API_KEY - - OPENTOGETHERTUBE_API_KEY - - SESSION_SECRET - ports: - - 8080:8080 - - 3002:3002 - networks: - - default - - postgres - - proxy - depends_on: - - redis - volumes: - - ./production.toml:/app/env/production.toml - redis: - container_name: redis-opentogethertube - image: redis:alpine - restart: unless-stopped - healthcheck: - test: redis-cli ping -networks: - postgres: - external: true - proxy: - external: true diff --git a/docker/opentogethertube/production.toml b/docker/opentogethertube/production.toml deleted file mode 100644 index e60fec7e..00000000 --- a/docker/opentogethertube/production.toml +++ /dev/null @@ -1,5 +0,0 @@ -log = { level = "info" } - -[room] -enable_create_temporary = false -enable_create_permanent = false diff --git a/docker/pihole/DISABLED b/docker/pihole/DISABLED deleted file mode 100644 index e69de29b..00000000 diff --git a/docker/pihole/docker-compose.yaml b/docker/pihole/docker-compose.yaml deleted file mode 100644 index 8ce68ccd..00000000 --- a/docker/pihole/docker-compose.yaml +++ /dev/null @@ -1,29 +0,0 @@ -volumes: - config: {} - dnsmasq: {} -services: - pihole: - container_name: pihole - image: pihole/pihole - ports: - - 53:53/tcp - - 53:53/udp - - 67:67/udp - - 8069:80/tcp - networks: - - proxy - volumes: - - config:/etc/pihole/ - - dnsmasq:/etc/dnsmasq.d/ - dns: - - 127.0.0.1 - - 1.1.1.1 - cap_add: - - NET_ADMIN - restart: unless-stopped - environment: - TZ: Europe/Helsinki - WEBPASSWORD: ${WEBPASSWORD} -networks: - proxy: - external: true diff --git a/docker/tftp/DISABLED b/docker/tftp/DISABLED deleted file mode 100644 index e69de29b..00000000 diff --git a/docker/tftp/docker-compose.yaml b/docker/tftp/docker-compose.yaml deleted file mode 100644 index d266b8c2..00000000 --- a/docker/tftp/docker-compose.yaml +++ /dev/null @@ -1,10 +0,0 @@ -services: - tftp: - container_name: tftp - image: pghalliday/tftp - restart: unless-stopped - ports: - - 69:69/udp - volumes: - - /etc/localtime:/etc/localtime:ro - - /docker/tftp:/var/tftpboot diff --git a/docker/watchtower/DISABLED b/docker/watchtower/DISABLED deleted file mode 100644 index e69de29b..00000000 diff --git a/docker/watchtower/docker-compose.yaml b/docker/watchtower/docker-compose.yaml deleted file mode 100644 index 1429c1c4..00000000 --- a/docker/watchtower/docker-compose.yaml +++ /dev/null @@ -1,18 +0,0 @@ -services: - watchtower: - image: containrrr/watchtower - container_name: watchtower - restart: unless-stopped - environment: - - WATCHTOWER_CLEANUP=true - - WATCHTOWER_NOTIFICATION_EMAIL_FROM=watchtower@korhonen.cc - - WATCHTOWER_NOTIFICATION_EMAIL_TO=admin@korhonen.cc - - WATCHTOWER_NOTIFICATION_EMAIL_SERVER=smtp.migadu.com - - WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT=587 - - WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER=${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER} - - WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD=${WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD} - - WATCHTOWER_NOTIFICATION_EMAIL_DELAY=30 - - WATCHTOWER_NOTIFICATIONS=email - volumes: - - /var/run/docker.sock:/var/run/docker.sock - - /etc/localtime:/etc/localtime:ro