系统之家 - 系统光盘下载网站!

当前位置:系统之家 > 系统教程 > Linux使用Docker开发Django

Linux系统使用Docker开发Django项目教程(2)

时间: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

没有更多评论了

评论就这些咯,让大家也知道你的独特见解

立即评论

以上留言仅代表用户个人观点,不代表系统之家立场

其他版本软件

热门教程

人气教程排行

Linux系统推荐

扫码关注
扫码关注

扫码关注 官方交流群 软件收录