Skip to content

Commit

Permalink
feat: add Ogmios package (#82)
Browse files Browse the repository at this point in the history
Signed-off-by: Ales Verbic <[email protected]>
  • Loading branch information
verbotenj authored Mar 6, 2024
1 parent 775b0d3 commit db2d08e
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions pkgmgr/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,34 @@ docker run --rm -ti ghcr.io/blinklabs-io/mithril-client:0.7.0-1 $@
},
},
},
{
Name: "ogmios",
Version: "v6.1.0",
Description: "Ogmios, a WebSocket & HTTP server for Cardano, providing a bridge between Cardano nodes and clients.",
Tags: []string{"docker", "linux", "darwin", "amd64", "arm64"},
InstallSteps: []PackageInstallStep{
{
Docker: &PackageInstallStepDocker{
ContainerName: "ogmios",
Image: "cardanosolutions/ogmios:v6.1.0",
Binds: []string{
"{{ .Paths.CacheDir }}/ipc:/ipc",
},
Ports: []string{
"1337",
},
Command: []string{
"ogmios",
"--log-level", "info",
"--host", "0.0.0.0",
"--port", "1337",
"--node-socket", "/ipc/node.socket",
"--node-config", "/config/mainnet/cardano-node/config.json",
},
},
},
},
},

// Test packages
{
Expand Down

0 comments on commit db2d08e

Please sign in to comment.