mirror of
https://github.com/aljazceru/cyphernode.git
synced 2025-12-26 17:15:08 +01:00
62 lines
1.4 KiB
Bash
Executable File
62 lines
1.4 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
TRACING=1
|
|
|
|
trace()
|
|
{
|
|
if [ -n "${TRACING}" ]; then
|
|
echo "[$(date +%Y-%m-%dT%H:%M:%S%z)] ${1}" > /dev/stderr
|
|
fi
|
|
}
|
|
|
|
trace_rc()
|
|
{
|
|
if [ -n "${TRACING}" ]; then
|
|
echo "[$(date +%Y-%m-%dT%H:%M:%S%z)] Last return code: ${1}" > /dev/stderr
|
|
fi
|
|
}
|
|
|
|
|
|
build_docker_image() {
|
|
|
|
local dockerfile="Dockerfile"
|
|
|
|
if [[ ""$3 != "" ]]; then
|
|
dockerfile=$3
|
|
fi
|
|
|
|
trace "building docker image: $2:latest"
|
|
docker build -q $1 -f $1/$dockerfile -t $2:latest > /dev/null
|
|
|
|
}
|
|
|
|
build_docker_images() {
|
|
trace "Updating SatoshiPortal repos"
|
|
git submodule update --recursive --remote
|
|
|
|
local archpath=$(uname -m)
|
|
|
|
# compat mode for SatoshiPortal repo
|
|
# TODO: add more mappings?
|
|
if [[ $archpath == 'armv7l' ]]; then
|
|
archpath="rpi"
|
|
fi
|
|
|
|
trace "Creating cyphernodeconf image"
|
|
build_docker_image install/ cyphernodeconf
|
|
|
|
trace "Creating SatoshiPortal images"
|
|
build_docker_image install/SatoshiPortal/dockers/$archpath/bitcoin-core cyphernode/bitcoin
|
|
build_docker_image install/SatoshiPortal/dockers/$archpath/LN/c-lightning cyphernode/clightning $dockerfile
|
|
build_docker_image install/SatoshiPortal/dockers/$archpath/ots/otsclient cyphernode/otsclient
|
|
|
|
trace "Creating cyphernode images"
|
|
build_docker_image proxy_docker/ cyphernode/proxy
|
|
build_docker_image cron_docker/ cyphernode/proxycron
|
|
build_docker_image pycoin_docker/ cyphernode/pycoin
|
|
|
|
}
|
|
|
|
build_docker_images
|
|
|