From ee0f2da64158650fe3f4d36b261f532c04e81544 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sun, 28 Jan 2024 15:05:34 -0800 Subject: [PATCH] fix(docker): Building container rather than using image --- production/docker/docker-compose.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/production/docker/docker-compose.yml b/production/docker/docker-compose.yml index edce087..66170dd 100644 --- a/production/docker/docker-compose.yml +++ b/production/docker/docker-compose.yml @@ -14,8 +14,8 @@ services: restart: always ipfs-service: - #build: . - image: christroutner/ipfs-service-provider:v5.0.1 + build: . + #image: christroutner/ipfs-service-provider:v5.0.1 container_name: ipfs-service logging: driver: 'json-file' @@ -27,6 +27,8 @@ services: - mongo-ipfs-service ports: - '5010:5010' # : + - '4001:4001' + - '4003:4003' volumes: - ../data/ipfsdata:/home/safeuser/ipfs-service-provider/.ipfsdata - ./start-production.sh:/home/safeuser/ipfs-service-provider/start-production.sh