Files
coolify/templates/compose/portainer.yaml
2025-08-17 18:23:57 +02:00

21 lines
546 B
YAML

# documentation: https://docs.portainer.io
# slogan: Portainer is a lightweight management UI for Docker
# category: devtools
# tags: docker, management, ui
# logo: svgs/portainer.png
# port: 9000
services:
portainer:
image: portainer/portainer-ce:alpine
environment:
- SERVICE_URL_PORTAINER_9000
volumes:
- '/var/run/docker.sock:/var/run/docker.sock'
- 'portainer_data:/data'
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:9000/"]
interval: 20s
timeout: 20s
retries: 10