Sha256: ed5690d7d3c83fe0cc169d9807672698906225ab2a58ac8e76e4ff7c1fb2b1ca

Contents?: true

Size: 784 Bytes

Versions: 12

Compression:

Stored size: 784 Bytes

Contents

version: "3.5"

services:
  cardano-node:
    image: inputoutput/cardano-node:${NODE}
    volumes:
      - node-db:/data
      - node-ipc:/ipc
      - ${NODE_CONFIG_PATH}:/config
    command: run --socket-path /ipc/node.socket --config /config/${NETWORK}-config.json --topology /config/${NETWORK}-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/${NETWORK}-byron-genesis.json --node-socket /ipc/node.socket --database /wallet-db --listen-address 0.0.0.0
    restart: on-failure

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

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
cardano_wallet-0.2.9 docker-compose-shelley.yml
cardano_wallet-0.2.8 docker-compose-shelley.yml
cardano_wallet-0.2.7 docker-compose-shelley.yml
cardano_wallet-0.2.6 docker-compose-shelley.yml
cardano_wallet-0.2.5 docker-compose-shelley.yml
cardano_wallet-0.2.4 docker-compose-shelley.yml
cardano_wallet-0.2.3 docker-compose-shelley.yml
cardano_wallet-0.2.2 docker-compose-shelley.yml
cardano_wallet-0.2.1 docker-compose-shelley.yml
cardano_wallet-0.2.0 docker-compose-shelley.yml
cardano_wallet-0.1.9 docker-compose-shelley.yml
cardano_wallet-0.1.8 docker-compose-shelley.yml