2013-12-21 23:38:13 +01:00
|
|
|
:title: Installation on FrugalWare
|
2014-02-09 14:40:31 +02:00
|
|
|
:description: Please note this project is currently under heavy development. It should not be used in production.
|
2013-12-21 23:38:13 +01:00
|
|
|
:keywords: frugalware linux, virtualization, docker, documentation, installation
|
|
|
|
|
|
|
|
.. _frugalware:
|
|
|
|
|
|
|
|
FrugalWare
|
|
|
|
==========
|
|
|
|
|
|
|
|
.. include:: install_header.inc
|
|
|
|
|
|
|
|
.. include:: install_unofficial.inc
|
|
|
|
|
|
|
|
Installing on FrugalWare is handled via the official packages:
|
|
|
|
|
|
|
|
* `lxc-docker i686 <http://www.frugalware.org/packages/200141>`_
|
|
|
|
|
|
|
|
* `lxc-docker x86_64 <http://www.frugalware.org/packages/200130>`_
|
|
|
|
|
2013-12-27 11:55:57 +01:00
|
|
|
The `lxc-docker` package will install the latest tagged version of Docker.
|
2013-12-21 23:38:13 +01:00
|
|
|
|
|
|
|
Dependencies
|
|
|
|
------------
|
|
|
|
|
|
|
|
Docker depends on several packages which are specified as dependencies in
|
|
|
|
the packages. The core dependencies are:
|
|
|
|
|
|
|
|
* systemd
|
|
|
|
* lvm2
|
|
|
|
* sqlite3
|
|
|
|
* libguestfs
|
|
|
|
* lxc
|
|
|
|
* iproute2
|
|
|
|
* bridge-utils
|
|
|
|
|
|
|
|
|
|
|
|
Installation
|
|
|
|
------------
|
|
|
|
|
|
|
|
A simple
|
|
|
|
::
|
|
|
|
|
|
|
|
pacman -S lxc-docker
|
|
|
|
|
|
|
|
is all that is needed.
|
|
|
|
|
|
|
|
|
|
|
|
Starting Docker
|
|
|
|
---------------
|
|
|
|
|
2013-12-22 00:00:20 +01:00
|
|
|
There is a systemd service unit created for Docker. To start Docker as service:
|
2013-12-21 23:38:13 +01:00
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
sudo systemctl start lxc-docker
|
|
|
|
|
|
|
|
|
|
|
|
To start on system boot:
|
|
|
|
|
|
|
|
::
|
|
|
|
|
|
|
|
sudo systemctl enable lxc-docker
|