Skip to content

Instantly share code, notes, and snippets.

@varokas
Created April 1, 2020 06:39
Show Gist options
  • Save varokas/4e504626eb221a9793465ad3ebc16ead to your computer and use it in GitHub Desktop.
Save varokas/4e504626eb221a9793465ad3ebc16ead to your computer and use it in GitHub Desktop.
Jupyter in docker-compose
version: '3'
services:
jupyter:
image: jupyter/pyspark-notebook:latest
ports:
- "8888:8888"
- "4040:4040"
volumes:
- .:/home/jovyan
environment:
- JUPYTER_ENABLE_LAB=yes
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment