version: "3.8" services: chell: image: gotgeeks/chell:latest # Host networking needed to do UDP broadcasts for WOL network_mode: host restart: unless-stopped ports: - 8094:8094 volumes: # Needed for CPU widget to get the current CPU usage for the host - /proc:/prochost:ro # In order to have the disk widget work, add volumes for the mountpoints of each disk you want to get stats on here. # They need to be mounted in /mnt/ - /mnt/disk1:/host/mountpath:ro - /mnt/disk2:/host/mountpath2:ro db: image: mysql restart: unless-stopped environment: MYSQL_ROOT_PASSWORD: example MYSQL_DATABASE: chell MYSQL_USER: chell MYSQL_PASSWORD: example