github.com/jogo/docker@v1.7.0-rc1/docs/sources/installation/frugalware.md (about)

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