mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 08:04:03 +08:00
2658ef5e0b
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.
12 lines
510 B
Bash
Executable File
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
|