From f559a1d9b33d8b4b4e5b530524b9f561869d7ec0 Mon Sep 17 00:00:00 2001 From: Darren Sisson Date: Tue, 8 Oct 2024 13:47:27 +0100 Subject: [PATCH] add missing live service to plane template --- templates/compose/plane.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/templates/compose/plane.yaml b/templates/compose/plane.yaml index d3ff15617..69c9bef58 100644 --- a/templates/compose/plane.yaml +++ b/templates/compose/plane.yaml @@ -97,6 +97,19 @@ services: timeout: 10s retries: 15 + live: + <<: *app-env + image: makeplane/plane-live:stable + command: node live/dist/server.js live + depends_on: + - api + - web + healthcheck: + test: ["CMD", "echo", "hey whats up"] + interval: 2s + timeout: 10s + retries: 15 + api: <<: *app-env image: makeplane/plane-backend:stable