时间:2015-07-17 15:39:14 作者:zhijie 来源:系统之家 1. 扫描二维码随时看资讯 2. 请使用手机浏览器访问: https://m.xitongzhijia.net/xtjc/20150717/53187.html 手机查看 评论 反馈
Docker Compose
让我们看一看 docker-compose.yml 文件:
web:
restart: always
build: 。/web
expose:
- “8000”
links:
- postgres:postgres
- redis:redis
volumes:
- /usr/src/app/static
env_file: .env
command: /usr/local/bin/gunicorn docker_django.wsgi:application -w 2 -b :8000
nginx:
restart: always
build: 。/nginx/
ports:
- “80:80”
volumes:
- /www/static
volumes_from:
- web
links:
- web:web
postgres:
restart: always
image: postgres:latest
volumes_from:
- data
ports:
- “5432:5432”
redis:
restart: always
image: redis:latest
ports:
- “6379:6379”
data:
restart: always
image: postgres:latest
volumes:
- /var/lib/postgresql
command: true
在这里,我们定义了五个服务: Web、Nginx、Postgres、Redis 和 Data。
发表评论
共0条
评论就这些咯,让大家也知道你的独特见解
立即评论以上留言仅代表用户个人观点,不代表系统之家立场