Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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:
|