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
Author And Source
この問題について(dockerイメージ作成), 我々は、より多くの情報をここで見つけました https://qiita.com/ryoooooo/items/a79117b7e11fe812e70b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .