This commit is contained in:
2026-04-03 10:44:26 +02:00
commit 736477cf57
19 changed files with 622 additions and 0 deletions

View File

@@ -0,0 +1 @@
BESZEL_KEY=

View File

@@ -0,0 +1,37 @@
services:
beszel:
image: henrygd/beszel:latest
container_name: beszel
restart: unless-stopped
environment:
- APP_URL=https://beszel.home.jens.pub
volumes:
- beszel_data:/beszel_data
- beszel_socket:/beszel_socket
networks:
- proxy
labels:
- "traefik.enable=true"
- "traefik.http.routers.beszel.rule=Host(`beszel.home.jens.pub`)"
- "traefik.http.routers.beszel.entrypoints=websecure"
- "traefik.http.services.beszel.loadbalancer.server.port=8090"
beszel-agent:
image: henrygd/beszel-agent:latest
container_name: beszel-agent
restart: unless-stopped
network_mode: host
environment:
- LISTEN=/beszel_socket/beszel.sock
- KEY=${BESZEL_KEY}
volumes:
- beszel_socket:/beszel_socket
- /var/run/docker.sock:/var/run/docker.sock:ro
volumes:
beszel_data:
beszel_socket:
networks:
proxy:
external: true