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