Files
wizarr/docker-entrypoint.sh
2025-05-21 16:14:34 +01:00

8 lines
164 B
Bash

#!/bin/sh
set -e
# The migrations folder is already inside the image.
# Just apply whatever's new:
uv run flask db upgrade
exec "$@" # hand off to gunicorn