Fix compose change

This commit is contained in:
Aaron Dewes 2021-11-26 19:57:10 +00:00
parent 482a6af6b4
commit e0fb260003

2
scripts/configure vendored
View File

@ -147,7 +147,7 @@ if os.path.isfile('../use-core-upstream') or os.path.isfile('./use-core-upstream
docker_compose_yml = yaml.safe_load(file) docker_compose_yml = yaml.safe_load(file)
docker_compose_yml['services']['bitcoin']['image'] = BITCOIN_CORE_IMAGE docker_compose_yml['services']['bitcoin']['image'] = BITCOIN_CORE_IMAGE
with open(os.path.join(CITADEL_ROOT, "docker-compose.yml"), 'w') as file: with open(os.path.join(CITADEL_ROOT, "docker-compose.yml"), 'w') as file:
yaml.dump(docker_compose_yml, file) yaml.dump(docker_compose_yml, file, sort_keys=False)
########################################################## ##########################################################
############ Generate configuration variables ############ ############ Generate configuration variables ############