This guide is was made to help you to start using this repository. It's only showing the steps to build and run a Ubuntu 16.04 LTS (Xenial) base image, other images in this repository might depend on this or a different base image. You need to build base images first to be able to build derived images.
## Install Docker and Vagrant
To install Docker and Vagrant, type the commands in a terminal emulator. The links are here if you want to read about these tools - recommended, but optional.
- https://www.docker.com/
- https://www.vagrantup.com/
### Linux
Install the packages and start the services. The package names and the configuration differ a bit by distribution, but here's a few tips:
- Make sure you're in the *docker* group
- Make sure the docker service is running
-`docker ps` should exit without an error
#### Ubuntu
sudo apt-get install make docker.io vagrant
sudo usermod --append --groups docker <username>
sudo service docker start
#### OPTIONAL configuration
My personal recommendation is not to use AuFS - the default storage driver. You can read the details [here][storage_drivers].
Devicemapper is a simple alternative if you're already using and comfortable with LVM.