Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/flor14/dockerfile-practice


https://github.com/flor14/dockerfile-practice

Last synced: 17 days ago
JSON representation

Awesome Lists containing this project

README

        

# docker-practice

First, you can build the Docker image and save it with the name `jupyter-demo`

```bash
docker build -t flor14/jupyter-demo .
```

Then, you can run the container with the command

```bash
docker run -it --rm -p 8888:8888 -v $PWD:/home/jovyan/work/ jupyter-demo
```