From 2a25a99fe47a00a75af29a42767e67c018740eae Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Tue, 9 Feb 2016 10:07:44 +0100 Subject: Initial revision. --- Makefile | 11 +++++++ README.md | 33 +++++++++++++++++++ index.md | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ scanning.md | 17 ++++++++++ 4 files changed, 169 insertions(+) create mode 100644 Makefile create mode 100644 README.md create mode 100644 index.md create mode 100644 scanning.md diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..218a7df --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +HTML = index.html README.html scanning.html + +all: html + +html: $(HTML) + +publish: $(HTML) index.org doc/tnc15talk.pdf + scp $^ devp.ct.nordu.net:/var/www/ + +%.html: %.md + markdown $< > $@ diff --git a/README.md b/README.md new file mode 100644 index 0000000..800e038 --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +# Download + + git clone https://git.nordu.net/plop.git + git clone https://git.nordu.net/catlfish.git + +## Docker + +To run catlfish in an LXC container on Debian or Ubuntu, you need +lxc-docker 1.4.1 or newer: + + sudo cat > /etc/apt/sources.list.d/docker.list <