Search code examples
blockchainhyperledgerhyperledger-sawtooth

I can't find sawtooth-client-defalut while running sawtooth-default.yaml


can any one please suggest what is going wrong with me????????

Image of terminal


Solution

  • i have fixed this problem by editing my Yaml file . adding this lines

    client:
    image: hyperledger/sawtooth-all:0.8
    container_name: sawtooth-client-default
    expose:
      - 8080
      - 4004
    depends_on:
      - rest-api
    entrypoint: "bash -c \"\
        sawtooth keygen && \
        tail -f /dev/null \
        \""
    

    so the client container starts and my host is running well now.