Skip to content
Snippets Groups Projects
Select Git revision
  • 31579e4bf6a7678b3bdbcd86e2d34bdca8e6a325
  • master default protected
  • feature/startup_node_selection
  • hugo/startup_node_selection
  • develop
  • feature/encrypted_comment
  • feature/cesium_plus_pod_2
  • feature/android_api_19
  • Vivakvo/cesium-patch-8
  • gitlab_migration_1
  • dev
  • rml8
  • v1.7.0-rc1
  • v1.6.12
  • v1.6.11
  • v1.6.10
  • v1.6.9
  • v1.6.8
  • v1.6.7
  • v1.6.6
  • v1.6.5
  • v1.6.4
  • v1.6.3
  • v1.6.2
  • v1.6.2-alpha
  • v1.6.1
  • v1.6.0
  • v1.5.12
  • v1.5.11
  • v1.5.10
  • v1.5.9
  • v1.5.8
32 results

config.js

Blame
  • Forked from clients / Cesium-grp / Cesium
    Source project has a limited visibility.
    docker-compose.yml 1.02 KiB
    # This is a minimal docker-compose.yml template for running a Duniter instance
    # For more detailed examples, look at docker/compose folder
    
    version: "3.5"
    
    services:
      duniter-v2s:
        container_name: duniter-v2s
        # choose the version of the image here
        image: duniter/duniter-v2s:latest
        ports:
          # telemetry
          - 9615:9615
          # rpc
          - 9944:9944
          # p2p
          - 30333:30333
        environment:
          DUNITER_NODE_NAME: "duniter_local"
          DUNITER_CHAIN_NAME: "gdev"
        volumes:
          - duniter-local-data:/var/lib/duniter
      distance-oracle:
        container_name: distance-oracle
        # choose the version of the image here
        image: duniter/duniter-v2s:latest
        entrypoint: docker-distance-entrypoint
        environment:
          ORACLE_RPC_URL: "ws://duniter-v2s:9944"
          ORACLE_RESULT_DIR: "/var/lib/duniter/chains/gdev/distance/"
          ORACLE_EXECUTION_INTERVAL: "1800"
          ORACLE_MAX_DEPTH: "5"
          ORACLE_LOG_LEVEL: "info"
        volumes:
          - duniter-local-data:/var/lib/duniter
    
    volumes:
      duniter-local-data: