# https://docs.docker.com/engine/daemon/remote-access/ --- name: dockpeek services: dockpeek: image: ghcr.io/dockpeek/dockpeek:latest container_name: dockpeek restart: unless-stopped ports: - "3420:8000" environment: - SECRET_KEY=99BELCTHeJDJ6AFpg4fmKMoQG3vcar6M - USERNAME=admin - PASSWORD=XbJ6do@xT8478c # --- Bob (Local) --- - DOCKER_HOST_1_URL=unix:///var/run/docker.sock # Local Docker socket - DOCKER_HOST_1_NAME=Bob # Display name in UI - DOCKER_HOST_1_PUBLIC_HOSTNAME=bob # --- Carlo (Remote Server) --- - DOCKER_HOST_2_URL=tcp://192.168.1.12:2375 # Remote socket proxy - DOCKER_HOST_2_NAME=Carlo # Display name in UI - DOCKER_HOST_2_PUBLIC_HOSTNAME=carlo # Optional: Custom hostname for links # --- Gary (Remote Server) --- - DOCKER_HOST_3_URL=tcp://192.168.1.13:2375 # Remote socket proxy - DOCKER_HOST_3_NAME=Gary # Display name in UI - DOCKER_HOST_3_PUBLIC_HOSTNAME=gary # Optional: Custom hostname for links # --- Sandy (Remote Server) --- - DOCKER_HOST_4_URL=tcp://192.168.1.14:2375 # Remote socket proxy - DOCKER_HOST_4_NAME=Sandy # Display name in UI - DOCKER_HOST_4_PUBLIC_HOSTNAME=sandy # Optional: Custom hostname for links # --- Krabs (Remote Server) --- - DOCKER_HOST_5_URL=tcp://192.168.1.15:2375 # Remote socket proxy - DOCKER_HOST_5_NAME=Krabs # Display name in UI - DOCKER_HOST_5_PUBLIC_HOSTNAME=krabs # Optional: Custom hostname for links # --- Sheldon (Remote Server) --- - DOCKER_HOST_6_URL=tcp://192.168.1.16:2375 # Remote socket proxy - DOCKER_HOST_6_NAME=Sheldon # Display name in UI - DOCKER_HOST_6_PUBLIC_HOSTNAME=sheldon # Optional: Custom hostname for links # --- Bernie (Remote Server) --- - DOCKER_HOST_7_URL=tcp://192.168.1.17:2375 # Remote socket proxy - DOCKER_HOST_7_NAME=Bernie # Display name in UI - DOCKER_HOST_7_PUBLIC_HOSTNAME=bernie # Optional: Custom hostname for links volumes: - /var/run/docker.sock:/var/run/docker.sock:ro