mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-04-29 22:24:28 +02:00
12 lines
200 B
Bash
12 lines
200 B
Bash
#!/bin/bash
|
|
|
|
if [[ $# -lt 1 || $# -gt 2 ]]; then
|
|
echo "Invalid Arguments"
|
|
exit -1
|
|
fi
|
|
|
|
TARGET="$1"
|
|
VARIANT="${2:-gpl}"
|
|
REPO="${DOCKER_REPO:-btbn/ffmpeg-builder}"
|
|
IMAGE="$REPO:$TARGET-$VARIANT"
|