1
0
Fork 0
mirror of https://github.com/alangrainger/immich-public-proxy.git synced 2024-12-28 03:41:58 +00:00

Update Docker command

This commit is contained in:
Alan Grainger 2024-10-29 15:57:43 +01:00
parent ff5d6fb82b
commit b5ee0a1429

View file

@ -11,7 +11,7 @@ services:
- ./:/home/node/app:Z
ports:
- ${SERVER_PORT}:3000
command: "npm start"
command: bash -c "cd /home/node/app && npm install && npm start"
restart: always
healthcheck:
test: (ps ax | grep -q "[n]ode dist/index.js" && echo "Ok") || exit 1