Skip to content

Commit 3b85f7e

Browse files
author
Mateusz Czeladka
committed
fix: removal of specific db schema
1 parent e9c364d commit 3b85f7e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.env.docker-compose-preprod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ DB_SECRET=weakpwd#123_d
1616
DB_HOST=db
1717
# Service name in docker-compose or local db
1818
DB_PORT=5432
19-
DB_SCHEMA=${NETWORK}
19+
DB_SCHEMA=public
2020
DB_PATH=/opt/rosetta-java-preprod/sql_data
2121

2222
## Cardano Node variables

docker/dockerfiles/postgres/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ start_postgres() {
103103
}
104104

105105
create_database_and_user() {
106-
export DB_SCHEMA="$NETWORK"
106+
export DB_SCHEMA="public"
107107

108108
flag=true
109109
while [ $(sudo -u postgres "$PG_BIN/psql" -p "$DB_PORT" -U postgres -Atc "SELECT pg_is_in_recovery()";) == "t" ]; do

0 commit comments

Comments
 (0)