https://github.com/buarki/augmented-jupyter-notebook
Extended jupyter notebook image.
https://github.com/buarki/augmented-jupyter-notebook
docker docker-compose jupyter-notebook ml
Last synced: about 2 months ago
JSON representation
Extended jupyter notebook image.
- Host: GitHub
- URL: https://github.com/buarki/augmented-jupyter-notebook
- Owner: buarki
- Created: 2023-12-24T18:19:07.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-25T20:44:35.000Z (over 2 years ago)
- Last Synced: 2025-12-11T02:34:18.594Z (7 months ago)
- Topics: docker, docker-compose, jupyter-notebook, ml
- Language: Dockerfile
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# augmented jupyter notebook
## Basic usage
```sh
docker run -it --rm -p 8888:8888 -e JUPYTER_TOKEN=password buarki/augmented-jupyter-notebook
```
Then you can open `http://localhost:8888/` on a browser and it'll ask you for a token or password. If you just ran above command you can pass `password` as param.
## Build and running locally
You can build and run image locally using. One simple way is using the available commands on Makefile. To build the image you can run:
```sh
make build
```
To run with docker-compose you can:
```sh
make run_with_docker_compose
```
## Base image
The base image docs can be found at [jupyter-docker-stacks](https://github.com/Paperspace/jupyter-docker-stacks/blob/master/base-notebook/README.md), base base image is sourced from [jupyter dockerhub](https://hub.docker.com/r/jupyter/base-notebook/tags).