Last active
June 6, 2021 11:37
-
-
Save karakanb/d0340480766f547929ae3796d7478ce3 to your computer and use it in GitHub Desktop.
A simple docker-compose example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
web: | |
build: . | |
ports: | |
- "5000:5000" | |
volumes: | |
- .:/code | |
environment: | |
FLASK_ENV: development | |
REDIS_HOST: redis | |
REDIS_PORT: 6379 | |
redis: | |
image: "redis:alpine" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment