Skip to content
Snippets Groups Projects
Select Git revision
  • c0f6867651b88b97e961331daf3eba90b7dca82b
  • master default protected
  • feature/osx-applesilicon
  • 1.6.5_fixed
  • bugfix/osx-bugfixes
  • bugfix/build-ionic
  • feature/no-member-login-browser
  • feature/macos-support
  • feature/ios-support
  • issue_4
  • issue_780
  • gitlab_migration_1
  • dev
  • rml8
  • v1.6.1
  • v1.6.0
  • v1.5.12
  • v1.5.11
  • v1.5.10
  • v1.5.9
  • v1.5.8
  • v1.5.7
  • v1.5.6
  • v1.5.5
  • v1.5.4
  • v1.5.3
  • v1.5.2
  • v1.5.1
  • v1.4.20
  • v1.4.19
  • v1.4.18
  • v1.4.17
  • v1.4.16
  • v1.4.15
34 results

config.js

Blame
  • Forked from clients / Cesium-grp / Cesium
    Source project has a limited visibility.
    • Benoit Lavenier's avatar
      31a83d4e
      - add new ubuntu platform - fix #400 · 31a83d4e
      Benoit Lavenier authored
      - Ubuntu build: keep large screen code, allow camera enable or not, ...
      - Blockchain (advanced) search: avoid row-header to be display twice during loading
      - Index: add 'apple-touch-icon' head for icon in web build
      31a83d4e
      History
      - add new ubuntu platform - fix #400
      Benoit Lavenier authored
      - Ubuntu build: keep large screen code, allow camera enable or not, ...
      - Blockchain (advanced) search: avoid row-header to be display twice during loading
      - Index: add 'apple-touch-icon' head for icon in web build
    gdem-local2.docker-compose.yml 1.39 KiB
    version: "3.5"
    
    services:
      duniter-1:
        container_name: duniter-1
        image: duniter/duniter-v2s:local
        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"
        environment:
          DUNITER_INSTANCE_NAME: "my_instance"
          DUNITER_CHAIN_NAME: "local"
          #DUNITER_DISABLE_PROMETHEUS: "false"
        command: ["--alice", "--node-key", "0000000000000000000000000000000000000000000000000000000000000001"]
        volumes:
          - data:/var/lib/lc-core
        networks:
          app_net:
            ipv4_address: 172.16.238.10
    
    
      duniter-2:
        container_name: duniter-2
        image: duniter/duniter-v2s:local
        ports:
          # telemetry
          - "127.0.0.1:9616:9615"
          # rpc
          - "127.0.0.1:9934:9933"
          # rpc-ws
          - "127.0.0.1:9945:9944"
          # p2p
          - "30334:30333"
        environment:
          DUNITER_INSTANCE_NAME: "my_instance"
          DUNITER_CHAIN_NAME: "local"
          #DUNITER_DISABLE_PROMETHEUS: "false"
        command: ["--bob", "--bootnodes", "/ip4/172.16.238.10/tcp/30333/p2p/12D3KooWEyoppNCUx8Yx66oV9fJnriXwCcXwDDUA2kj6vnc6iDEp"]
        volumes:
          - data2:/var/lib/lc-core
        networks:
          app_net:
            ipv4_address: 172.16.238.11
    
    volumes:
      data:
      data2:
    
    networks:
      app_net:
        driver: bridge
        ipam:
          driver: default
          config:
            - subnet: 172.16.238.0/24