From aaf29351412d713df95cb86e1b0756abdb0afe50 Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Fri, 16 May 2025 14:33:12 +0200 Subject: [PATCH] Fix port mapping in Docker compose and add volume for persistence --- compose.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/compose.yaml b/compose.yaml index 0a18247..08a43e4 100644 --- a/compose.yaml +++ b/compose.yaml @@ -3,7 +3,9 @@ services: container_name: grist image: gristlabs/grist ports: - - ${PORT:-8484}:8484 + - ${PORT:-8484}:${PORT:-8484} restart: always + volumes: + - /docker/grist/persist:/persist env_file: - stack.env \ No newline at end of file