From da7330f7600db117ab4cf1c8492889d379f452d5 Mon Sep 17 00:00:00 2001 From: Nick Yeoman Date: Mon, 27 Oct 2025 14:46:44 -0700 Subject: [PATCH] removed watchtower and webtop --- dozzle/README.md | 5 ++++ watchtower/README.md | 50 ----------------------------------- watchtower/docker-compose.yml | 6 ----- webtop/README.md | 11 -------- webtop/docker-compose.yml | 17 ------------ webtop/sample.env | 10 ------- 6 files changed, 5 insertions(+), 94 deletions(-) create mode 100644 dozzle/README.md delete mode 100644 watchtower/README.md delete mode 100644 watchtower/docker-compose.yml delete mode 100644 webtop/README.md delete mode 100644 webtop/docker-compose.yml delete mode 100644 webtop/sample.env diff --git a/dozzle/README.md b/dozzle/README.md new file mode 100644 index 0000000..5f6b999 --- /dev/null +++ b/dozzle/README.md @@ -0,0 +1,5 @@ +# Dozzle + +https://dozzle.dev/ + +Simple Container Monitoring and Logging \ No newline at end of file diff --git a/watchtower/README.md b/watchtower/README.md deleted file mode 100644 index 12ca185..0000000 --- a/watchtower/README.md +++ /dev/null @@ -1,50 +0,0 @@ -# Watchtower - -**WORK IN PROGRESS** - -url: https://containrrr.dev/watchtower/ -dockerhub: https://hub.docker.com/r/containrrr/watchtower/tags - -Must be run as root, caution it has access to all your containers, not per domain/project. - -## Project Setup - -```yaml -version: '3.4' - -services: - - watchtower: - extends: - file: ${COOKBOOK}/watchtower/docker-compose.yml - service: watchtower - env_file: - - .env -``` - -### env setup - -```text -# Local -COOKBOOK=/home/user/git/docker-compose-cookbooks -WATCHTOWER_IMAGE=containrrr/watchtower:1.7.1 - -# Container Optional -REPO_USER=username -REPO_PASS=password -``` - -## Container selection - - -```yaml -labels: - - "com.centurylinklabs.watchtower.enable=true" -``` - -Monitor Only -```yaml -labels: - - com.centurylinklabs.watchtower.monitor-only="true" -``` - diff --git a/watchtower/docker-compose.yml b/watchtower/docker-compose.yml deleted file mode 100644 index c39a25d..0000000 --- a/watchtower/docker-compose.yml +++ /dev/null @@ -1,6 +0,0 @@ -services: - watchtower: - image: ${WATCHTOWER_IMAGE:-containrrr/watchtower:latest} - volumes: - - "/var/run/docker.sock:/var/run/docker.sock" - - "/etc/localtime:/etc/localtime:ro" diff --git a/webtop/README.md b/webtop/README.md deleted file mode 100644 index 9d6587c..0000000 --- a/webtop/README.md +++ /dev/null @@ -1,11 +0,0 @@ -# Webtop - -Last Updated: Sun August 11, 2024 18:18:54 PDT - -## Overview - -Docker Hub: https://hub.docker.com/r/linuxserver/webtop -Proxy Port: 3000, 3001 - -It works, but distrobox might be what you are looking for. -Better to run VNC to one app than this, but maybe you have a use case I don't. diff --git a/webtop/docker-compose.yml b/webtop/docker-compose.yml deleted file mode 100644 index 2e5416c..0000000 --- a/webtop/docker-compose.yml +++ /dev/null @@ -1,17 +0,0 @@ -services: - webtop: - image: ${WEBTOP_IMAGE:-lscr.io/linuxserver/webtop:debian-xfce} - security_opt: - - seccomp:unconfined #optional - environment: - - PUID=${WEBTOP_PUID:-1000} - - PGID=${WEBTOP_PGID:-1000} - - TZ=${TZ:-America/Vancouver} - - TITLE=${WEBTOP_TITLE:-Webtop} - volumes: - - "${VOL_PATH:-/tmp}/webtop:/config" - ports: - - 3000:3000 - - 3001:3001 - shm_size: "4gb" - restart: unless-stopped diff --git a/webtop/sample.env b/webtop/sample.env deleted file mode 100644 index 2d94253..0000000 --- a/webtop/sample.env +++ /dev/null @@ -1,10 +0,0 @@ -# Global -VOL_PATH=/docker/vol/portainer-data #HELP: volpath -COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks -TZ=UTC - -# webtop -WEBTOP_IMAGE=lscr.io/linuxserver/webtop:debian-xfce -WEBTOP_PUID=1000 -WEBTOP_PGID=1000 -WEBTOP_TITLE=Webtop