slackbuilds/system/docker
Vincent Batts 47dfc8d36e system/docker: Updated for version 1.8.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2015-10-01 20:09:44 +07:00
..
config system/docker: Updated for version 1.4.1. 2015-01-22 06:34:21 +07:00
patches system/docker: Updated for version 1.8.2. 2015-10-01 20:09:44 +07:00
README system/docker: Add note about requirement. 2014-12-15 06:38:01 +07:00
docker-btrfs.patch system/docker: Updated for version 0.11.1. 2014-05-12 07:35:53 +07:00
docker.SlackBuild system/docker: Updated for version 1.8.2. 2015-10-01 20:09:44 +07:00
docker.info system/docker: Updated for version 1.8.2. 2015-10-01 20:09:44 +07:00
doinst.sh system/docker: Added (manager for applications in linux containers) 2014-02-08 11:09:51 -06:00
slack-desc system/docker: Added (manager for applications in linux containers) 2014-02-08 11:09:51 -06:00

README

Docker is an open-source project to easily create lightweight, portable,
self-sufficient containers from any application. The same container that
a developer builds and tests on a laptop can run at scale, in production,
on VMs, bare metal, OpenStack clusters, public clouds and more.

To use docker as a limited user, add your user to the 'docker' group:

	# groupadd -r -g 281 docker
	# usermod -a -G docker <your_username>

This will require logging out and back in.

To have the docker daemon start and stop with your host,
add to /etc/rc.d/rc.local:

	if [ -x /etc/rc.d/rc.docker ]; then
		/etc/rc.d/rc.docker start
	fi

and to /etc/rc.d/rc.local_shutdown (creating it if needed):

	if [ -x /etc/rc.d/rc.docker ]; then
		/etc/rc.d/rc.docker stop
	fi

If you are interested in enabling cgroup memory resource controll over swap as
well, then append "swapaccount=1" to your kernel's parameters. This is often in
/etc/lilo.conf, on the "append" variable.

NOTE: google-go-lang is only needed at compile time - not needed for runtime.

Docker doesn't support x86, only x86_64