mirror of
https://github.com/kasmtech/workspaces-core-images.git
synced 2024-11-07 08:04:06 +01:00
14 lines
324 B
Bash
Executable File
14 lines
324 B
Bash
Executable File
#! /bin/bash
|
|
|
|
## Parse input ##
|
|
NAME1=$1
|
|
NAME2=$2
|
|
|
|
## 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}/core-${NAME1}-${NAME2}" \
|
|
kasmweb/dockerhub-updater:develop
|