discourse_docker/image/discourse_dev/ensure-database

11 lines
329 B
Bash
Executable File

#!/bin/bash
if [ ! -f /shared/postgres_data/PG_VERSION ]; then
mkdir -p /shared/postgres_data
chown -R postgres:postgres /shared/postgres_data
chmod 700 /shared/postgres_data
cp -R /shared/postgres_data_orig/* /shared/postgres_data
chown -R postgres:postgres /shared/postgres_data
chmod 700 /shared/postgres_data
fi