From 67c27fda6c0d0af756012fb1984afcc2dd12499a Mon Sep 17 00:00:00 2001 From: Dome Date: Thu, 27 Mar 2025 15:44:09 +0100 Subject: [PATCH] Update compose.yaml updated compose.yaml --- compose.yaml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index 410ea6d..9a0abee 100644 --- a/compose.yaml +++ b/compose.yaml @@ -2,7 +2,20 @@ version: '3.8' services: matrix-to: - build: . + container_name: Matrix-to + hostname: matrix-to + image: domoel/matrix-to:latest ports: - "5000:5000" - restart: unless-stopped \ No newline at end of file + restart: unless-stopped + environment: + - PORT=5000 + volumes: + - ./data:/app + networks: + - frontend + +networks: + frontend: + external: true + name: matrix