File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed
packages/cardano-node-api Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : cardano-node-api
2
+ version : 0.2.0
3
+ description : Multi-protocol API for interfacing with a local Cardano node
4
+ dependencies :
5
+ - cardano-config >= 20240515
6
+ - cardano-node >= 8.7.3
7
+ installSteps :
8
+ - docker :
9
+ containerName : cardano-node-api
10
+ image : ghcr.io/blinklabs-io/cardano-node-api:0.2.0
11
+ env :
12
+ CARDANO_NETWORK : ' {{ .Context.Network }}'
13
+ CARDANO_NODE_SOCKET_PATH : /ipc/node.socket
14
+ binds :
15
+ - ' {{ .Paths.ContextDir }}/node-ipc:/ipc'
16
+ - ' {{ .Paths.ContextDir }}/config/{{ .Context.Network }}:/opt/cardano/config'
17
+ ports :
18
+ - " 8080"
19
+ - " 9090"
20
+ pullOnly : false
21
+ outputs :
22
+ - name : grpc
23
+ description : Cardano Node API gRPC service
24
+ value : ' http://localhost:{{ index (index .Ports "cardano-node-api") "8080" }}'
25
+ - name : rest
26
+ description : Cardano Node API REST service
27
+ value : ' localhost:{{ index (index .Ports "cardano-node-api") "9090" }}'
28
+ tags :
29
+ - docker
30
+ - linux
31
+ - darwin
32
+ - amd64
33
+ - arm64
You can’t perform that action at this time.
0 commit comments