一、环境准备
1、安装docker
参照https://j-kangel.github.io/2019/03/24/hyperledger/里面docker安装部分
二、搭建静态网站
1、创建docker镜像
1 2
| docker run -p 80 --name web -i -t ubuntu /bin/bash //启动交互式容器 root@6f9c831d1d1b:/
|
2、在docker中安装nginx和vim
1 2 3
| root@6f9c831d1d1b:/ root@6f9c831d1d1b:/ root@6f9c831d1d1b:/
|
3、创建网页目录
4、添加网页
1 2
| root@6f9c831d1d1b:/ root@6f9c831d1d1b:/var/www/html
|
在index.html中输入:
1 2 3 4 5 6 7 8 9 10
| <html> <head> <title>nginx in docker</title> </head> <body> <p> Hello,World! </p> </body> </html>
|
保存后退出,查看端口
显示如下:
5、查看网页
使用curl查看:
1
| curl http://127.0.0.1:32770
|
使用浏览器查看,如下图所示:
三、docker其他命令
1 2 3 4 5
| docker attach web docker ps docker top web docker inspect | grep -i IPaddress docker inspect | grep -i hostport
|