Skip to content
Snippets Groups Projects
Select Git revision
  • ea60df7214ae5998d9b26d83c36e6cb57be0cef9
  • master default protected
  • patch-2
  • patch-1
  • issue_4
  • issue_780
  • gitlab_migration_1
  • dev
  • rml8
  • v1.3.2
  • v1.3.1
  • v1.3.0
  • v1.2.10
  • v1.2.9
  • v1.2.8
  • v1.2.7
  • v1.2.6
  • v1.2.5
  • v1.2.4
  • v1.2.3
  • v1.test.3
  • v1.test.2
  • v1.test.1
  • v1.2.2
  • v1.2.1
  • v1.2.0
  • v1.1.9
  • v1.1.8
  • v1.1.7
29 results

development_tutorial-03.md

Blame
  • Forked from clients / Cesium-grp / Cesium
    Source project has a limited visibility.
    gdev-mirror.docker-compose.yml 997 B
    version: "3.4"
    
    services:
      duniter-rpc:
        image: duniter/duniter-v2s:v0.1.0
        restart: unless-stopped
        ports:
          # telemetry
          - 127.0.0.1:9615:9615
          # rpc
          - 127.0.0.1:9933:9933
          # rpc-ws
          - 127.0.0.1:9944:9944
          # p2p
          - 30333:30333
        volumes:
          - ./node.key:/etc/duniter/node.key
          - duniter-rpc-data:/var/lib/duniter/
        environment:
          - DUNITER_CHAIN_NAME=gdev
        command:
          - "--execution"
          - "Wasm"
          - "--node-key-file"
          - "/var/lib/duniter/node.key"
          - "--public-addr"
          # SERVER_DOMAIN should be replaced by a domain name that point on your server
          #
          # The PEER_ID should be replaced by the output of this command:
          # docker run --rm -it --entrypoint duniter -v $PWD:/var/lib/duniter/  duniter/duniter-v2s:v0.1.0 key generate-node-key --file /var/lib/duniter/node.key
          - "/dns/SERVER_DOMAIN/tcp/30333/p2p/PEER_ID"
          - "--rpc-cors"
          - "all"
    
    volumes:
      duniter-rpc-data: