Skip to content
Snippets Groups Projects
Select Git revision
  • 05146862c85e1539fbf96e51bc5c4a11e0f86736
  • main default protected
  • ts
  • raw-crypt
  • v3.5.8 protected
  • v3.5.7 protected
  • v3.5.6 protected
  • v3.5.5 protected
  • v3.5.4 protected
  • v3.5.3 protected
  • v3.5.2 protected
  • v3.5.1 protected
  • v3.5.0 protected
  • v3.4.2 protected
  • v3.4.1 protected
  • v3.4.0 protected
  • v3.3.3 protected
  • v3.3.2 protected
  • v3.3.1 protected
  • v3.3.0 protected
  • v3.2.0 protected
  • v3.1.0 protected
  • v3.0.2 protected
  • v3.0.1 protected
24 results

minify.mjs

Blame
  • 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: