From 47371a102e211b0b69abfeba6732fc5ffeb6be75 Mon Sep 17 00:00:00 2001 From: ajeetraina Date: Mon, 7 Mar 2022 20:27:24 +0530 Subject: [PATCH] Updated README.md Signed-off-by: ajeetraina --- flask-redis/README.md | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/flask-redis/README.md b/flask-redis/README.md index 1ac5ca7..0a40511 100644 --- a/flask-redis/README.md +++ b/flask-redis/README.md @@ -1,7 +1,9 @@ ## Compose sample application + ### Python/Flask application Project structure: + ``` . ├── Dockerfile @@ -12,12 +14,22 @@ Project structure: ``` [_docker-compose.yml_](docker-compose.yml) + ``` -services: - web: - build: app - ports: - - '5000:5000' +version: '2' +services: + redis: + image: redislabs/redismod + ports: + - '6379:6379' + web: + build: . + ports: + - "5000:5000" + volumes: + - .:/code + depends_on: + - redis ``` ## Deploy with docker-compose