github.com/hustcat/docker@v1.3.3-0.20160314103604-901c67a8eeab/docs/installation/linux/frugalware.md (about) 1 <!--[metadata]> 2 +++ 3 aliases = [ "/engine/installation/frugalware/"] 4 title = "Installation on FrugalWare" 5 description = "Installation instructions for Docker on FrugalWare." 6 keywords = ["frugalware linux, docker, documentation, installation"] 7 [menu.main] 8 parent = "engine_linux" 9 +++ 10 <![end-metadata]--> 11 12 # FrugalWare 13 14 Installing on FrugalWare is handled via the official packages: 15 16 - [lxc-docker i686](http://www.frugalware.org/packages/200141) 17 - [lxc-docker x86_64](http://www.frugalware.org/packages/200130) 18 19 The lxc-docker package will install the latest tagged version of Docker. 20 21 ## Dependencies 22 23 Docker depends on several packages which are specified as dependencies 24 in the packages. The core dependencies are: 25 26 - systemd 27 - lvm2 28 - sqlite3 29 - libguestfs 30 - lxc 31 - iproute2 32 - bridge-utils 33 34 ## Installation 35 36 A simple 37 38 $ sudo pacman -S lxc-docker 39 40 is all that is needed. 41 42 ## Starting Docker 43 44 There is a systemd service unit created for Docker. To start Docker as 45 service: 46 47 $ sudo systemctl start lxc-docker 48 49 To start on system boot: 50 51 $ sudo systemctl enable lxc-docker 52 53 ## Custom daemon options 54 55 If you need to add an HTTP Proxy, set a different directory or partition for the 56 Docker runtime files, or make other customizations, read our systemd article to 57 learn how to [customize your systemd Docker daemon options](../../admin/systemd.md). 58 59 ## Uninstallation 60 61 To uninstall the Docker package: 62 63 $ sudo pacman -R lxc-docker 64 65 To uninstall the Docker package and dependencies that are no longer needed: 66 67 $ sudo pacman -Rns lxc-docker 68 69 The above commands will not remove images, containers, volumes, or user created 70 configuration files on your host. If you wish to delete all images, containers, 71 and volumes run the following command: 72 73 $ rm -rf /var/lib/docker 74 75 You must delete the user created configuration files manually.