Docker: Difference between revisions

From Alpine Linux
(add note for 3.5: py-pip is renamed to py2-pip)
(Replace edge with latest-stable)
(13 intermediate revisions by 5 users not shown)
Line 5: Line 5:


== Installation ==
== Installation ==
   
   
Run <code>apk add docker</code> to install Docker on Alpine Linux.
Run <code>apk add docker</code> to install Docker on Alpine Linux.
Line 11: Line 10:
The Docker package is in the 'Community' repository, so if the '''apk add''' fails with '''unsatisfiable constraints''', you need to edit the '''/etc/apk/repositories''' file to add (or uncomment) a line like:
The Docker package is in the 'Community' repository, so if the '''apk add''' fails with '''unsatisfiable constraints''', you need to edit the '''/etc/apk/repositories''' file to add (or uncomment) a line like:


<code>http://dl-6.alpinelinux.org/alpine/edge/community</code>
<code>http://dl-cdn.alpinelinux.org/alpine/latest-stable/community</code>
 
then run <code>apk update</code> to index the repository.




Line 39: Line 40:


<code>apk add py-pip</code>
<code>apk add py-pip</code>
{{Note|On Alpine Linux 3.5, the package is named py2-pip}}
 


'''Then install docker-compose, run:'''
'''Then install docker-compose, run:'''
Line 45: Line 46:
<code>pip install docker-compose</code>
<code>pip install docker-compose</code>


== Isolate containers with a user namespace ==
<pre>
adduser -SDHs /sbin/nologin dockremap
echo dockremap:$(cat /etc/passwd|grep dockremap|cut -d: -f3):65536 >> /etc/subuid
echo dockremap:$(cat /etc/passwd|grep dockremap|cut -d: -f4):65536 >> /etc/subgid
</pre>
and add in '''/etc/conf.d/docker'''
<pre>
DOCKER_OPTS="--userns-remap=default"                   
</pre>
''You may also consider these options : '''--icc=false --no-new-privileges'''''
PS: it's also here (at DOCKER_OPTS) you must specify the '''-H tcp://$IP:$PORT -H unix:///var/run/docker.sock'''


== Example: How to install docker from Arch ==
== Example: How to install docker from Arch ==


https://wiki.archlinux.org/index.php/Docker
https://wiki.archlinux.org/index.php/Docker


== '''How to use docker''' ==
== '''How to use docker''' ==
Line 60: Line 76:


Official Docker image files are denoted by a blue ribon on the website.
Official Docker image files are denoted by a blue ribon on the website.
== See also ==
* [https://www.erianna.com/creating-a-alpine-linux-repository/ Creating & Hosting an Alpine Linux Package Repository for Docker Packages]
[[Category:Virtualization]]

Revision as of 20:36, 20 May 2018

Alpine makes a great docker container, because it is so small and optimized to be run in RAM. It might also might make a good controller for several docker containers with enough RAM. I haven't tested this yet Docker's setup is easy to use from command line. Commands can be run from an interactive shell, or through a configuration file called a "Dockerfile". docker.com has excellent walk-throughs on how to run, pull, setup a container, commit an image, and create a configuration file. hub.docker.com is a freemium setup, where the first private repository is free.

Installation

Run apk add docker to install Docker on Alpine Linux.

The Docker package is in the 'Community' repository, so if the apk add fails with unsatisfiable constraints, you need to edit the /etc/apk/repositories file to add (or uncomment) a line like:

http://dl-cdn.alpinelinux.org/alpine/latest-stable/community

then run apk update to index the repository.


To start the Docker daemon at boot, run:

rc-update add docker boot


Then to start the Docker daemon manually, run:

service docker start


Note: On older version of Alpine Linux with older version of docker you'll also need to disable some kernel security flags in order to build images:

sysctl -w kernel.grsecurity.chroot_deny_chmod=0

sysctl -w kernel.grsecurity.chroot_deny_mknod=0

For more information, have a look at the corresponding Github issue.

Anyway, this weakening of security is not necessary to do with Alpine 3.4.x and Docker 1.12 as of August 2016 anymore.

Docker Compose

To install docker-compose, first install pip:

apk add py-pip


Then install docker-compose, run:

pip install docker-compose

Isolate containers with a user namespace

adduser -SDHs /sbin/nologin dockremap
echo dockremap:$(cat /etc/passwd|grep dockremap|cut -d: -f3):65536 >> /etc/subuid
echo dockremap:$(cat /etc/passwd|grep dockremap|cut -d: -f4):65536 >> /etc/subgid

and add in /etc/conf.d/docker

DOCKER_OPTS="--userns-remap=default"                    

You may also consider these options : --icc=false --no-new-privileges

PS: it's also here (at DOCKER_OPTS) you must specify the -H tcp://$IP:$PORT -H unix:///var/run/docker.sock

Example: How to install docker from Arch

https://wiki.archlinux.org/index.php/Docker

How to use docker

The best documentation for how to use Docker and create containers is at the main docker site. Adding anything more to it here would be redundant.

http://docs.docker.com/

if you create an account at docker.com you can browse through other user's images and learn from the syntax in contributor's dockerfiles.

Official Docker image files are denoted by a blue ribon on the website.

See also