services: portainer: container_name: portainer image: docker.io/portainer/portainer-ee:2.36.0-alpine@sha256:1e0ddfbc2d890572887dc84e6207c0d16f1d1f5bd0e4c6dbdbdaf4ebd22675fc 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