From 27dd5d6f7b8415cd8d42fbea3447130f7b5b6d98 Mon Sep 17 00:00:00 2001 From: Marcos Lilljedahl Date: Sun, 13 Nov 2016 16:45:03 -0300 Subject: [PATCH] Add Swarm and IPVS instructions --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index bebd141..9d267e7 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,13 @@ Docker 1.13+ is required. You can use docker-machine with the following command: docker-machine create -d virtualbox --virtualbox-boot2docker-url https://github.com/boot2docker/boot2docker/releases/download/v1.13.0-rc1/boot2docker.iso ``` +The docker daemon needs to run in swarm mode because PWD uses overlay attachable networks. For that +just run `docker swarm init`. + +It's also necessary to manually load the IPVS kernel module because as swarms are created in `dind`, +the daemon won't load it automatically. Run the following command for that purpose: `sudo lsmod xt_ipvs` + + ## Installation Start the Docker daemon on your machine and run `docker pull docker:1.12.2-rc2-dind`.