mirror of
https://github.com/gravitystorm/openstreetmap-carto.git
synced 2025-07-14 13:00:47 +02:00
7 lines
195 B
Bash
7 lines
195 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
export PGUSER="$POSTGRES_USER"
|
|
|
|
psql -c "ALTER SYSTEM SET work_mem='${PG_WORK_MEM:-16MB}';"
|
|
psql -c "ALTER SYSTEM SET maintenance_work_mem='${PG_MAINTENANCE_WORK_MEM:-256MB}';"
|