Files
anyllm-proxy/docker-entrypoint.sh
T
whit3rabbitandClaude Sonnet 4.6 1f9bb02968 feat: add Docker support, Gemini input handler, and batch engine improvements
Adds multi-arch Docker build with docker-compose, GitHub Actions CI workflow,
Gemini native input parsing, batch engine SQLite/file/webhook refactors,
and Bedrock streaming fixes.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-05 12:01:24 -05:00

11 lines
293 B
Bash
Executable File

#!/bin/sh
set -e
# Translate WEBUI=1 or ADMIN=1 into the --webui CLI flag so Docker users
# can enable the admin UI via environment variables without overriding CMD.
if [ "${WEBUI:-0}" = "1" ] || [ "${ADMIN:-0}" = "1" ]; then
set -- --webui "$@"
fi
exec /usr/local/bin/anyllm_proxy "$@"