Skip to content

Commit 72c6faf

Browse files
committed
Add missing file
1 parent ad85d81 commit 72c6faf

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Update Registry overviews
2+
3+
env:
4+
OWNER: ${{ github.repository_owner }}
5+
6+
on:
7+
push:
8+
branches:
9+
- main
10+
paths:
11+
- ".github/workflows/registry-overviews.yml"
12+
13+
- "images/*/README.md"
14+
workflow_dispatch:
15+
16+
jobs:
17+
update-overview:
18+
runs-on: ubuntu-latest
19+
name: update-overview (${{matrix.image}})
20+
if: github.repository == 'jupyter/docker-stacks'
21+
22+
steps:
23+
- name: Checkout Repo ⚡️
24+
uses: actions/checkout@v4
25+
26+
- name: Push README to Registry 🐳
27+
uses: christian-korneck/update-container-description-action@d36005551adeaba9698d8d67a296bd16fa91f8e8 # v1
28+
env:
29+
DOCKER_USER: ${{ secrets.DOCKERHUB_USERNAME }}
30+
DOCKER_PASS: ${{ secrets.DOCKERHUB_TOKEN }}
31+
with:
32+
destination_container_repo: ${{ env.OWNER }}/${{ matrix.image }}
33+
provider: dockerhub
34+
short_description: ${{ matrix.description }}
35+
readme_file: images/${{ matrix.image }}/README.md
36+
37+
strategy:
38+
matrix:
39+
include:
40+
- image: docker-stacks-foundation
41+
description: "Tiny base image on which Jupyter apps can be built from https://github.com/jupyter/docker-stacks"
42+
- image: base-notebook
43+
description: "Base image for Jupyter Notebook stacks from https://github.com/jupyter/docker-stacks"
44+
- image: minimal-notebook
45+
description: "Minimal Jupyter Notebook Python Stack from https://github.com/jupyter/docker-stacks"
46+
- image: scipy-notebook
47+
description: "Scientific Jupyter Notebook Python Stack from https://github.com/jupyter/docker-stacks"
48+
- image: r-notebook
49+
description: "R Jupyter Notebook Stack from https://github.com/jupyter/docker-stacks"
50+
- image: julia-notebook
51+
description: "Julia Jupyter Notebook Stack from https://github.com/jupyter/docker-stacks"
52+
- image: tensorflow-notebook
53+
description: "Scientific Jupyter Notebook Python Stack w/ TensorFlow from https://github.com/jupyter/docker-stacks"
54+
- image: datascience-notebook
55+
description: "Data Science Jupyter Notebook Python Stack from https://github.com/jupyter/docker-stacks"
56+
- image: pyspark-notebook
57+
description: "Python and Spark Jupyter Notebook Stack from https://github.com/jupyter/docker-stacks"
58+
- image: all-spark-notebook
59+
description: "Python, Scala, R and Spark Jupyter Notebook Stack from https://github.com/jupyter/docker-stacks"

0 commit comments

Comments
 (0)