self-hosted/mattermost/db/setup-wale.sh
Lorenzo Carbonell 8c03fa24ea data
2022-07-25 17:23:41 +02:00

8 lines
310 B
Bash
Executable File

#!/bin/bash
# wal-e specific configuration
echo "wal_level = $WAL_LEVEL" >>$PGDATA/postgresql.conf
echo "archive_mode = $ARCHIVE_MODE" >>$PGDATA/postgresql.conf
echo "archive_command = '/usr/bin/wal-e wal-push %p'" >>$PGDATA/postgresql.conf
echo "archive_timeout = $ARCHIVE_TIMEOUT" >>$PGDATA/postgresql.conf