mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-08 08:33:45 +01:00
13 lines
399 B
Bash
Executable File
13 lines
399 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Create a database migration, and copy it back to the host.
|
|
|
|
set -e
|
|
. "${BASH_SOURCE%/*}/common.sh"
|
|
|
|
docker exec "$(container app)" sh -c "FLASK_CONFIG=../config.cfg FLASK_APP=app/__init__.py flask db migrate"
|
|
docker exec -u root "$(container app)" sh -c "cp /home/cdb/migrations/versions/* /source/migrations/versions/"
|
|
|
|
USER=$(whoami)
|
|
sudo chown -R "$USER:$USER" migrations/versions
|