docker功能十分灵活,但是需要一定的学习才可以灵活运用
但是考虑到读者可能没有接触过docker
我们直接给出 一条命令安装ubuntu系统的方法
docker run -it --rm -p 9090:80 registry.cn-hangzhou.aliyuncs.com/mkmk/desktop:ubuntu1804
然后在本机访问
localhost:9090 即可体验系统,可以用命令行测试下系统版本
#三个命令都是查看版本号的 cat /proc/version uname -a lsb_release -a
到这里还没有结束,由于这个系统只是做了9090到80的映射,那我们如果想,在虚拟机中运行一个nginx,或者发布一个网页应用,那该怎么办呢
让我们一步步来实现它吧
#注意 这些命令要在windows 管理员权限下运行, docker network create --driver bridge --subnet 10.10.0.0/16 --gateway 10.10.0.1 mynet10 route add 10.10.0.0 mask 255.255.0.0 10.0.75.2 docker run -it --rm --net mynet10 --ip 10.10.10.5 --name ubuntu2 registry.cn-hangzhou.aliyuncs.com/mkmk/desktop:ubuntu1804
此时访问
这样容器系统就拥有了属于自己的 端口
然后可以容器内运行 nginx 看看
我本来想安装nginx 结果已经有了,但是80端口被占用了。
所以我们修改下nginx 配置文件
打开/etc/nginx/nginx.conf 修改内容如下 !!!!!!!!!!!!!1 user www-data; worker_processes 1; pid /run/nginx.pid; include /etc/nginx/modules-enabled/*.conf; events { worker_connections 768; # multi_accept on; } http { server { listen 48880 ; server_name _; root /usr/share/nginx/html; include /etc/nginx/default.d/*.conf; location / { } error_page 404 /404.html; location = /40x.html { } error_page 500 502 503 504 /50x.html; location = /50x.html { } } sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include /etc/nginx/mime.types; default_type application/octet-stream; ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE ssl_prefer_server_ciphers on; access_log /var/log/nginx/access.log; error_log /var/log/nginx/error.log; gzip on; include /etc/nginx/conf.d/*.conf; include /etc/nginx/sites-enabled/*; }
修改完成后保存文件
终端执行 nginx -t nginx: the configuration file /etc/nginx/nginx.conf syntax is ok nginx: configuration file /etc/nginx/nginx.conf test is successful 再执行 nginx -s reload 就可以访问 ubuntu中的nginx服务了 服务运行在 http://10.10.10.5:48880/
你还可以在这个容器中做很多你喜欢的事情!