openvidu/openvidu-server/docker/openvidu-recording/create_image.sh

11 lines
241 B
Bash
Raw Normal View History

#!/bin/bash -x
2020-11-10 19:29:45 +01:00
TAG=$1
if [[ -n $TAG ]]; then
docker build --rm --pull --no-cache -t "openvidu/openvidu-recording:$TAG" .
else
echo "Error: You need to specify a docker tag as second argument"
echo "./create_image.sh 2.26.0"
fi