Skip to content
Snippets Groups Projects
Select Git revision
  • no-bootnodes
  • master default protected
  • elois-substrate-v0.9.23
  • elois-technical-commitee
  • elois-opti-cert
  • release/runtime-200
  • elois-fix-85
  • elois-rework-certs
  • elois-remove-renewable-period
  • poc-oneshot-accounts
  • hugo-cucumber-identity
  • elois-ci-binary-release
  • distance
  • release/runtime-100
  • ud-time-64
  • elois-duniter-storage
  • elois-compose-metrics
  • elois-smoldot
  • ts-types
  • runtime-201
  • runtime-200
  • runtime-105
  • runtime-104
  • runtime-103
  • runtime-102
  • runtime-101
  • v0.1.0
  • runtime-100
28 results

launch-a-live-network.md

Blame
  • Forked from nodes / rust / Duniter v2S
    Source project has a limited visibility.
    build-docker-image-hasura.sh 532 B
    #!/bin/bash
    
    set -e
    
    # Get the version number from package.json
    version_tag=$(grep -oP '"version": "\K[^"]+' package.json)
    
    latest_tag="latest"
    
    docker buildx build -f Dockerfile.Hasura -t duniter-squid-hasura .
    
    # Tag specific version
    docker image tag duniter-squid-hasura:latest h30x/duniter-squid-hasura:$version_tag
    docker image push h30x/duniter-squid-hasura:$version_tag
    
    # Tag "latest"
    docker image tag duniter-squid-hasura:latest h30x/duniter-squid-hasura:$latest_tag
    docker image push h30x/duniter-squid-hasura:$latest_tag