Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flor14/dockerfile-practice
https://github.com/flor14/dockerfile-practice
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/flor14/dockerfile-practice
- Owner: flor14
- License: mit
- Created: 2021-12-04T01:04:24.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T15:05:26.000Z (almost 2 years ago)
- Last Synced: 2023-03-04T01:56:18.667Z (over 1 year ago)
- Language: Dockerfile
- Size: 44.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```