46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
# compose-monitor.yml
|
|
# https://git.bizmark.cloud/marc/bizMark.git
|
|
services:
|
|
# BESZEL
|
|
beszel:
|
|
image: henrygd/beszel:latest
|
|
container_name: beszel
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8095:8090" # Webinterface: http://<host>:8095
|
|
environment:
|
|
- LANG=de
|
|
- PUID=1000
|
|
- PGID=1000
|
|
volumes:
|
|
- /home/marc/beszel/data:/beszel_data # Korrektur Pfad - bizMark
|
|
- /proc:/host/proc:ro
|
|
- /sys:/host/sys:ro
|
|
- /:/host/root:ro
|
|
# BESZEL AGENT
|
|
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
|
|
- /home/marc/beszel_agent_data:/var/lib/beszel-agent
|
|
environment:
|
|
LISTEN: 45876
|
|
KEY: 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDbUhgfqJZtGQM5G4nkbje4ResarCWUkbStWR9ZzILta'
|
|
TOKEN: 93a7205a-33e6-4985-983e-7f6b935ae252
|
|
HUB_URL: https://monitor.bizmark.ch
|
|
# ATLAS UI
|
|
atlas:
|
|
image: keinstien/atlas:latest
|
|
container_name: atlas
|
|
restart: unless-stopped
|
|
network_mode: host
|
|
cap_add:
|
|
- NET_ADMIN
|
|
- NET_RAW
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
environment:
|
|
- ATLAS_PORT=8888 |