Configure the host interface which will be exposed to the container.
$ sudo cp /lib/systemd/network/80-container-ve.network /etc/systemd/network/80-container-<MY_CONTAINER>.network
Configure the host interface which will be exposed to the container.
$ sudo cp /lib/systemd/network/80-container-ve.network /etc/systemd/network/80-container-<MY_CONTAINER>.network
#!/bin/bash | |
# This script assumes that Polkadot is cloned in the relative path `polkadot/` | |
# and the file `run_kusama.sh` (which actually executes the program) is present. | |
# | |
# Example usage: `$ ./update_kusama.sh v0.7.15` | |
print_error () { | |
echo -e "\e[41m[!!]\e[0m Please specify a valid git tag" | |
echo "Example command:" |