We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9c364d commit 3b85f7eCopy full SHA for 3b85f7e
.env.docker-compose-preprod
@@ -16,7 +16,7 @@ DB_SECRET=weakpwd#123_d
16
DB_HOST=db
17
# Service name in docker-compose or local db
18
DB_PORT=5432
19
-DB_SCHEMA=${NETWORK}
+DB_SCHEMA=public
20
DB_PATH=/opt/rosetta-java-preprod/sql_data
21
22
## Cardano Node variables
docker/dockerfiles/postgres/entrypoint.sh
@@ -103,7 +103,7 @@ start_postgres() {
103
}
104
105
create_database_and_user() {
106
- export DB_SCHEMA="$NETWORK"
+ export DB_SCHEMA="public"
107
108
flag=true
109
while [ $(sudo -u postgres "$PG_BIN/psql" -p "$DB_PORT" -U postgres -Atc "SELECT pg_is_in_recovery()";) == "t" ]; do
0 commit comments