It builds. Needs testing

This commit is contained in:
Tanshu
2016-01-31 14:03:28 +05:30
parent dfff92d978
commit d70e9ae860
6 changed files with 44 additions and 11 deletions

View File

@ -2,9 +2,9 @@ web:
restart: always
build: ./web
expose:
- "6543"
- "80"
ports:
- "6543:6543"
- "6543:80"
links:
- postgres:postgres
volumes:
@ -17,19 +17,15 @@ web:
nginx:
restart: always
build: ./nginx/
build: ./nginx
ports:
- "80:80"
volumes:
- /www/static
volumes_from:
- web
- "8005:80"
links:
- web:web
postgres:
restart: always
image: ./postgres
build: ./postgres
volumes:
- pgdata:/var/lib/postgresql/data
expose: