2 years ago
#51283
pawi
docker container (node server) stops with err=132
my first docker project was built on a Mac. It runs perfectly there, so I tried to transfer that to my Synology NAS running in the docker engine there. Unfortunately, the container always stops with Error Code = 132. I tried everything, pulling from within the docker GUI and running the container from there, but also directly from the cli (ssh). Always the same! Any Idea? This is my Dockerfile:
FROM node:16.13.0-alpine
USER node
WORKDIR /home/node
ADD --chown=node:node . /home/node
RUN npm install
CMD ["node","myApp.js"]
node.js
docker
synology
0 Answers
Your Answer