您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
Docker 容器是一个开源的应用容器引擎,让开发者可以以统一的方式打包他们的应用以及依赖包到一个可移植的容器中,然后发布到任何安装了docker引擎的服务器上(包括流行的Linux机器、windows机器),也可以实现虚拟化。容器是完全使用沙箱机制,相互之间不会有任何接口(类似 iPhone 的 app)。几乎没有性能开销,可以很容易地在机器和数据中心中运行。最重要的是,他们不依赖于任何语言、框架包括系统。
[root@host1 ~]# vim docker-compose.yml
version: '3'
services:
web:
image: nginx:latest
ports:
- "5000:5000"
links:
- redis
redis:
image: redis
[root@host1 ~]# docker-compose up -d
[root@host1 ~]# docker-compose ps
Name Command State Ports
----------------------------------------------------------------------------------------------------------------------------
root_redis_1 docker-entrypoint.sh redis ... Up 6379/tcp
root_web_1 nginx -g daemon off; Up 0.0.0.0:5000->5000/tcp, 80/tcp
[root@host1 ~]# docker-compose logs
[root@host1 ~]# docker-compose down
Stopping root_web_1 ... done
Stopping root_redis_1 ... done
Removing root_web_1 ... done
Removing root_redis_1 ... done
Removing network root_default
[root@host1 ~]# vim Dockerfile
#Nginx
#Version 1.0.1
#Author zxhk
#Base image
FROM centos:7
#Maintainer
MAINTAINER zxhk08@qq.com
#Commands
RUN rpm -ivh http://mirrors.aliyun.com/epel/epel-release-latest-7.noarch.rpm
RUN yum install -y nginx
RUN echo "daemon off;" >> /etc/nginx/nginx.conf
EXPOSE 80
CMD ["nginx"]
[root@host1 ~]# docker build -t newweb/nginx:v1-1 ./
[root@host1 ~]# vim docker-compose.yml
version: '2'
services:
web1:
image: newweb/nginx:v1.0.1
volumes:
- /data/www1:/usr/share/nginx/html
ports:
- "8080:80"
web2:
image: newweb/nginx:v1.0.1
volumes:
- /data/www2:/usr/share/nginx/html
ports:
- "8081:80"
web3:
image: newweb/nginx:v1.0.1
volumes:
- /data/www3:/usr/share/nginx/html
ports:
- "8082:80"
[root@host1 ~]# docker-compose up -d
[root@host1 ~]# docker-compose ps
[root@host1 ~]# docker-compose logs
[root@host1 ~]# docker-compose down
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。