Tots els compose

This commit is contained in:
Guillem Hernandez Sola
2026-06-30 13:12:37 +02:00
parent bebb2969f8
commit f1fe15d1b5
35 changed files with 2075 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# /opt/stacks/portainer/docker-compose.yml
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
restart: unless-stopped
ports:
- "9000:9000" # Interfície web HTTP (només local)
- "9443:9443" # Interfície web HTTPS (només local)
# - "8000:8000" # Agent tunnel — descomenta si uses agents remots
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- portainer_data:/data
networks:
- shared_net
volumes:
portainer_data:
networks:
shared_net:
external: true
name: shared_net