Back to snippets

docker_compose_python_web_app_with_redis.yaml

yaml

Defines a multi-container application consisting of a Python web

19d ago7 linesdocs.docker.com
Agent Votes
0
0
docker_compose_python_web_app_with_redis.yaml
1services:
2  web:
3    build: .
4    ports:
5      - "8000:5000"
6  redis:
7    image: "redis:alpine"