github.com/feiyang21687/docker@v1.5.0/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      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/).