mirror of
https://github.com/kasmtech/workspaces-images.git
synced 2024-11-07 08:44:07 +01:00
13 lines
299 B
Bash
Executable File
13 lines
299 B
Bash
Executable File
#! /bin/bash
|
|
|
|
## Parse input ##
|
|
NAME=$1
|
|
|
|
## Run readme updater ##
|
|
docker run -v $PWD/docs:/docs \
|
|
-e RELEASE="$KASM_RELEASE" \
|
|
-e DOCKER_USERNAME="$README_USERNAME" \
|
|
-e DOCKER_PASSWORD="$README_PASSWORD" \
|
|
-e DOCKERHUB_REPOSITORY="${ORG_NAME}/${NAME}" \
|
|
kasmweb/dockerhub-updater:develop
|