最初の 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