This commit is contained in:
2026-04-06 21:58:46 +02:00
parent 247cfd0273
commit 02515f6c19

22
docker-compose.yaml Normal file
View File

@@ -0,0 +1,22 @@
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
command: -H tcp://tasks.portainer_agent:9001 --tlsskipverify
restart: unless-stopped
volumes:
- ./data:/data
networks:
- proxy_net
agent:
image: portainer/agent:latest
container_name: portainer_agent
restart: unless-stopped
ports:
- "${WG_IP}9001:9001"
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- /var/lib/docker/volumes:/var/lib/docker/volumes
networks:
proxy_net:
external: true