From 3251b0dc58bf7997146133caaf4e95d35197f083 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sat, 28 Aug 2021 17:45:28 -0700 Subject: [PATCH] fix(production): changing directories for permission issues --- production/{ => docker}/Dockerfile | 0 production/{ => docker}/cleanup-images.sh | 0 production/{ => docker}/docker-compose.yml | 4 ++-- production/{ => docker}/start-production.sh | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename production/{ => docker}/Dockerfile (100%) rename production/{ => docker}/cleanup-images.sh (100%) rename production/{ => docker}/docker-compose.yml (86%) rename production/{ => docker}/start-production.sh (100%) diff --git a/production/Dockerfile b/production/docker/Dockerfile similarity index 100% rename from production/Dockerfile rename to production/docker/Dockerfile diff --git a/production/cleanup-images.sh b/production/docker/cleanup-images.sh similarity index 100% rename from production/cleanup-images.sh rename to production/docker/cleanup-images.sh diff --git a/production/docker-compose.yml b/production/docker/docker-compose.yml similarity index 86% rename from production/docker-compose.yml rename to production/docker/docker-compose.yml index ef22150..8fa994d 100644 --- a/production/docker-compose.yml +++ b/production/docker/docker-compose.yml @@ -6,7 +6,7 @@ mongo-ipfs-service: ports: - '5555:27017' # : volumes: - - ./data/database:/data/db + - ../data/database:/data/db command: mongod --logpath=/dev/null # -- quiet restart: always @@ -23,6 +23,6 @@ ipfs-service: volumes: # - ./logs:/home/coinjoin/consolidating-coinjoin/logs #- ./keys:/home/safeuser/keys - - ./data/.ipfsdata:/home/safeuser/ipfs-service-provider/.ipfsdata + - ../data/ipfsdata:/home/safeuser/ipfs-service-provider/.ipfsdata restart: always diff --git a/production/start-production.sh b/production/docker/start-production.sh similarity index 100% rename from production/start-production.sh rename to production/docker/start-production.sh