From 0d0159b56fe9ae9fc745805b38b89e1c8994ef3b Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sun, 4 Nov 2018 14:33:47 +0000 Subject: [PATCH] Update build instructions for latest Fedora `yum` no longer exists. Also, show how to create a symlink for /var/lib/docker on build VMs that aren't standalone. Reported by xaki23. --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 961393f..02dc576 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,16 @@ Pre-built binaries are available from the [releases page][]. Clone this Git repository and run the `build-with-docker.sh` script: - sudo yum install docker + sudo ln -s /var/lib/docker /home/user/docker + sudo dnf install docker sudo systemctl start docker git clone https://github.com/talex5/qubes-mirage-firewall.git cd qubes-mirage-firewall sudo ./build-with-docker.sh This took about 10 minutes on my laptop (it will be much quicker if you run it again). +The symlink step at the start isn't needed if your build VM is standalone. +It gives Docker more disk space and avoids losing the Docker image cache when you reboot the Qube. You can also build without Docker, as for any normal Mirage unikernel; see [the Mirage installation instructions](https://mirage.io/wiki/install) for details.