diff options
author | Vincent Batts <vbatts@hashbangbash.com> | 2014-01-30 13:13:54 -0600 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-02-08 11:09:51 -0600 |
commit | f1e2b846410cb6fc34da5f3ce4b85dc035810eb3 (patch) | |
tree | 8ba3233a0e734b21498d7f967e4e82afdf557c6a /system/docker/README | |
parent | 3059f8abc4dcd52c9b2c3f702505b51b83517ab5 (diff) | |
download | slackbuilds-f1e2b846410cb6fc34da5f3ce4b85dc035810eb3.tar.gz |
system/docker: Added (manager for applications in linux containers)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/docker/README')
-rw-r--r-- | system/docker/README | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/system/docker/README b/system/docker/README new file mode 100644 index 0000000000..34a2d621ba --- /dev/null +++ b/system/docker/README @@ -0,0 +1,26 @@ +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 278 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 + +NOTE: google-go-lang is only needed at compile time - not needed for runtime. |