Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .envrc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export APPEND_ARGS="--allow-private-ip --pool-limit 10 --trie-cache-size 0 --pro
# Validator Values:
if [ ! -f node.privatekey ]; then
# generate node key like this:
DOCKER_DEFAULT_PLATFORM=linux/amd64 docker run --rm -it docker.io/parity/subkey:latest generate-node-key | sed -n '2p' > midnight-node.privatekey
docker run --rm -it ghcr.io/blinklabs-io/subkey:9.0.0 generate-node-key | sed -n '2p' > midnight-node.privatekey
# Use the second line of output for NODE_KEY (that's what sed -n '2p' does)
fi
export NODE_KEY="$(cat ./midnight-node.privatekey)"
Expand All @@ -50,6 +50,6 @@ export NODE_KEY="$(cat ./midnight-node.privatekey)"
# Partner chains config:
#
export CARDANO_NETWORK=preview
export CARDANO_IMAGE="ghcr.io/intersectmbo/cardano-node:10.2.1"
export CARDANO_IMAGE="ghcr.io/blinklabs-io/cardano-node:10.2.1"
export CARDANO_DATA_DIR=./cardano-data
export CARDANO_CONFIG_DIR=./cardano-config/${CARDANO_NETWORK}
6 changes: 1 addition & 5 deletions compose-partner-chains.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ volumes:
services:
cardano-node:
image: ${CARDANO_IMAGE}
platform: linux/amd64
restart: unless-stopped
container_name: cardano-node
ports:
Expand All @@ -36,7 +35,6 @@ services:

postgres:
image: postgres:15.3
platform: linux/amd64
container_name: db-sync-postgres
environment:
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
Expand All @@ -53,8 +51,7 @@ services:
retries: 5

cardano-db-sync:
image: ghcr.io/intersectmbo/cardano-db-sync:13.6.0.4
platform: linux/amd64
image: ghcr.io/blinklabs-io/cardano-db-sync:13.6.0.4
container_name: cardano-db-sync
restart: unless-stopped
depends_on:
Expand All @@ -73,7 +70,6 @@ services:

cardano-ogmios:
image: cardanosolutions/ogmios:v6.11.0
platform: linux/amd64
container_name: cardano-ogmios
restart: unless-stopped
environment:
Expand Down