mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-29 13:00:32 +01:00
f1e2b84641
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
26 lines
835 B
Text
26 lines
835 B
Text
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.
|