Skip to content

Instantly share code, notes, and snippets.

@edwinallenz
Created November 17, 2015 15:46
Show Gist options
  • Select an option

  • Save edwinallenz/2f699333f4e9e053173a to your computer and use it in GitHub Desktop.

Select an option

Save edwinallenz/2f699333f4e9e053173a to your computer and use it in GitHub Desktop.
Docker volume test
from flask import Flask
from redis import Redis
import os
app = Flask(__name__)
redis = Redis(host='redis', port=6379)
@app.route('/')
def hello():
redis.incr('hits')
return 'Hello World! I have been seen %s times.' % redis.get('hits')
if __name__ == "__main__":
app.run(host="0.0.0.0", debug=True)
web:
build: .
command: python app.py
ports:
- "5000:5000"
volumes:
- .:/code
links:
- redis
redis:
image: redis
FROM python:2.7
ADD . /code
WORKDIR /code
RUN pip install -r requirements.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment