beszel updates

This commit is contained in:
azpsen 2025-04-23 14:33:30 -05:00
parent 649e019028
commit 8501b5f381
2 changed files with 9 additions and 4 deletions

View File

@ -547,12 +547,13 @@ services:
beszel: beszel:
container_name: beszel container_name: beszel
image: henrygd/beszel image: henrygd/beszel
env_file:
- ${ENV_DIR}/beszel.env
ports: ports:
- 2493:8090 - 2493:8090
volumes: volumes:
- ${DOCKER_DIR}/beszel/data:/beszel_data - ${DOCKER_DIR}/beszel/data:/beszel_data
- ${DOCKER_DIR}/beszel/socket:/beszel_socket - ${DOCKER_DIR}/beszel/socket:/beszel_socket
- /media:/extra-filesystems/media:ro
restart: unless-stopped restart: unless-stopped
beszel-agent: beszel-agent:
container_name: beszel-agent container_name: beszel-agent
@ -562,6 +563,7 @@ services:
volumes: volumes:
- ${DOCKER_DIR}/beszel/socket:/beszel_socket - ${DOCKER_DIR}/beszel/socket:/beszel_socket
- /var/run/docker.sock:/var/run/docker.sock:ro - /var/run/docker.sock:/var/run/docker.sock:ro
- /media:/extra-filesystems/media:ro
network_mode: host network_mode: host
restart: unless-stopped restart: unless-stopped

View File

@ -117,9 +117,12 @@ Below are the variables that need to be set in the `.env` file for each service.
```env ```env
# beszel.env # beszel.env
LISTEN=/beszel_socket/beszel.sock # Hub settings
KEY='' BESZEL_HUB_APP_URL=
APP_URL=
# Agent settings
BESZEL_AGENT_LISTEN=/beszel_socket/beszel.sock
BESZEL_AGENT_KEY=''
``` ```
### Cloudflared ### Cloudflared