This commit is contained in:
Aya Morisawa 2016-12-31 13:06:46 +09:00
parent 63b49a43cf
commit acf938eb51
2 changed files with 7 additions and 6 deletions

View file

@ -17,12 +17,7 @@ RUN pacman -Syyu --noconfirm
RUN pacman -S --noconfirm git nodejs npm mongodb redis
RUN echo '#!/bin/sh' >> /root/misskey.sh
RUN echo 'redis-server --daemonize yes' >> /root/misskey.sh
RUN echo 'mongod > /dev/null &' >> /root/misskey.sh
RUN echo 'cd /root/misskey' >> /root/misskey.sh
RUN echo 'npm start' >> /root/misskey.sh
RUN echo 'tail -f /dev/null' >> /root/misskey.sh
COPY misskey.sh /root/misskey.sh
RUN chmod u+x /root/misskey.sh
EXPOSE 80

6
docker/misskey.sh Normal file
View file

@ -0,0 +1,6 @@
#!/bin/sh
redis-server --daemonize yes
mongod > /dev/null &
cd /root/misskey
npm start
tail -f /dev/null