https://github.com/codecentric/codecentric.ai-docker
Automatic docker build for codecentric.AI bootcamp course.
https://github.com/codecentric/codecentric.ai-docker
Last synced: 10 months ago
JSON representation
Automatic docker build for codecentric.AI bootcamp course.
- Host: GitHub
- URL: https://github.com/codecentric/codecentric.ai-docker
- Owner: codecentric
- License: mit
- Created: 2018-11-05T14:12:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-25T07:11:34.000Z (over 6 years ago)
- Last Synced: 2025-01-17T15:16:35.925Z (12 months ago)
- Language: Python
- Size: 28.3 KB
- Stars: 3
- Watchers: 11
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# codecentricAI-docker
Dockerfile for codecentricAI Bootcamp environment
## Run from Dockerhub
### Jupyterlab starten
```bash
git clone https://github.com/codecentric/codecentric.AI-bootcamp
cd codecentric.AI-bootcamp
docker pull codecentric/codecentric.ai-docker
```
### Run on Mac & Linux
```bash
docker run -p 127.0.0.1:8888:8888 -v $(pwd)/notebooks:/notebooks -v $(pwd)/data:/data codecentric/codecentric.ai-docker
```
### Run on Windows
```bash
docker run -p 127.0.0.1:8888:8888 -v path/to/codecentric.AI-bootcamp/notebooks:/notebooks -v path/to/codecentric.AI-bootcamp/data:/data codecentric/codecentric.ai-docker
```
## Build locally
```bash
git clone https://github.com/codecentric/codecentric.AI-docker.git
cd codecentric.AI-docker
docker build -t codecentric.ai-docker .
git clone https://github.com/codecentric/codecentric.AI-bootcamp
cd codecentric.AI-bootcamp
docker run -p 8888:8888 -v $(pwd)/notebooks:/notebooks -v $(pwd)/data:/data codecentric.ai-docker
```