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.
|
- version: '2'
- services:
- db:
- image: postgres:9.5
- volumes:
- - postgresql:/var/lib/postgresql/data
- backend:
- build: ./backend
- ports:
- - "8000:8000"
- depends_on:
- - db
- frontend:
- build: ./frontend
- ports:
- - "8080:8080"
- nginx:
- build: ./nginx
- ports:
- - "80:80"
- - "443:443"
- volumes:
- - ./nginx/ssl:/certificates
- volumes_from:
- - backend
- links:
- - backend
- - frontend
- volumes:
- postgresql:
|