mirror of
https://github.com/kasmtech/workspaces-images.git
synced 2025-07-19 15:15:02 +02:00
12 lines
253 B
Bash
12 lines
253 B
Bash
#! /bin/bash
|
|
|
|
## Parse input ##
|
|
NAME=$1
|
|
|
|
## Run readme updater ##
|
|
docker run -v $PWD/docs:/docs \
|
|
-e RELEASE="$KASM_RELEASE" \
|
|
-e QUAY_API_KEY="$QUAY_API_KEY" \
|
|
-e QUAY_REPOSITORY="${MIRROR_ORG_NAME}/${NAME}" \
|
|
kasmweb/dockerhub-updater:develop
|