mirror of
https://github.com/docker/awesome-compose.git
synced 2025-04-29 07:38:02 +02:00
Added Flask/Redis
Signed-off-by: ajeetraina <ajeetraina@gmail.com>
This commit is contained in:
parent
a062b3a749
commit
2652caaf60
17 changed files with 36 additions and 85 deletions
14
flask-redis/docker-compose.yml
Normal file
14
flask-redis/docker-compose.yml
Normal file
|
@ -0,0 +1,14 @@
|
|||
version: '2'
|
||||
services:
|
||||
redis:
|
||||
image: redislabs/redismod
|
||||
ports:
|
||||
- '6379:6379'
|
||||
web:
|
||||
build: .
|
||||
ports:
|
||||
- "5000:5000"
|
||||
volumes:
|
||||
- .:/code
|
||||
depends_on:
|
||||
- redis
|
Loading…
Add table
Add a link
Reference in a new issue