如何在 Docker 中 运行 Iojs?

How to run Iojs in Docker?

我有以下 Dockerfile:

FROM ubuntu:14.10

ENV HOMEDIR /usr/share/iojs

RUN apt-get update && \
    apt-get install software-properties-common python-software-properties -qq -y && \
    apt-get upgrade -y && \
    apt-get install -qq -y supervisor npm

RUN cd ${HOMEDIR} && \
    wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.26.1/install.sh | bash && \
    . ~/.nvm/nvm.sh && \
    nvm install iojs

RUN supervisorctl restart iojs

EXPOSE 80

CMD ["/usr/bin/supervisord", "-n"]

/etc/supervisor/conf.d/supervisord.conf

[supervisord]
autostart=true
autorestart=true
nodaemon=true

[program:iojs]
directory=/usr/share/iojs
command=/usr/bin/iojs index.js
autostart=true
autorestart=true

注意:脚本在 /usr/share/iojs

这是一种不同的方法,并不是说你的方法不行。为什么不从 dockerhub 中基于 Debian 8 的 iojs 镜像开始。

Docker 文件:

FROM iojs
# ...

主管会议:

[supervisord]
autostart=true
autorestart=true
nodaemon=true

[program:iojs]
directory=/usr/share/iojs
command=/usr/local/bin/iojs index.js
autostart=true
autorestart=true