Skip to content

Instantly share code, notes, and snippets.

@bwv988
Created April 24, 2018 10:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bwv988/f3e02714fd67016071c86bfbc25be5b0 to your computer and use it in GitHub Desktop.
Save bwv988/f3e02714fd67016071c86bfbc25be5b0 to your computer and use it in GitHub Desktop.
Docker compose file for the Kaggle Python container
version: '2'
services:
kaggle:
image: kaggle/python
container_name: kaggle
command: jupyter notebook --allow-root --no-browser --ip="0.0.0.0" --notebook-dir=/notebooks --NotebookApp.token='' --allow-root
user: root
ports:
- "8888:8888"
volumes:
- .:/notebooks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment