1
0

Add portainer container
All checks were successful
Deploy / Deploy (push) Successful in 10s

This commit is contained in:
2025-12-17 18:55:30 +00:00
parent a31b4fb663
commit 1849f7eef5
2 changed files with 53 additions and 0 deletions

20
compose.yml Normal file
View File

@@ -0,0 +1,20 @@
services:
portainer:
container_name: portainer
image: portainer/portainer-ce:2.33.6
restart: unless-stopped
user: 2006:2006 # portainer:portainer
group_add:
- 131 # docker
networks:
- portainer_network
ports:
- 9443:9443 # HTTPS web UI
volumes:
- ./data:/data:rw
- /var/run/docker.sock:/var/run/docker.sock:rw
networks:
portainer_network:
name: portainer_network