From 6eae08232a383c1613f1313fcc83c74a57eab417 Mon Sep 17 00:00:00 2001 From: borgal Date: Fri, 10 Jun 2022 10:45:09 +0000 Subject: [PATCH] =?UTF-8?q?Draw.io=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- drawio/docker-compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 drawio/docker-compose.yml diff --git a/drawio/docker-compose.yml b/drawio/docker-compose.yml new file mode 100644 index 0000000..300eb18 --- /dev/null +++ b/drawio/docker-compose.yml @@ -0,0 +1,15 @@ +version: '3.5' +services: + drawio: + image: jgraph/drawio + container_name: drawio + restart: unless-stopped + ports: + - 8085:8080 + - 8445:8443 + healthcheck: + test: ["CMD-SHELL", "curl -f http://domain:8080 || exit 1"] + interval: 1m30s + timeout: 10s + retries: 5 + start_period: 10s