1
0
Fork 0
mirror of synced 2024-07-02 21:10:43 +12:00

Fixing cluster mode in docker-compose setups, we weren't copying across the pm2 config that was needed to achieve this.

This commit is contained in:
mike12345567 2024-02-15 12:47:27 +00:00
parent b12aa639d3
commit e9bb17dd8a
2 changed files with 2 additions and 0 deletions

View file

@ -66,6 +66,7 @@ COPY packages/server/dist/ dist/
COPY packages/server/docker_run.sh .
COPY packages/server/builder/ builder/
COPY packages/server/client/ client/
COPY packages/server/pm2.config.js .
ARG BUDIBASE_VERSION
ARG GIT_COMMIT_SHA

View file

@ -37,6 +37,7 @@ RUN apk del .gyp \
COPY packages/worker/dist/ dist/
COPY packages/worker/docker_run.sh .
COPY packages/server/pm2.config.js .
EXPOSE 4001