その後、これらはすべてインターネット上の例に従って入力されます
dockerfile:
FROM ubuntu:14.04
MAINTAINER Chris Chan "chenx1242@163.com"
ENV REFRESHED_AT 2016-12-05
RUN apt-get -y update && apt-get install -y nginx
RUN mkdir -p /var/www/html/website
ADD nginx/global.conf /etc/nginx/conf.d /
nginx/nginx.conf を追加 /etc/nginx/nginx.conf
EXPOSE 80
高洛峰2017-06-06 09:54:29
コンテナのステータスが exit の場合、ポート マッピングがあってはなりません。 dockerfile の最後に次のようなものが欠落していますか: CMD service nginx start