mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
removed watchtower and webtop
This commit is contained in:
@@ -0,0 +1,5 @@
|
|||||||
|
# Dozzle
|
||||||
|
|
||||||
|
https://dozzle.dev/
|
||||||
|
|
||||||
|
Simple Container Monitoring and Logging
|
||||||
@@ -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"
|
|
||||||
```
|
|
||||||
|
|
||||||
@@ -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"
|
|
||||||
@@ -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.
|
|
||||||
@@ -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
|
|
||||||
@@ -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
|
|
||||||
Reference in New Issue
Block a user