diff --git a/production/docker/Dockerfile b/production/docker/Dockerfile index 0ae7780..0ac993c 100644 --- a/production/docker/Dockerfile +++ b/production/docker/Dockerfile @@ -69,7 +69,7 @@ VOLUME /home/safeuser/keys EXPOSE 5010 # Start the application. -COPY start-production.sh start-production.sh +#COPY start-production.sh start-production.sh CMD ["./start-production.sh"] #CMD ["npm", "start"] diff --git a/production/docker/docker-compose.yml b/production/docker/docker-compose.yml index 9f34a48..6028a2f 100644 --- a/production/docker/docker-compose.yml +++ b/production/docker/docker-compose.yml @@ -43,8 +43,8 @@ services: restart: always bch-consumer: - #build: . - image: christroutner/ipfs-bch-wallet-consumer:v1.8.0 + build: . + #image: christroutner/ipfs-bch-wallet-consumer:v1.8.0 container_name: bch-consumer logging: driver: 'json-file' @@ -58,5 +58,6 @@ services: ports: - '5010:5010' # : volumes: - - ../data/ipfsdata:/home/safeuser/ipfs-service-provider/.ipfsdata + - ../data/ipfsdata:/home/safeuser/ipfs-bch-wallet-consumer/.ipfsdata + - ./start-production.sh:/home/safeuser/ipfs-bch-wallet-consumer/start-production.sh restart: always