Sha256: 7342fc375dab9b87a8067bef7407899ddc98ccf86a446d1536b617d1071a5765

Contents?: true

Size: 757 Bytes

Versions: 9

Compression:

Stored size: 757 Bytes

Contents

version: "3.5"

services:
  cardano-node:
    image: inputoutput/cardano-node:${NODE}
    volumes:
      - ~/node-db-nightly-docker:/data
      - node-ipc:/ipc
      - ${NODE_CONFIG_PATH}:/config
    command: run --socket-path /ipc/node.socket --config /config/config.json --topology /config/topology.json --database-path /data
    restart: on-failure

  cardano-wallet:
    image: inputoutput/cardano-wallet:${WALLET}
    volumes:
      - wallet-shelley-db:/wallet-db
      - node-ipc:/ipc
      - ${NODE_CONFIG_PATH}:/config
    ports:
      - 8090:8090
    command: serve --testnet /config/byron-genesis.json --node-socket /ipc/node.socket --database /wallet-db --listen-address 0.0.0.0
    restart: on-failure

volumes:
  wallet-shelley-db:
  node-ipc:

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
cardano_wallet-0.4.2 docker-compose.yml
cardano_wallet-0.4.1 docker-compose.yml
cardano_wallet-0.4.0 docker-compose.yml
cardano_wallet-0.3.28 docker-compose.yml
cardano_wallet-0.3.27 docker-compose.yml
cardano_wallet-0.3.26 docker-compose.yml
cardano_wallet-0.3.25 docker-compose.yml
cardano_wallet-0.3.24 docker-compose.yml
cardano_wallet-0.3.23 docker-compose.yml