├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── bin ├── btc_init └── btc_oneshot ├── bootstrap-host.sh ├── docker-entrypoint.sh ├── docs ├── build.md ├── config.md └── debug.md ├── init ├── docker-bitcoind.service └── upstart.init └── test ├── README.md ├── config.sh ├── run.sh └── tests ├── docker-build.sh ├── image-name.sh ├── rpcpassword ├── container.sh └── run.sh ├── run-bash-in-container.sh └── run-in-container.sh /.gitignore: -------------------------------------------------------------------------------- 1 | /official-images 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/README.md -------------------------------------------------------------------------------- /bin/btc_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/bin/btc_init -------------------------------------------------------------------------------- /bin/btc_oneshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/bin/btc_oneshot -------------------------------------------------------------------------------- /bootstrap-host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/bootstrap-host.sh -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /docs/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/docs/build.md -------------------------------------------------------------------------------- /docs/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/docs/config.md -------------------------------------------------------------------------------- /docs/debug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/docs/debug.md -------------------------------------------------------------------------------- /init/docker-bitcoind.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/init/docker-bitcoind.service -------------------------------------------------------------------------------- /init/upstart.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/init/upstart.init -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/test/README.md -------------------------------------------------------------------------------- /test/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/test/config.sh -------------------------------------------------------------------------------- /test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/test/run.sh -------------------------------------------------------------------------------- /test/tests/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/test/tests/docker-build.sh -------------------------------------------------------------------------------- /test/tests/image-name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/test/tests/image-name.sh -------------------------------------------------------------------------------- /test/tests/rpcpassword/container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/test/tests/rpcpassword/container.sh -------------------------------------------------------------------------------- /test/tests/rpcpassword/run.sh: -------------------------------------------------------------------------------- 1 | ../run-bash-in-container.sh -------------------------------------------------------------------------------- /test/tests/run-bash-in-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/test/tests/run-bash-in-container.sh -------------------------------------------------------------------------------- /test/tests/run-in-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemanna/docker-bitcoind/HEAD/test/tests/run-in-container.sh --------------------------------------------------------------------------------