123456789101112131415161718192021222324252627282930 |
- version: '2'
- services:
- backend:
- build: ./backend
- ports:
- - "8080:8080"
- volumes:
- - ./backend:/opt/app
- links:
- - mongo
- - redis
- environment:
- - NGINX_PORT=80
- frontend:
- build: ./frontend
- ports:
- - "80:80"
- volumes:
- - ./frontend:/opt/app
- mongo:
- image: mongo
- ports:
- - "27017:27017"
- mongoclient:
- image: mongoclient/mongoclient
- ports:
- - "3000:3000"
- redis:
- image: redis
- command: "--notify-keyspace-events Ex"
|