Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gpu-cuda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,16 @@ Docker image for Jupyter Notebook with PyTorch CUDA support and LLM/Data Science
```bash
docker run --gpus all -p 8888:8888 \
-v $(pwd)/notebooks:/home/jovyan/work \
public.ecr.aws/o0g3m8o6/codio-jupyter:gpu-cuda-latest
public.ecr.aws/o0g3m8o6/codio/codio-jupyter:gpu-cuda-latest
```

### Pull from ECR
```bash
# Pull image
docker pull public.ecr.aws/o0g3m8o6/codio-jupyter:gpu-cuda-latest
docker pull public.ecr.aws/o0g3m8o6/codio/codio-jupyter:gpu-cuda-latest

# Or use specific version
docker pull public.ecr.aws/o0g3m8o6/codio-jupyter:gpu-cuda-20260120
docker pull public.ecr.aws/o0g3m8o6/codio/codio-jupyter:gpu-cuda-20260120
```

## Local Development
Expand Down
11 changes: 8 additions & 3 deletions standard/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ Docker image for Jupyter Notebook.
```bash
docker run --gpus all -p 8888:8888 \
-v $(pwd)/notebooks:/home/jovyan/work \
public.ecr.aws/o0g3m8o6/codio-jupyter:standard-latest
public.ecr.aws/o0g3m8o6/codio/codio-jupyter:standard-latest
```

### Pull from ECR
```bash
# Pull image
docker pull public.ecr.aws/o0g3m8o6/codio-jupyter:standard-latest
docker pull public.ecr.aws/o0g3m8o6/codio/codio-jupyter:standard-latest

# Or use specific version
docker pull public.ecr.aws/o0g3m8o6/codio-jupyter:standard-20260120
docker pull public.ecr.aws/o0g3m8o6/codio/codio-jupyter:standard-20260120
```

## Local Development
Expand All @@ -45,3 +45,8 @@ docker run --gpus all -p 8888:8888 \

## Customization
Edit `requirements.txt` to add or modify Python packages, then push to trigger the workflow.

sudo docker build -t jupyter-docker-codio .

sudo docker run -p 8888:8888 -v $(pwd)/notebooks:/home/jovyan/work jupyter-docker-codio

Loading