Aktueller Stand!

This commit is contained in:
2026-05-15 07:04:12 +00:00
parent 315eb5375f
commit ccebb8ef41
5 changed files with 124 additions and 0 deletions
+3
View File
@@ -1,6 +1,9 @@
# Alles ignorieren # Alles ignorieren
* *
# Außer Ordner
!*/
# Außer compose files # Außer compose files
!**/docker-compose.yml !**/docker-compose.yml
!**/compose.yml !**/compose.yml
+30
View File
@@ -0,0 +1,30 @@
services:
dashy:
container_name: dashy
image: lissy93/dashy:latest
restart: unless-stopped
environment:
- NODE_ENV=production
- TZ=Europe/Berlin
volumes:
- /docker/dashy/conf.yml:/app/public/conf.yml
- /docker/dashy/conf.yml:/app/user-data/conf.yml
networks:
- vps_network
ports:
- 4000:8080
deploy:
resources:
limits:
cpus: '0.5'
memory: 512M
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
vps_network:
external: true
name: vps_network
+30
View File
@@ -0,0 +1,30 @@
services:
glances:
image: nicolargo/glances:latest
container_name: glances
restart: unless-stopped
pid: host
ports:
- 61208:61208
environment:
- GLANCES_OPT=-w
- TZ=Europe/Berlin
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
- vps_network
deploy:
resources:
limits:
cpus: '0.5'
memory: 512M
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
vps_network:
external: true
name: vps_network
+38
View File
@@ -0,0 +1,38 @@
services:
vaultwarden:
image: vaultwarden/server:latest
container_name: vaultwarden
restart: unless-stopped
env_file:
- .env
environment:
- TZ=Europe/Berlin
- DOMAIN=https://vault.thodirr.net
- SIGNUPS_ALLOWED=false
- ADMIN_TOKEN=${ADMIN_TOKEN}
- DOMAIN=https://vault.thodirr.net
volumes:
- /docker/vaultwarden/data:/data
networks:
- vps_network
deploy:
resources:
limits:
cpus: '0.5'
memory: 256M
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80"]
interval: 30s
timeout: 10s
retries: 5
start_period: 30s
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"
networks:
vps_network:
external: true
name: vps_network
+23
View File
@@ -0,0 +1,23 @@
services:
watchtower:
image: containrrr/watchtower
container_name: watchtower
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
environment:
- WATCHTOWER_MONITOR_ONLY=true
- WATCHTOWER_POLL_INTERVAL=86400
- WATCHTOWER_CLEANUP=true
- TZ=Europe/Berlin
- DOCKER_API_VERSION=1.45
deploy:
resources:
limits:
cpus: '0.5'
memory: 128M
logging:
driver: "json-file"
options:
max-size: "10m"
max-file: "3"