Files
docker-compose/portainer/docker-compose.yml
T

19 lines
625 B
YAML
Raw Normal View History

2025-07-14 12:48:15 +05:30
# Portainer Container Management Configuration
2025-06-18 21:52:21 +05:30
services:
portainer:
2025-07-14 12:48:15 +05:30
# Basic container configuration
2025-06-18 21:52:21 +05:30
container_name: portainer
2025-07-13 18:35:45 +05:30
image: docker.io/portainer/portainer-ee:latest
restart: unless-stopped
2025-07-14 12:48:15 +05:30
# Persistent storage and system access configuration
2025-06-18 21:52:21 +05:30
volumes:
2025-07-14 12:48:15 +05:30
- ./data:/data # Portainer configuration and database
- /etc/localtime:/etc/localtime:ro # Sync host timezone
- /var/run/docker.sock:/var/run/docker.sock # Docker API access
# Network ports configuration
2025-06-18 21:52:21 +05:30
ports:
2025-07-14 12:48:15 +05:30
- 8000:8000 # Edge agent communication port
- 9443:9443 # Web UI HTTPS port