diff options
| author | Mitch Riedstra <mitch@riedstra.us> | 2019-09-13 23:25:19 -0400 |
|---|---|---|
| committer | Mitch Riedstra <mitch@riedstra.us> | 2019-09-13 23:25:19 -0400 |
| commit | 103d362b6a76f1bc05b038e7e0b68eb5cd37dc26 (patch) | |
| tree | ac52f33767edc25c31ea9f7e71296a1e27c7eb1b /etc/sv/postgres | |
| parent | d16ac1fa8e8b7019156ae11267a23d957aed6495 (diff) | |
| download | dispatch-tracker-103d362b6a76f1bc05b038e7e0b68eb5cd37dc26.tar.gz dispatch-tracker-103d362b6a76f1bc05b038e7e0b68eb5cd37dc26.tar.xz | |
failed experiment with running the demo application entirely inside of a docker containerdemo
Diffstat (limited to 'etc/sv/postgres')
| -rwxr-xr-x | etc/sv/postgres/run | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/etc/sv/postgres/run b/etc/sv/postgres/run new file mode 100755 index 0000000..dafcfe3 --- /dev/null +++ b/etc/sv/postgres/run @@ -0,0 +1,14 @@ +#!/bin/sh +set -e +pguser="postgres" + +PGDATA="/postgres" +if ! [ -d "$PGDATA" ] ; then + mkdir -p "$PGDATA" + chown -R "$pguser" "$PGDATA" + chmod 700 "$PGDATA" + su - postgres -m -c "pg_ctl initdb -D \"$PGDATA\"" +fi + +mkdir -p /run/postgresql && chown "$pguser" /run/postgresql +exec chpst -u postgres:postgres postgres -D "$PGDATA" 2>&1 |
