1
0
Fork 0
mirror of https://github.com/docker/awesome-compose.git synced 2025-04-28 23:31:47 +02:00

Added Flask/Redis

Signed-off-by: ajeetraina <ajeetraina@gmail.com>
This commit is contained in:
ajeetraina 2022-03-07 11:45:07 +05:30
parent 99d423e7dd
commit 6d2816541c
17 changed files with 36 additions and 85 deletions

View 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