docker reworking

This commit is contained in:
2025-09-11 19:45:35 -05:00
parent 0e97fb8c91
commit 82ff7d4f43
10 changed files with 214 additions and 123 deletions

22
lib/readme.sh Normal file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/env bash
FB_FUNC_NAMES+=('gen_readme')
FB_FUNC_DESCS['gen_readme']='generate project README.md'
gen_readme() {
local readme="${REPO_DIR}/README.md"
echo "
A collection of scripts for building ffmpeg and encoding content with the built ffmpeg
Tested on:
- linux x86_64/aarch64 on:
$(printf ' - %s\n' "${VALID_DOCKER_IMAGES[@]}")
- darwin aarch64
\`\`\`bash
$(print_cmds false)
\`\`\`
" >"${readme}"
}