小编Moh*_*mal的帖子

docker"无法找到替代的telinit实现来生成"

我是一个MAC用户,并在VM"ubuntu 14.04"中安装了docker.(我手动安装了一切,使用docker工具箱)

问题是当我启动特定容器(其他容器正常运行)时,它给了我这个奇怪的错误消息" 无法找到替代的telinit实现来生成 ".

这是我用来构建映像的Dockerfile:

FROM diegomarangoni/hhvm:cli

# install php composer.
# It needs git and the PHP zip extension
# zlib1g-dev is needed to compile the PHP zip extension
# openssh-client provides ssh-keyscan
RUN apt-get update \
    && apt-get install --assume-yes --no-install-recommends curl git zlib1g-dev openssh-client \
    && apt-get clean && rm -r /var/lib/apt/lists/* \
    && curl -sS https://getcomposer.org/installer -o installer \
    && hhvm -v ResourceLimit.SocketDefaultTimeout=30 -v Http.SlowQueryThreshold=30000 installer \
    && mv composer.phar /usr/local/bin/composer \
    && …
Run Code Online (Sandbox Code Playgroud)

hhvm docker ubuntu-14.04 docker-compose

8
推荐指数
1
解决办法
2万
查看次数

标签 统计

docker ×1

docker-compose ×1

hhvm ×1

ubuntu-14.04 ×1