https://github.com/fabiangroeger96/docker-deep-learning
A Docker Image for Deep Learning with Python 3
https://github.com/fabiangroeger96/docker-deep-learning
deep-learning docker docker-file docker-image
Last synced: about 1 month ago
JSON representation
A Docker Image for Deep Learning with Python 3
- Host: GitHub
- URL: https://github.com/fabiangroeger96/docker-deep-learning
- Owner: FabianGroeger96
- License: mit
- Created: 2019-10-17T09:41:19.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-10T06:48:46.000Z (over 5 years ago)
- Last Synced: 2025-01-28T21:35:15.612Z (3 months ago)
- Topics: deep-learning, docker, docker-file, docker-image
- Language: Dockerfile
- Size: 8.79 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-deep-learning
A Docker Image for Deep Learning with Python 3
## Start the container
```bash
docker run -it --name python-deep-learning -v $(PWD):/home/notebooks -p 8888:8888 -p 5001:6006 -d --rm python-deep-learning
```* Port 8888: used for jupyter notebook
* Port 5001: user for tensorboard## Connect to bash on container
```bash
docker exec -it python-deep-learning /bin/bash
```## Open Jupyter Notebook
Open this link [localhost:8888](http://localhost:8888/) in your browser and start working on your notebook.
## Stop the container
```bash
docker stop python-deep-learning
```