Skip to content

Commit

Permalink
Added a comment about docker-compose and port (fix #45).
Browse files Browse the repository at this point in the history
  • Loading branch information
yunabe committed May 14, 2018
1 parent 8753005 commit 6fb07fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ Open your temporary Jupyter Notebook from the button above and enjoy lgo.
> cd lgo/docker/jupyter
> docker-compose up -d
```

If you want to use a port other than `8888` on host, update ports config in `lgo/docker/jupyter/docker-compose.yaml` before running `docker-compose up`.

3. Get the URL to open the Jupyter Notebook
```
> docker-compose exec jupyter jupyter notebook list
Expand Down
1 change: 1 addition & 0 deletions docker/jupyter/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ services:
jupyter:
build:
context: .
# To use a different port of host, change the first 8888.
ports:
- "8888:8888"
volumes:
Expand Down

0 comments on commit 6fb07fe

Please sign in to comment.