diff --git a/docker-compose.misc.yml b/docker-compose.misc.yml index be31933..9ecb75d 100644 --- a/docker-compose.misc.yml +++ b/docker-compose.misc.yml @@ -1,20 +1,55 @@ 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} + KEY: '${BESZEL_RIKKU_AGENT_KEY}' + TOKEN: ${BESZEL_BENEDIKTA_TOKEN} + HUB_URL: http://192.168.1.254:22220 + expose: + - 45876 + image: henrygd/beszel-agent + network_mode: host + restart: unless-stopped + volumes: + - beszel-agent-data:/var/lib/beszel-agent + - /var/run/docker.sock:/var/run/docker.sock:ro + - /dev/mmcblk0:/extra-filesystems/dev/mmcblk0:ro + docker-socket-proxy: + container_name: dockerproxy + environment: + AUTH: 0 + BUILD: 0 + COMMIT: 0 + CONFIGS: 0 + CONTAINERS: 1 + DISTRIBUTION: 0 + EVENTS: 0 + EXEC: 0 + GPRC: 0 + IMAGES: 1 + INFO: 1 + NETWORKS: 1 + NODES: 0 + POST: 0 + PLUGINS: 0 + SERVICES: 0 + SESSION: 0 + SYSTEM: 0 + TASKS: 0 + VOLUMES: 0 + LOG_LEVEL: debug + image: ghcr.io/tecnativa/docker-socket-proxy:latest + ports: + - 2375:2375 + privileged: true + restart: unless-stopped + volumes: + - /var/run/docker.sock:/var/run/docker.sock portainer-agent: container_name: portainer_agent - image: portainer/agent:2.27.0 + image: portainer/agent:latest volumes: - /:/host - /var/lib/docker/volumes:/var/lib/docker/volumes @@ -22,11 +57,6 @@ services: 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 \ No newline at end of file +volumes: + beszel-agent-data: + name: beszel-agent-data \ No newline at end of file