Back to snippets
docker_compose_python_web_app_with_redis.yaml
yamlDefines a multi-container application consisting of a Python web
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"