Sha256: 8d9f084346b6a4dd631c3c7cd1d684df9e2bf9ee88edc4efb3afc0f9807e7229

Contents?: true

Size: 793 Bytes

Versions: 4

Compression:

Stored size: 793 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/shelley_testnet-config.json --topology /config/shelley_testnet-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/shelley_testnet-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

4 entries across 4 versions & 1 rubygems

Version Path
cardano_wallet-0.1.7 docker-compose-shelley.yml
cardano_wallet-0.1.6 docker-compose-shelley.yml
cardano_wallet-0.1.5 docker-compose-shelley.yml
cardano_wallet-0.1.4 docker-compose-shelley.yml