From 812469877581d9649cbb6a6057bd2c907e33b555 Mon Sep 17 00:00:00 2001 From: Dome Date: Fri, 28 Mar 2025 16:22:52 +0100 Subject: [PATCH] Update README.md --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 042bf50..8b75040 100644 --- a/README.md +++ b/README.md @@ -93,12 +93,17 @@ You can discuss matrix.to in 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 ```