mirror of
https://github.com/stilleshan/dockerfiles.git
synced 2026-04-23 17:19:27 +08:00
13 lines
204 B
Bash
13 lines
204 B
Bash
#! /usr/bin/env sh
|
|
|
|
echo "Running inside /app/prestart.sh, you could add migrations to this file, e.g.:"
|
|
|
|
echo "
|
|
#! /usr/bin/env bash
|
|
|
|
# Let the DB start
|
|
sleep 10;
|
|
# Run migrations
|
|
alembic upgrade head
|
|
"
|