From 73200e8c27ec7abd1ebf4880d75aee626ada74b9 Mon Sep 17 00:00:00 2001 From: Dome Date: Fri, 28 Mar 2025 16:23:32 +0100 Subject: [PATCH] Update compose.yaml --- compose.yaml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/compose.yaml b/compose.yaml index bc53dcf..f1299f1 100644 --- a/compose.yaml +++ b/compose.yaml @@ -1,11 +1,16 @@ version: '3.8' services: - matrix-to: - container_name: Matrix-to + web: image: domoel/matrix-to:latest ports: - - "5000:5000" - restart: unless-stopped + - "1336:80" environment: - - PORT=5000 + - NODE_ENV=production + volumes: + - ./nginx.conf:/etc/nginx/nginx.conf + healthcheck: + test: ["CMD", "curl", "--fail", "http://localhost:80"] + interval: 30s + timeout: 10s + retries: 3