This repository has been archived on 2025-07-17. You can view files and clone it, but cannot push or open issues or pull requests.
Files
archived-docker-compose/dockerproxy/docker-compose.yml
2025-06-08 13:50:37 +05:30

16 lines
394 B
YAML

version: "3.3"
services:
dockerproxy:
image: "ghcr.io/tecnativa/docker-socket-proxy:0.3.0"
container_name: "dockerproxy"
environment:
- "CONTAINERS=${CONTAINERS}"
- "SERVICES=${SERVICES}"
- "TASKS=${TASKS}"
- "POST=${POST}"
ports:
- "${PORT}:2375"
volumes:
- "/var/run/docker.sock:/var/run/docker.sock:ro"
restart: "unless-stopped"