From e1b57b2a87a763fc9fac5fbd59f64dcf1e541e7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20Franc=C3=A8s?= Date: Sun, 26 Jul 2015 13:25:01 +0200 Subject: [PATCH] Change of wording, rearrange section ordering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Oriol Francès --- docs/installation/archlinux.md | 40 ++++++++++++++++------------------ 1 file changed, 19 insertions(+), 21 deletions(-) diff --git a/docs/installation/archlinux.md b/docs/installation/archlinux.md index b18be6c371..8b0c40f6ef 100644 --- a/docs/installation/archlinux.md +++ b/docs/installation/archlinux.md @@ -66,27 +66,7 @@ If you need to add an HTTP Proxy, set a different directory or partition for the Docker runtime files, or make other customizations, read our systemd article to learn how to [customize your systemd Docker daemon options](/articles/systemd/). -## Uninstallation - -To uninstall the Docker package: - - $ sudo pacman -R docker - -To uninstall the Docker package and dependencies that are no longer needed: - - $ sudo pacman -Rns docker - -The above commands will not remove images, containers, volumes, or user created -configuration files on your host. If you wish to delete all images, containers, -and volumes run the following command: - - $ rm -rf /var/lib/docker - -You must delete the user created configuration files manually. - -## Issues - -### systemd-network +## Running docker with a manually defined network Users of systemd-network >= v220 who have configured their network manually by creating an `.network` file in `/etc/systemd/network/` may have to add @@ -106,3 +86,21 @@ overriden by `net.ipv4.conf..forwarding` being disabled) Adding `IPForward=kernel` to the `.network` file prevents this behavior, allowing IP Forwarding to function as expected. + +## Uninstallation + +To uninstall the Docker package: + + $ sudo pacman -R docker + +To uninstall the Docker package and dependencies that are no longer needed: + + $ sudo pacman -Rns docker + +The above commands will not remove images, containers, volumes, or user created +configuration files on your host. If you wish to delete all images, containers, +and volumes run the following command: + + $ rm -rf /var/lib/docker + +You must delete the user created configuration files manually.