├── .dockerignore ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── Dockerfile.fuzz ├── Dockerfile.locally-build-deb ├── LICENSE.txt ├── README.md ├── confd ├── conf.d │ ├── hekad.toml.toml │ ├── psql.sh.toml │ └── stellar-core.cfg.toml └── templates │ ├── hekad.toml.tmpl │ ├── psql.sh.tmpl │ └── stellar-core.cfg.tmpl ├── examples ├── compat_complete.env ├── compat_minimal.env ├── local.env └── single.env ├── fuzz ├── install ├── start └── trace ├── heka └── stellar_core_metrics_filter.lua ├── install ├── start └── utils ├── core_file_processor.py └── core_file_processor_test.py /.dockerignore: -------------------------------------------------------------------------------- 1 | .git 2 | .gitignore 3 | README.md 4 | /examples 5 | 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.fuzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/Dockerfile.fuzz -------------------------------------------------------------------------------- /Dockerfile.locally-build-deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/Dockerfile.locally-build-deb -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/README.md -------------------------------------------------------------------------------- /confd/conf.d/hekad.toml.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/confd/conf.d/hekad.toml.toml -------------------------------------------------------------------------------- /confd/conf.d/psql.sh.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/confd/conf.d/psql.sh.toml -------------------------------------------------------------------------------- /confd/conf.d/stellar-core.cfg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/confd/conf.d/stellar-core.cfg.toml -------------------------------------------------------------------------------- /confd/templates/hekad.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/confd/templates/hekad.toml.tmpl -------------------------------------------------------------------------------- /confd/templates/psql.sh.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/confd/templates/psql.sh.tmpl -------------------------------------------------------------------------------- /confd/templates/stellar-core.cfg.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/confd/templates/stellar-core.cfg.tmpl -------------------------------------------------------------------------------- /examples/compat_complete.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/examples/compat_complete.env -------------------------------------------------------------------------------- /examples/compat_minimal.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/examples/compat_minimal.env -------------------------------------------------------------------------------- /examples/local.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/examples/local.env -------------------------------------------------------------------------------- /examples/single.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/examples/single.env -------------------------------------------------------------------------------- /fuzz/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/fuzz/install -------------------------------------------------------------------------------- /fuzz/start: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | set -e 4 | 5 | cd stellar-core 6 | make fuzz 7 | -------------------------------------------------------------------------------- /fuzz/trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/fuzz/trace -------------------------------------------------------------------------------- /heka/stellar_core_metrics_filter.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/heka/stellar_core_metrics_filter.lua -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/install -------------------------------------------------------------------------------- /start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/start -------------------------------------------------------------------------------- /utils/core_file_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/utils/core_file_processor.py -------------------------------------------------------------------------------- /utils/core_file_processor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/docker-stellar-core/HEAD/utils/core_file_processor_test.py --------------------------------------------------------------------------------