Docker-soket-proxy

Hi I am trying to get access to my docker containers status etc. Portainer doesn’t work as container updates change the id and creates a new entity. I get the integration to connect to docker-socket-proxy and it gives me 9 entities on docker status etc but no containers.

I am running docker from Synology instalation, then I have homeassistsnt in The VM on synology and portainer in a docker container.

This is the docker compose I used for the docker-socket-proxy


dockerproxy:
    image: tecnativa/docker-socket-proxy
    container_name: dockerproxy
    privileged: true
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
    ports:
      - 2375:2375
    environment:
      - BUILD=1
      - COMMIT=1
      - CONFIGS=1
      - CONTAINERS=1
      - DISTRIBUTION=1
      - EXEC=1
      - IMAGES=1
      - INFO=1
      - NETWORKS=1
      - NODES=1
      - PLUGINS=1
      - SERVICES=1
      - SESSSION=1
      - SWARM=1
      - SYSTEM=1
      - TASKS=1
      - VOLUMES=1

The docker socket on Synology may not be /var/run/docker.sock

ssh into Synology and see if that exists.

1 Like