You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- db:
- restart: always
- image: postgres:9.4
- volumes:
- - postgres_db:/var/lib/postgresql/data
- django:
- restart: always
- build: .
- expose:
- - "8000"
- volumes:
- - django_www:/usr/src/app/www
- links:
- - db
- command: ./start.sh
- nginx:
- restart: always
- build: ./nginx/
- ports:
- - "80:80"
- volumes_from:
- - django
- links:
- - django
|