mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:15:32 +08:00
4db3f53c87
This PR is intended to work in concert with the discourse_docker changes in https://github.com/discourse/discourse_docker/pull/292. I have used those changes to build a local "discourse_dev" image, and then _**these**_ changes to easily spin up and work on Discourse and plugin functionality. It's working well for me, but of course YMMV. Add `--init` and `--patch` options to bin/docker/boot_dev to make it easier to spin up a container running Discourse out of a development directory. Add `bin/docker/README.md` to explain how to go about using the docker command-line tools. Tweak the Docker command-line tools to use the `-u` option to specify user rather than changing to the user "inside" the container via `chpst` (This way, we don't have to explicitly specify the HOME environment variable, either.) Add `bin/docker/shell` command to make it easy to jump inside the running container.
9 lines
345 B
Bash
Executable File
9 lines
345 B
Bash
Executable File
#!/bin/bash
|
|
SCRIPTPATH=$(cd "$(dirname "$0")"; pwd -P)
|
|
SOURCE_DIR=$(cd "$SCRIPTPATH" && cd ../.. && pwd -P)
|
|
DATA_DIR=$SOURCE_DIR/tmp/postgres
|
|
|
|
# Should this also run /etc/runit/1.d/ensure_database, or will that
|
|
# happen automatically?
|
|
docker run -it -v $DATA_DIR:/shared/postgres_data discourse/dev /bin/bash -c "rm -fr /shared/postgres_data/*"
|