Merge pull request #1806 from ChrisPappalardo/pycon2017_sprints_docker

DOC: Add instructions for common Docker build failures
This commit is contained in:
Freddie Vargus
2017-05-23 17:05:12 -07:00
committed by GitHub
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
#
# docker exec -it zipline zipline run -f /projects/my_algo.py --start 2015-1-1 --end 2016-1-1 /projects/result.pickle
#
FROM python:2.7
FROM python:3.5
#
# set up environment
+4
View File
@@ -3,6 +3,10 @@
#
# docker build -t quantopian/ziplinedev -f Dockerfile-dev .
#
# Note: the dev build requires a quantopian/zipline image, which you can build as follows:
#
# docker build -t quantopian/zipline -f Dockerfile
#
# To run the container:
#
# docker run -v /path/to/your/notebooks:/projects -v ~/.zipline:/root/.zipline -p 8888:8888/tcp --name ziplinedev -it quantopian/ziplinedev