diff --git a/Dockerfile b/Dockerfile index 879eb15..f8f8973 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,5 @@ COPY package*.json ./ USER node RUN npm install COPY --chown=node:node . . -EXPOSE 3000 +EXPOSE 7000 CMD [ "node", "index.js" ] diff --git a/docker-compose.yml b/docker-compose.yml index 1959acf..92866d1 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: container_name: photospherestudio hostname: photospherestudio ports: - - '3000:3000' + - '7000:7000' volumes: - ./config.json:/home/node/app/config.json restart: 'on-failure'