Skip to content

Commit

Permalink
feat: cardano-node 9.1.0 (#17)
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Gianelloni <[email protected]>
  • Loading branch information
wolf31o2 authored Jul 25, 2024
1 parent 113c39b commit 38b1250
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions packages/cardano-node/cardano-node-9.1.0.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: cardano-node
version: 9.1.0
description: Cardano node software by Input Output Global
dependencies:
- cardano-config = 20240725
- cardano-cli >= 9.2.1.0
- mithril-client >= 0.9.6
installSteps:
- docker:
containerName: cardano-node
image: ghcr.io/blinklabs-io/cardano-node:9.1.0
env:
CARDANO_NODE_SOCKET_PATH: /ipc/node.socket
NETWORK: '{{ .Context.Network }}'
RESTORE_NETWORK: 'false'
binds:
- '{{ .Paths.ContextDir }}/config:/opt/cardano/config'
- '{{ .Paths.ContextDir }}/node-ipc:/ipc'
- '{{ .Paths.DataDir }}/data:/data'
ports:
- "3001"
- "12788"
- "12798"
pullOnly: false
- file:
binary: true
filename: nview
source: files/nview.sh.gotmpl
- file:
binary: true
filename: txtop
source: files/txtop.sh.gotmpl
outputs:
- name: port
description: Ouroboros Node-to-Node service
value: '{{ index (index .Ports "cardano-node") "3001" }}'
- name: socket_path
description: Path to the Cardano Node UNIX socket
value: '{{ .Paths.ContextDir }}/node-ipc/node.socket'
preInstallScript: |
set -e
test -e {{ .Paths.DataDir }}/data/db/protocolMagicId && exit 0
mithril-client cardano-db download --download-dir {{ .Paths.DataDir }}/data latest
tags:
- docker
- linux
- darwin
- amd64
- arm64

0 comments on commit 38b1250

Please sign in to comment.