From 3b0d95d391afc5bc7477d8f07cfed84c6730cb21 Mon Sep 17 00:00:00 2001 From: che0one <167894882+che0one@users.noreply.github.com> Date: Sat, 2 Nov 2024 23:48:01 +0400 Subject: [PATCH] Create portainer.yaml New app portainer similar to Coolify, all tested, healthchecks works... --- templates/compose/portainer.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 templates/compose/portainer.yaml diff --git a/templates/compose/portainer.yaml b/templates/compose/portainer.yaml new file mode 100644 index 000000000..e12cb2111 --- /dev/null +++ b/templates/compose/portainer.yaml @@ -0,0 +1,13 @@ +services: + portainer: + image: 'portainer/portainer-ce:alpine' + environment: + - SERVICE_FQDN_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