Skip to content

Commit

Permalink
Add gravity bridge v1.0.8 (#89)
Browse files Browse the repository at this point in the history
* Add optional binary install method

* Add Gravity Bridge v1.0.8

* Remove duplicate ARG

* Use main chain-registry

* Match chain-registry naming
  • Loading branch information
tombeynon authored Dec 16, 2021
1 parent 8eb8c1f commit 23ef834
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ jobs:
version: v3.1.1-croeseid
- project: emoney
version: v1.1.3
- project: gravitybridge
version: v1.0.8
- project: impacthub
version: v1.6.0
- project: irisnet
Expand Down
1 change: 0 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ RUN apt-get update && \
#
# Default build from source method
#

FROM build_base AS build_source

ARG VERSION=v0.12.1
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ tagged with the form `$COSMOS_OMNIBUS_VERSION-$PROJECT-$PROJECT_VERSION`.
|[cosmoshub](https://github.com/cosmos/gaia)|`v5.0.8`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.16-cosmoshub-v5.0.8`|[Example](./cosmoshub)|
|[cryptoorgchain](https://github.com/crypto-org-chain/chain-main)|`v3.1.1-croeseid`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.16-cryptoorgchain-v3.1.1-croeseid`|[Example](./cryptoorgchain)|
|[emoney](https://github.com/e-money/em-ledger)|`v1.1.3`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.16-emoney-v1.1.3`|[Example](./emoney)|
|[gravitybridge](https://github.com/Gravity-Bridge/Gravity-Bridge)|`v1.0.8`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.16-gravitybridge-v1.0.8`|[Example](./gravity-bridge)|
|[impacthub](https://github.com/ixofoundation/ixo-blockchain)|`v1.6.0`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.16-impacthub-v1.6.0`|[Example](./impacthub)|
|[irisnet](https://github.com/irisnet/irishub)|`v1.0.1`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.16-irisnet-v1.0.1`|[Example](./irisnet)|
|[juno](https://github.com/CosmosContracts/Juno)|`v1.0.0`|`ghcr.io/ovrclk/cosmos-omnibus:v0.0.16-juno-v1.0.0`|[Example](./juno)|
Expand Down
46 changes: 46 additions & 0 deletions gravitybridge/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
version: "2.0"

services:
node:
image: ghcr.io/ovrclk/cosmos-omnibus:v0.0.16-gravitybridge-v1.0.8
env:
- MONIKER=my-moniker-1
- CHAIN_JSON=https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/chain.json
- VALIDATE_GENESIS=0
expose:
- port: 26657
as: 80
to:
- global: true
- port: 26656
to:
- global: true

profiles:
compute:
node:
resources:
cpu:
units: 2
memory:
size: 2Gi
storage:
size: 120Gi
placement:
dcloud:
attributes:
host: akash
signedBy:
anyOf:
- akash1365yvmc4s7awdyj3n2sav7xfx76adc6dnmlx63
pricing:
node:
denom: uakt
amount: 100

deployment:
node:
dcloud:
profile: node
count: 1
20 changes: 20 additions & 0 deletions gravitybridge/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version: '3.4'

services:
node_1:
build:
context: ../
args:
PROJECT: gravitybridge
PROJECT_BIN: gravity
VERSION: v1.0.8
BUILD_IMAGE: binary
BINARY_URL: https://github.com/Gravity-Bridge/Gravity-Bridge/releases/download/v1.0.8/gravity-linux-amd64
environment:
- MONIKER=node_1
- CHAIN_JSON=https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/chain.json
- VALIDATE_GENESIS=0
env_file:
- ../.env
volumes:
- ./node-data:/root/.gravity

0 comments on commit 23ef834

Please sign in to comment.