Files
docker-compose/portainer/docker-compose.yml
2025-11-18 19:36:53 +05:30

19 lines
580 B
YAML

services:
portainer:
container_name: portainer
image: docker.io/portainer/portainer-ee:2.33.3-alpine@sha256:975684e6af5b30a7112e66ae686b99150bf8396aeff0ddb37241d871b550a839
restart: unless-stopped
volumes:
- ./data:/data
- /etc/localtime:/etc/localtime:ro
- /var/run/docker.sock:/var/run/docker.sock
ports:
- 8000:8000
- 9443:9443
healthcheck:
test: "wget --no-verbose --tries=1 --spider http://localhost:9000/api/system/status || exit 1"
interval: 10s
timeout: 5s
retries: 3
start_period: 10s