mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
838e69e11e
* Removed warnings. * Removed inconsistent Community installation sections. * Fixed all installation page descriptions. * Removed old .inc files. Docker-DCO-1.1-Signed-off-by: James Turnbull <james@lovedthanlost.net> (github: jamtur01)
44 lines
973 B
Markdown
44 lines
973 B
Markdown
page_title: Installation on FrugalWare
|
|
page_description: Installation instructions for Docker on FrugalWare.
|
|
page_keywords: frugalware linux, virtualization, docker, documentation, installation
|
|
|
|
# FrugalWare
|
|
|
|
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)
|
|
|
|
The lxc-docker package will install the latest tagged version of Docker.
|
|
|
|
## 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
|
|
|
|
There is a systemd service unit created for Docker. To start Docker as
|
|
service:
|
|
|
|
$ sudo systemctl start lxc-docker
|
|
|
|
To start on system boot:
|
|
|
|
$ sudo systemctl enable lxc-docker
|