dockerイメージ作成


#Dockerイメージファイルからコンテナ起動

dockerフォルダにindex.html,Dockrefireファイルを作成する

dockerフォルダ
FROM httpd
COPY index.html /usr/local/apache2/htdocs/

Dockerfileでbuildする

$ docker build -t myimage:1.0 .

$ docker build -t [イメージ名]:[タグ(省略可)] [dockerディレクトリ]

作成したイメージで、コンテナ起動

$ docker run -dit --name web -p 8080:80 myimage:1.0

docker実行フォルダのindex.html表示
http://localhost:8080/

#Dockerイメージファイルからlaravelのコンテナ起動

$ git clone https://github.com/ucan-lab/docker-laravel.git
$ cd docker-laravel
$ make create-project

http://localhost