22 lines
489 B
YAML
22 lines
489 B
YAML
services:
|
|
glances:
|
|
image: nicolargo/glances:latest-full
|
|
container_name: glances
|
|
environment:
|
|
- TZ=America/Detroit
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- /run/user/1000/podman/podman.sock:/run/user/1000/podman/podman.sock:ro
|
|
pid: host
|
|
privileged: true
|
|
networks:
|
|
- 'homelab'
|
|
ports:
|
|
- '61208:61208'
|
|
restart: unless-stopped
|
|
command: -w -B 0.0.0.0 --enable-cors
|
|
|
|
networks:
|
|
homelab:
|
|
external: true
|