mirror of
https://github.com/levogevo/ffmpeg-builder.git
synced 2026-01-15 19:06:17 +00:00
initial working ffmpeg static/shared
This commit is contained in:
14
run-container.sh
Executable file
14
run-container.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
THIS_DIR="$(dirname "${BASH_SOURCE[0]}")"
|
||||
IMAGE_NAME='ffmpeg_builder'
|
||||
DISTROS=( debian ubuntu archlinux fedora )
|
||||
DISTROS=( debian )
|
||||
|
||||
for DISTRO in "${DISTROS[@]}"; do
|
||||
docker run \
|
||||
--rm -it \
|
||||
-v "${THIS_DIR}":/workdir \
|
||||
-w /workdir \
|
||||
"${IMAGE_NAME}-${DISTRO}" bash main.sh
|
||||
done
|
||||
Reference in New Issue
Block a user