04f8c9ca12
* Added Node, Nginx and Redis Project * Added Flask/Redis
28 lines
370 B
YAML
28 lines
370 B
YAML
|
|
services:
|
|
redis:
|
|
image: 'redislabs/redismod'
|
|
ports:
|
|
- '6379:6379'
|
|
web1:
|
|
restart: on-failure
|
|
build: ./web
|
|
hostname: web1
|
|
ports:
|
|
- '81:5000'
|
|
web2:
|
|
restart: on-failure
|
|
build: ./web
|
|
hostname: web2
|
|
ports:
|
|
- '82:5000'
|
|
nginx:
|
|
build: ./nginx
|
|
ports:
|
|
- '80:80'
|
|
depends_on:
|
|
- web1
|
|
- web2
|
|
|
|
|