From 7189b10998589ca26d7bbda39809a1842349a84a Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Thu, 10 Apr 2025 14:15:42 -0400 Subject: [PATCH] fix: Mounts local directory instead of network mount, which was giving problems with the database. --- compose.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/compose.yaml b/compose.yaml index 84c121d..49b326c 100644 --- a/compose.yaml +++ b/compose.yaml @@ -4,11 +4,10 @@ services: container_name: pocket-id restart: unless-stopped env_file: .env - user: 1000:1000 ports: - 3002:80 volumes: - - "${DATA_MNT}:/app/backend/data" + - "./data:/app/backend/data" networks: - proxy healthcheck: