-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Oura and other dependencies, improve configs (#156)
* Update oura to 1.8.3, pallas to 0.18.2, dcspark core to recent version with epoch calculation fixes, other dependencies and configs * Fix deny * Better ports configuration
- Loading branch information
Showing
25 changed files
with
763 additions
and
667 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*:5432:carp_mainnet:carp:1234 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*:5432:carp_preprod:carp:1234 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*:5432:carp_preview:carp:1234 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
source: | ||
type: cardano_net | ||
relay: | ||
- 172.20.0.4 | ||
- 3001 | ||
# - relays-new.cardano-mainnet.iohk.io | ||
# - 3001 | ||
# - preview-node.world.dev.cardano.org | ||
# - 30002 | ||
# - preprod-node.world.dev.cardano.org | ||
# - 30000 | ||
|
||
sink: | ||
type: cardano | ||
db: | ||
type: postgres | ||
database_url: postgresql://carp:1234@postgres:5432/carp_preprod | ||
network: preprod # preview / mainnet / testnet | ||
|
||
start_block: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
source: | ||
type: cardano_net | ||
relay: | ||
- 172.20.0.4 | ||
- 3001 | ||
# - relays-new.cardano-mainnet.iohk.io | ||
# - 3001 | ||
# - preview-node.world.dev.cardano.org | ||
# - 30002 | ||
# - preprod-node.world.dev.cardano.org | ||
# - 30000 | ||
|
||
sink: | ||
type: cardano | ||
db: | ||
type: postgres | ||
database_url: postgresql://carp:1234@postgres:5432/carp_preview | ||
network: preview # mainnet / preprod / testnet | ||
|
||
start_block: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# network can be mainnet/preview/preprod/testnet | ||
# this parameter is utilized by migration service, cardano-node, backuper | ||
NETWORK=preprod | ||
|
||
CONFIG_FILE=oura_docker.preprod.yml | ||
|
||
CARP_VERSION=2.2.3 | ||
|
||
# these credentials are utilized by postgres, carp and carp_web services | ||
POSTGRES_HOST=postgres | ||
POSTGRES_PORT=5432 | ||
POSTGRES_DB=carp_preprod | ||
PGUSER=carp | ||
PGPASSWORD=1234 | ||
PGPASSFILE="$(realpath secrets/.pgpass)" | ||
|
||
# note: PGPASSWORD isn't required to run carp | ||
# since it will be parsed from the PGPASSFILE instead | ||
# as this command will gracefully fallback to PGPASSFILE if no password is specified | ||
# However, some dev tools like pgtyped & zapatos don't support .pgpass files | ||
DATABASE_URL=postgresql://${PGUSER}:${PGPASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB} | ||
# Needed for PgTyped | ||
PGURI=$DATABASE_URL | ||
|
||
CARDANO_NODE_VERSION=8.1.2 | ||
CARDANO_NODE_EXPOSED_PORT=3001 | ||
|
||
POSTGRES_VERSION=13.6 | ||
POSTGRES_EXPOSED_PORT=5432 | ||
|
||
CARP_WEB_EXPOSED_PORT=3000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# network can be mainnet/preview/preprod/testnet | ||
# this parameter is utilized by migration service, cardano-node, backuper | ||
NETWORK=preview | ||
|
||
CONFIG_FILE=oura_docker.preview.yml | ||
|
||
CARP_VERSION=2.2.3 | ||
|
||
# these credentials are utilized by postgres, carp and carp_web services | ||
POSTGRES_HOST=postgres | ||
POSTGRES_PORT=5432 | ||
POSTGRES_DB=carp_preview | ||
PGUSER=carp | ||
PGPASSWORD=1234 | ||
PGPASSFILE="$(realpath secrets/.pgpass)" | ||
|
||
# note: PGPASSWORD isn't required to run carp | ||
# since it will be parsed from the PGPASSFILE instead | ||
# as this command will gracefully fallback to PGPASSFILE if no password is specified | ||
# However, some dev tools like pgtyped & zapatos don't support .pgpass files | ||
DATABASE_URL=postgresql://${PGUSER}:${PGPASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB} | ||
# Needed for PgTyped | ||
PGURI=$DATABASE_URL | ||
|
||
CARDANO_NODE_VERSION=8.1.2 | ||
CARDANO_NODE_EXPOSED_PORT=3001 | ||
|
||
POSTGRES_VERSION=13.6 | ||
POSTGRES_EXPOSED_PORT=5432 | ||
|
||
CARP_WEB_EXPOSED_PORT=3000 |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
source: | ||
type: oura | ||
socket: "/app/node-ipc/node.socket" # or url | ||
bearer: Unix # or Tcp | ||
|
||
sink: | ||
type: cardano | ||
db: | ||
type: postgres | ||
database_url: postgresql://carp:1234@postgres:5432/carp_preprod | ||
network: preprod # preview / mainnet / testnet | ||
|
||
start_block: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
source: | ||
type: oura | ||
socket: "/app/node-ipc/node.socket" # or url | ||
bearer: Unix # or Tcp | ||
|
||
sink: | ||
type: cardano | ||
db: | ||
type: postgres | ||
database_url: postgresql://carp:1234@postgres:5432/carp_preview | ||
network: preview # mainnet / preprod / testnet | ||
|
||
start_block: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* | ||
!.gitignore | ||
!tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* | ||
!.gitignore | ||
!tmp |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters