discourse/bin/docker/reset_db
Jay Pfaffman 2658ef5e0b FIX: reset_db (#5617)
To get the database rebuilt requires a restart of the container. 

I also added a rake admin:create, since it's useful, and it's what `boot_dev --init `does.
2018-03-05 17:30:08 -05:00

12 lines
510 B
Bash
Executable File

#!/bin/bash
SCRIPTPATH=$(cd "$(dirname "$0")" >/dev/null; pwd -P)
SOURCE_DIR=$(cd "$SCRIPTPATH" && cd ../.. && pwd -P)
DATA_DIR=$SOURCE_DIR/data/postgres
# Should this also run /etc/runit/1.d/ensure_database, or will that
# happen automatically? -- It will happen, but restarting the container is required
docker run -it -v $DATA_DIR:/shared/postgres_data discourse/dev /bin/bash -c "rm -fr /shared/postgres_data/*"
docker restart discourse_dev
echo "Creating admin user..."
"${SCRIPTPATH}/rake" admin:create