Skip to content

Commit

Permalink
Fix docker labels
Browse files Browse the repository at this point in the history
  • Loading branch information
pocki committed Feb 2, 2024
1 parent e97f0c0 commit 02fea54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
with:
push: true
build-args: base_image=jupyter/minimal-notebook
tags: pocki/jupyter-minimal-dotnet8:latest, pocki/jupyter-minimal-dotnet8:${{ steps.prep.outputs.datetag }}
tags: pocki/jupyter-dotnet:minimal-dotnet8-latest, pocki/jupyter-dotnet:minimal-dotnet8-${{ steps.prep.outputs.datetag }}
labels: |
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
Expand All @@ -60,7 +60,7 @@ jobs:
with:
push: true
build-args: base_image=jupyter/scipy-notebook
tags: pocki/jupyter-scipy-dotnet8:latest, pocki/jupyter-scipy-dotnet8:${{ steps.prep.outputs.datetag }}
tags: pocki/jupyter-dotnet:scipy-dotnet8-latest, pocki/jupyter-dotnet:scipy-dotnet8-${{ steps.prep.outputs.datetag }}
labels: |
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
Expand All @@ -76,7 +76,7 @@ jobs:
with:
push: true
build-args: base_image=jupyter/r-notebook
tags: pocki/jupyter-r-dotnet8:latest, pocki/jupyter-r-dotnet8:${{ steps.prep.outputs.datetag }}
tags: pocki/jupyter-dotnet:r-dotnet8-latest, pocki/jupyter-dotnet:r-dotnet8-${{ steps.prep.outputs.datetag }}
labels: |
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.created=${{ steps.prep.outputs.created }}
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ Extending the [Jupyter Docker Stack images](https://github.com/jupyter/docker-st
This images can be started as the original Jupyter Docker Stack images (see the Jupyter Docker Stacks [ReadTheDocs](https://jupyter-docker-stacks.readthedocs.io/en/latest/index.html))

```
docker run -p 8888:8888 ghcr.io/pocki/jupyter-minimal-dotnet8:latest
docker run -p 8888:8888 ghcr.io/pocki/jupyter-dotnet:minimal-dotnet8-latest
```

To persistant the notebooks mount the directory: `/home/jovyan/Notebooks`
```
docker run -p 8888:8888 ghcr.io/pocki/jupyter-scipy-dotnet8:latest -v "$PWD":/home/jovyan/Notebooks
docker run -p 8888:8888 ghcr.io/pocki/jupyter-dotnet:scipy-dotnet8-latest -v "$PWD":/home/jovyan/Notebooks
```

All images contain some .NET sample notebooks.
Expand Down

0 comments on commit 02fea54

Please sign in to comment.