From 0487a82db6cb0c1e0ff269aa36de3f48bc66f954 Mon Sep 17 00:00:00 2001 From: "byte[]" Date: Fri, 8 Oct 2021 21:31:54 -0400 Subject: [PATCH] fix new installation errors --- docker-compose.yml | 2 +- docker/app/run-development | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index d67a9460..0dc787c6 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -45,7 +45,7 @@ services: - redis postgres: - image: postgres:14.0-alpine + image: postgres:13.4-alpine environment: - POSTGRES_PASSWORD=postgres volumes: diff --git a/docker/app/run-development b/docker/app/run-development index e26e9dce..d593f820 100755 --- a/docker/app/run-development +++ b/docker/app/run-development @@ -17,8 +17,9 @@ background() { # Always install assets ( cd /srv/philomena/assets -# workaround for #31 -npm install || (chown -R root:root node_modules && npm install) +npm install +# why is javascript so terrible +chown -R $(id -un):$(id -gn) node_modules ) # Always install mix dependencies