Skip to content
Snippets Groups Projects
Select Git revision
  • 40a2f13bf024fd99e1baad280d99bae95fe7bfaa
  • main default protected
  • 429_rm_features
  • release/0.12 protected
  • pages protected
  • release/0.11 protected
  • 175_gva_migration
  • i18n
  • v0.12.0 protected
  • v0.11.2 protected
  • v0.11.1 protected
  • v0.11.0 protected
  • v0.11.0rc0 protected
  • v0.10.0 protected
  • v0.10.0rc1 protected
  • v0.10.0rc0 protected
  • v0.3.0 protected
  • v0.8.1 protected
  • v0.9.0 protected
  • v0.9.0rc protected
  • v0.8.0 protected
  • v0.7.6 protected
  • v0.7.5 protected
  • v0.7.4 protected
  • v0.7.3 protected
  • v0.7.2 protected
  • v0.7.1 protected
  • v0.7.0 protected
28 results

silkaj.py

Blame
  • docker-compose.yml 616 B
    # 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
          - 9933:9933
          # rpc-ws
          - 9944:9944
          # p2p
          - 30333:30333
        environment:
          DUNITER_NODE_NAME: "duniter_local"
          DUNITER_CHAIN_NAME: "gdev"
        volumes:
          - duniter-local-data:/var/lib/duniter
    
    volumes:
      duniter-local-data: