summaryrefslogtreecommitdiff
path: root/docs/sources/installation/archlinux.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/sources/installation/archlinux.md')
-rw-r--r--docs/sources/installation/archlinux.md22
1 files changed, 2 insertions, 20 deletions
diff --git a/docs/sources/installation/archlinux.md b/docs/sources/installation/archlinux.md
index 570e36c482..99849c7aa0 100644
--- a/docs/sources/installation/archlinux.md
+++ b/docs/sources/installation/archlinux.md
@@ -30,13 +30,13 @@ in the packages. The core dependencies are:
For the normal package a simple
- $ sudo pacman -S docker
+ pacman -S docker
is all that is needed.
For the AUR package execute:
- $ sudo yaourt -S docker-git
+ yaourt -S docker-git
The instructions here assume **yaourt** is installed. See [Arch User
Repository](https://wiki.archlinux.org/index.php/Arch_User_Repository#Installing_packages)
@@ -59,21 +59,3 @@ To start on system boot:
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.