From fe6697a6f193fce464decbebc95c8c04e41cea44 Mon Sep 17 00:00:00 2001 From: Manuel Date: Sun, 14 Feb 2021 17:46:12 +0100 Subject: [PATCH] Fix wrong path being used in docker-compose.yml Forgot to change it after moving the directory from /usr/src/app to /app in Dockerfile --- docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 54d7e86..f1151ed 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -9,10 +9,10 @@ services: network_mode: "bridge" volumes: # Default place to put files, can be removed with other storage system - - haste-data:/usr/src/app/data:rw + - haste-data:/app/data:rw # Create config.js from the example config and make changes - - ./config.js:/usr/src/app/config.js:ro + - ./config.js:/app/config.js:ro # PostgreSQL unix socket connection for use with pg storage and postgres database on host #- /var/run/postgresql:/var/run/postgresql:rw