1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-26 02:38:07 +02:00
awesome-compose/nginx-nodejs-redis/docker-compose.yml

26 lines
334 B
YAML
Raw Normal View History

2022-03-07 23:03:53 +05:30
2022-03-05 12:23:50 +05:30
services:
redis:
2022-03-12 11:22:09 +05:30
image: 'redislabs/redismod'
2022-03-05 12:23:50 +05:30
ports:
- '6379:6379'
web1:
restart: on-failure
build: ./web1
ports:
- '81:5000'
web2:
restart: on-failure
build: ./web2
ports:
- '82:5000'
nginx:
build: ./nginx
ports:
- '80:80'
depends_on:
- web1
- web2