2020-02-26 08:11:23 -08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
# This script demonstrates how to setup a nix-bitcoin node in a NixOS container.
|
|
|
|
# Running this script leaves no traces on your host system.
|
|
|
|
|
|
|
|
# This demo is a template for your own experiments.
|
2021-02-01 13:53:06 -08:00
|
|
|
# Run with option `--interactive` or `-i` to start a shell for interacting with
|
|
|
|
# the node.
|
2020-02-26 08:11:23 -08:00
|
|
|
|
|
|
|
if [[ ! -v IN_NIX_SHELL ]]; then
|
|
|
|
echo "Running script in nix shell env..."
|
2020-10-11 11:02:24 -07:00
|
|
|
cd "${BASH_SOURCE[0]%/*}"
|
2020-10-18 04:41:55 -07:00
|
|
|
exec nix-shell --run "./${BASH_SOURCE[0]##*/} $*"
|
2020-02-26 08:11:23 -08:00
|
|
|
fi
|
|
|
|
|
2020-10-18 04:41:57 -07:00
|
|
|
if [[ $(sysctl -n net.ipv4.ip_forward || sudo sysctl -n net.ipv4.ip_forward) != 1 ]]; then
|
|
|
|
echo "Error: IP forwarding (net.ipv4.ip_forward) is not enabled."
|
|
|
|
echo "Needed for container WAN access."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-10-18 04:41:56 -07:00
|
|
|
if [[ $EUID != 0 ]]; then
|
|
|
|
# NixOS containers require root permissions
|
|
|
|
exec sudo "PATH=$PATH" "NIX_PATH=$NIX_PATH" "IN_NIX_SHELL=$IN_NIX_SHELL" "${BASH_SOURCE[0]}" "$@"
|
|
|
|
fi
|
|
|
|
|
2020-10-18 04:41:57 -07:00
|
|
|
interactive=
|
|
|
|
minimalConfig=
|
|
|
|
for arg in "$@"; do
|
|
|
|
case $arg in
|
|
|
|
-i|--interactive)
|
|
|
|
interactive=1
|
|
|
|
;;
|
|
|
|
--minimal-config)
|
|
|
|
minimalConfig=1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2020-10-11 11:02:25 -07:00
|
|
|
# These commands can also be executed interactively in a shell session
|
|
|
|
demoCmds='
|
2020-02-26 08:11:23 -08:00
|
|
|
echo
|
|
|
|
echo "Bitcoind service:"
|
|
|
|
c systemctl status bitcoind
|
|
|
|
echo
|
|
|
|
echo "Bitcoind network:"
|
|
|
|
c bitcoin-cli getnetworkinfo
|
|
|
|
echo
|
|
|
|
echo "lightning-cli state:"
|
|
|
|
c lightning-cli getinfo
|
|
|
|
echo
|
|
|
|
echo "Bitcoind data dir:"
|
|
|
|
sudo ls -al /var/lib/containers/demo-node/var/lib/bitcoind
|
2020-10-11 11:02:25 -07:00
|
|
|
'
|
2020-10-18 04:41:57 -07:00
|
|
|
nodeInfoCmd='
|
|
|
|
echo
|
|
|
|
echo "Node info:"
|
|
|
|
c nodeinfo
|
|
|
|
'
|
2020-10-11 11:02:25 -07:00
|
|
|
|
2020-10-18 04:41:57 -07:00
|
|
|
if [[ $minimalConfig ]]; then
|
|
|
|
configuration=minimal-configuration.nix
|
|
|
|
else
|
|
|
|
configuration=configuration.nix
|
|
|
|
demoCmds="${demoCmds}${nodeInfoCmd}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $interactive ]]; then
|
2021-02-05 06:39:04 -08:00
|
|
|
runCmd=()
|
2020-10-18 04:41:57 -07:00
|
|
|
else
|
|
|
|
runCmd=(--run bash -c "$demoCmds")
|
|
|
|
fi
|
2020-02-26 08:11:23 -08:00
|
|
|
|
2020-10-11 11:02:25 -07:00
|
|
|
# Build container.
|
|
|
|
# Learn more: https://github.com/erikarvstedt/extra-container
|
|
|
|
#
|
2020-10-18 04:41:57 -07:00
|
|
|
read -d '' src <<EOF || true
|
2020-10-11 11:02:25 -07:00
|
|
|
{ pkgs, lib, ... }: {
|
|
|
|
containers.demo-node = {
|
|
|
|
extra.addressPrefix = "10.250.0";
|
|
|
|
extra.enableWAN = true;
|
|
|
|
config = { pkgs, config, lib, ... }: {
|
|
|
|
imports = [
|
2021-03-08 06:11:14 -08:00
|
|
|
<${configuration}>
|
2020-10-11 11:02:25 -07:00
|
|
|
];
|
2021-03-10 05:08:34 -08:00
|
|
|
nix-bitcoin.generateSecrets = true;
|
2020-10-11 11:02:25 -07:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
EOF
|
2020-10-18 04:41:56 -07:00
|
|
|
extra-container shell -E "$src" "${runCmd[@]}"
|
2020-04-15 09:54:02 -07:00
|
|
|
|
2020-10-11 11:02:25 -07:00
|
|
|
# The container is automatically deleted at exit
|