Wenn ich ein eigenes Dockerfile erstelle, wo lege ich das am besten ab um es dann zu starten? Unter /root?
Hier das Dockerfile dazu:
FROM mhart/alpine-node:4
MAINTAINER mafe68 <mafe1968@gmail.com>
RUN apk add --no-cache bash python build-base
RUN mkdir -p /root/iobroker/
WORKDIR /root/iobroker/
RUN npm install iobroker --unsafe-perm
ADD scripts/run.sh run.sh
RUN chmod +x run.sh
VOLUME /root/iobroker/
EXPOSE 8081 8082 8083 8084
CMD /root/iobroker/run.sh