0
バックグラウンドで実行されますが、私はドッカー画像は、私は私の最初のDockerfileを作成
sudo docker ps
コンテナがバックグラウンドで実行されていないコマンドを実行すると、ここに私のdockerfileだ文句を言わない:で
# Set the base image to Ubuntu
FROM debian:jessie
# File Author/Maintainer
MAINTAINER <Qop>
# Update the repository sources list
RUN apt-get update
################## BEGIN INSTALLATION ######################
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y \
vim \
apache2
##################### INSTALLATION END #####################
# Expose the default port
EXPOSE 81
# Default port to execute the entrypoint (MongoDB)
CMD ["--port 81"]
# Set default container command
ENTRYPOINT /bin/bash
ありがとう、これは意味をなさない! – Qop