File tree Expand file tree Collapse file tree 4 files changed +1
-12
lines changed
Expand file tree Collapse file tree 4 files changed +1
-12
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ COPY ./scripts/setup-1-pgBadger.sh /docker-entrypoint-initdb.d/
3232COPY ./scripts/setup-3-pg_repack.sh /docker-entrypoint-initdb.d/
3333COPY ./scripts/setup-4-pgstatstatements.sh /docker-entrypoint-initdb.d/
3434COPY ./scripts/setup-5-pmm.sh /docker-entrypoint-initdb.d/
35- COPY ./scripts/setup-6-pgrouting.sh /docker-entrypoint-initdb.d/
3635COPY ./scripts/setup-dbs.sh /docker-entrypoint-initdb.d/
3736
3837# Install scripts to be run after DB initialization
@@ -45,7 +44,6 @@ RUN chmod +x /docker-entrypoint-initdb.d/setup-0-pgaudit.sh \
4544 /docker-entrypoint-initdb.d/setup-3-pg_repack.sh \
4645 /docker-entrypoint-initdb.d/setup-4-pgstatstatements.sh \
4746 /docker-entrypoint-initdb.d/setup-5-pmm.sh \
48- /docker-entrypoint-initdb.d/setup-6-pgrouting.sh \
4947 /docker-entrypoint-initdb.d/setup-dbs.sh \
5048 /usr/local/bin/setup-parse-index.sh
5149
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-E
1414 ALTER SYSTEM SET pgaudit.log = 'all, -misc';
1515 ALTER SYSTEM SET pgaudit.log_relation = 'on';
1616 ALTER SYSTEM SET pgaudit.log_parameter = 'on';
17- ALTER SYSTEM SET shared_preload_libraries = 'set-user';
1817EOSQL
1918
2019exec " $@ "
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ psql -v ON_ERROR_STOP=1 --username "${POSTGRES_USER}" --dbname "${POSTGRES_DB}"
77 \c ${PG_PARSE_DB} ;
88 CREATE EXTENSION IF NOT EXISTS postgis;
99 CREATE EXTENSION IF NOT EXISTS postgis_topology;
10+ CREATE EXTENSION IF NOT EXISTS pgrouting;
1011EOSQL
1112
1213exec " $@ "
You can’t perform that action at this time.
0 commit comments