-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(packages): add Kupo package (#189)
Signed-off-by: Ales Verbic <[email protected]>
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
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,48 @@ | ||
name: kupo | ||
version: 2.8.0 | ||
description: Kupo is fast, lightweight and configurable chain-index for the Cardano blockchain | ||
dependencies: | ||
- cardano-node >= 8.7.3 | ||
installSteps: | ||
- docker: | ||
containerName: kupo | ||
image: cardanosolutions/kupo:v2.8.0 | ||
command: | ||
- kupo | ||
- --node-socket | ||
- /ipc/node.socket | ||
- --host | ||
- 0.0.0.0 | ||
- --port | ||
- '1442' | ||
- --log-level | ||
- Info | ||
- --node-config | ||
- /config/config.json | ||
- --match | ||
- '*' | ||
- --defer-db-indexes | ||
- --since | ||
- origin | ||
- --workdir | ||
- '/db' | ||
binds: | ||
- '{{ .Paths.ContextDir }}/node-ipc:/ipc' | ||
- '{{ .Paths.DataDir }}/db:/db' | ||
- '{{ .Paths.ContextDir }}/config/{{ .Context.Network }}:/config' | ||
ports: | ||
- "1442" | ||
pullOnly: false | ||
outputs: | ||
- name: url | ||
description: Kupo API URL | ||
value: 'http://localhost:{{ index (index .Ports "kupo") "1442" }}' | ||
- name: health_url | ||
description: Kupo health URL | ||
value: 'http://localhost:{{ index (index .Ports "kupo") "1442" }}/health' | ||
tags: | ||
- docker | ||
- linux | ||
- darwin | ||
- amd64 | ||
- arm64 |