summaryrefslogtreecommitdiffstats
path: root/node-admin/README_MAC.md
diff options
context:
space:
mode:
authorValerij Fredriksen <valerijf@oath.com>2017-09-18 15:25:28 +0200
committerValerij Fredriksen <valerijf@oath.com>2017-09-18 15:25:28 +0200
commitc7c4d4e32dad561302e742d956fc6876a8a98656 (patch)
treea89e4c5a4aa9102c315a010ef0d45e7b5fc72fd8 /node-admin/README_MAC.md
parent80282532a497eca848480ecc8c931ca9cc9ed9cb (diff)
Remove old READMEs
Diffstat (limited to 'node-admin/README_MAC.md')
-rw-r--r--node-admin/README_MAC.md39
1 files changed, 0 insertions, 39 deletions
diff --git a/node-admin/README_MAC.md b/node-admin/README_MAC.md
deleted file mode 100644
index 49c723b2cd6..00000000000
--- a/node-admin/README_MAC.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# Setting up Docker on OS X
-Install Docker Toolbox according to the procedure on [https://www.docker.com/products/docker-toolbox](https://www.docker.com/products/docker-toolbox).
-Note: We need to use Docker Toolbox instead of Docker for Mac for running node-admin or system tests, since we need to
-configure networking per container.
-
-# Running Vespa on OS X
-
-## Starting the VM
-On OS X the docker daemon is running inside a VM called boot2docker. This VM is running using the
-VirtualBox virtualization software. To setup and start the VM for the first time, execute the
-following script:
-
-```
-docker-machine create -d virtualbox default
-```
-You should now have a Docker machine up and running. This can be verified with:
-
-```
-docker-machine ls
-```
-
-which should list the running ```default``` machine.
-
-Regular ```docker``` commands works as in Linux when you have the environment variables set.
-Look in [README.md](README.md) for useful docker commands.
-
-## Running Vespa applications or system tests
-
-Before running any applications you need to make containers visible for your Mac:
-```
-sudo route add 172.18.0.0/16 192.168.99.100
-```
-
-Follow the instructions in [README.md](README.md) for starting local zones and deploying applications.
-
-## Issues
-* Accessing Vespa from OS X while on a Cisco VPN connection does not work. This is because the VPN client will protect the routing table on OS X.
- * Workaround is to use ```docker-machine ssh vespa``` and then execute everything from inside the VM.
-