From 2658ef5e0b222256fd437abe61364282117948ea Mon Sep 17 00:00:00 2001 From: Jay Pfaffman Date: Mon, 5 Mar 2018 14:30:08 -0800 Subject: [PATCH] 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. --- bin/docker/reset_db | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bin/docker/reset_db b/bin/docker/reset_db index 038cfd236ea..22ee77d1f23 100755 --- a/bin/docker/reset_db +++ b/bin/docker/reset_db @@ -1,8 +1,11 @@ #!/bin/bash -SCRIPTPATH=$(cd "$(dirname "$0")"; pwd -P) +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? +# 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