feat: Adds portainer and portainer agent.

This commit is contained in:
2025-03-15 09:53:02 -04:00
parent 9b64d416e5
commit f39f7c2e02
3 changed files with 42 additions and 0 deletions

18
portainer/compose.yml Normal file
View File

@@ -0,0 +1,18 @@
networks:
proxy:
external: true
services:
portainer:
image: portainer/portainer-ce:alpine-sts
container_name: portainer
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/data
networks:
- proxy
ports:
- 9010:9000 # optional if behind reverse proxy.
labels:
com.centurylinklabs.watchtower.enable: true