Requirement
- USB flash drive - this is where the container filesystem will be persisted
Set-up docker bridge network
/interface bridge add name=docker
Set-up veth
to be used by container
Requirement
Set-up docker bridge network
/interface bridge add name=docker
Set-up veth
to be used by container
#!/bin/bash | |
# Adapted from https://forum.netgate.com/topic/139561 | |
set -o pipefail | |
if [[ $# -lt 1 ]]; then | |
echo "Usage: $(basename $0) <encrypted-config>" | |
exit 1 | |
fi | |
inpath="$1" | |
tmpout="$(mktemp)" |