Skip to content

Instantly share code, notes, and snippets.

@ismummy
Forked from karakanb/docker-compose.yml
Created June 6, 2021 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ismummy/335412f0558a90d5e86bbf83e3bc3d6a to your computer and use it in GitHub Desktop.
Save ismummy/335412f0558a90d5e86bbf83e3bc3d6a to your computer and use it in GitHub Desktop.
A simple docker-compose example
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