2025-06-18 21:52:21 +05:30
|
|
|
services:
|
|
|
|
|
portainer:
|
|
|
|
|
container_name: portainer
|
2026-05-08 02:32:36 +00:00
|
|
|
image: docker.io/portainer/portainer-ee:alpine@sha256:11814a54b67be1f8115e30b501543db06a63abd4f337728474df4a4993cbacde
|
2025-07-13 18:35:45 +05:30
|
|
|
restart: unless-stopped
|
2025-06-18 21:52:21 +05:30
|
|
|
volumes:
|
2025-07-19 20:34:39 +05:30
|
|
|
- ./data:/data
|
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
2025-06-18 21:52:21 +05:30
|
|
|
ports:
|
2025-07-19 20:34:39 +05:30
|
|
|
- 8000:8000
|
|
|
|
|
- 9443:9443
|
2025-07-16 23:43:12 +05:30
|
|
|
healthcheck:
|
|
|
|
|
test: "wget --no-verbose --tries=1 --spider http://localhost:9000/api/system/status || exit 1"
|
2025-07-19 20:34:39 +05:30
|
|
|
interval: 10s
|
|
|
|
|
timeout: 5s
|
|
|
|
|
retries: 3
|
2025-07-20 15:55:40 +05:30
|
|
|
start_period: 10s
|