├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── bcoin.example.conf ├── docker-compose.wallet.yml ├── docker-compose.yml ├── wallet-proxy.conf └── wallet.example.conf /.gitignore: -------------------------------------------------------------------------------- 1 | secrets/ 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoin-org/bcoin-docker/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoin-org/bcoin-docker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoin-org/bcoin-docker/HEAD/README.md -------------------------------------------------------------------------------- /bcoin.example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoin-org/bcoin-docker/HEAD/bcoin.example.conf -------------------------------------------------------------------------------- /docker-compose.wallet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoin-org/bcoin-docker/HEAD/docker-compose.wallet.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoin-org/bcoin-docker/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /wallet-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoin-org/bcoin-docker/HEAD/wallet-proxy.conf -------------------------------------------------------------------------------- /wallet.example.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoin-org/bcoin-docker/HEAD/wallet.example.conf --------------------------------------------------------------------------------