Skip to content

Commit

Permalink
fix: remove additional urls from docker images
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Roberts <ryan@blockchaintp.com>
  • Loading branch information
ryan-s-roberts committed Sep 27, 2021
1 parent 1639200 commit 97941ed
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
1 change: 1 addition & 0 deletions docker/daml-local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ services:
--createaws true \
--region AWS_REGION \
--ledger $$LEDGER_NAME \
--txlogstore \"jdbc:postgresql://postgres/qldb_txblobs?user=postgres\" \
--participant participant-id=test-participant,port=9000 \
`ls /opt/daml-on-qldb/dar/*.dar`\""
volumes:
Expand Down
1 change: 0 additions & 1 deletion docker/daml-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ services:
--createaws true \
--region $$AWS_REGION \
--ledger $$LEDGER_NAME \
--statestore \"jdbc:postgresql://postgres/qldb_damlstate?user=postgres\" \
--txlogstore \"jdbc:postgresql://postgres/qldb_txblobs?user=postgres\" \
--participant participant-id=test-participant,port=9000,address=0.0.0.0 \
`ls /opt/daml-on-qldb/dar/*.dar`\""
Expand Down
4 changes: 0 additions & 4 deletions docker/sql/create_databases.sql
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
create database qldb_damlstate;
grant all privileges on database qldb_damlstate to postgres;
create database qldb_txblobs;
grant all privileges on database qldb_txblobs to postgres;
create database pg_damlstate;
grant all privileges on database pg_damlstate to postgres;
create database pg_txblobs;
grant all privileges on database pg_txblobs to postgres;

0 comments on commit 97941ed

Please sign in to comment.