32 lines
929 B
YAML
32 lines
929 B
YAML
name: ovosmisc
|
|
services:
|
|
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
|
|
# monitor other disks / partitions by mounting a folder in /extra-filesystems
|
|
# - /mnt/disk/.beszel:/extra-filesystems/sda1:ro
|
|
environment:
|
|
LISTEN: 45876
|
|
KEY: ${BEZEL_AGENT_KEY}
|
|
portainer-agent:
|
|
container_name: portainer_agent
|
|
image: portainer/agent:2.27.0
|
|
volumes:
|
|
- /:/host
|
|
- /var/lib/docker/volumes:/var/lib/docker/volumes
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
restart: always
|
|
ports:
|
|
- 9001:9001
|
|
ovos_config:
|
|
container_name: ovos_config
|
|
image: ghcr.io/oscillatelabsllc/ovos-skill-config-tool:latest
|
|
ports:
|
|
- 14152:8000
|
|
user: $(id -u):$(id -g)
|
|
volumes:
|
|
- $HOME/.config:/home/appuser/.config |