26 lines
782 B
YAML
26 lines
782 B
YAML
services:
|
|
beszel:
|
|
image: henrygd/beszel
|
|
container_name: beszel
|
|
restart: unless-stopped
|
|
ports:
|
|
- 8090:8090
|
|
volumes:
|
|
- ./beszel_data:/beszel_data
|
|
|
|
beszel-agent:
|
|
image: henrygd/beszel-agent
|
|
container_name: beszel-agent
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- ./beszel_agent_data:/var/lib/beszel-agent
|
|
# monitor other disks / partitions by mounting a folder in /extra-filesystems
|
|
# - /mnt/disk/.beszel:/extra-filesystems/sda1:ro
|
|
environment:
|
|
LISTEN: 45876
|
|
KEY: 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIE+dzh2ruWrqxVsXXWKYM7FcajNV7+3cz/6V+Hkfzwvr'
|
|
TOKEN: 3ca1b-5cc7a7a4e-39f3e-f1dbbd32a
|
|
HUB_URL: http://192.168.1.98:8090
|