Docker

From ALT Linux Wiki
Revision as of 13:46, 17 December 2018 by Obirvalger (talk | contribs) (Created page with "= Docker = [https://en.wikipedia.org/wiki/Docker_(software) Docker] is an open platform for developing, shipping, and running applications. == Installation == <ol> <li> To in...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Docker

Docker is an open platform for developing, shipping, and running applications.

Installation

  1. To install docker run:
    # apt-get install docker-ce
  2. If you want docker to work from user (not from root) add user to group docker
    # gpasswd docker -a USER_NAME
  3. Then start and enable docker service:
    # systemctl start docker
    # systemctl enable docker

Images

Official image

Official ALT image locates at: https://hub.docker.com/_/alt/. Container could be run via:

docker run --rm -it alt

By default use tag latest, that points to latest stable release.

To specify sisyphus use corresponding tag:

docker run --rm -it alt:sisyphus

Derivative images

Special images are located at https://hub.docker.com/u/altcloud/. These images are built from Dockerfiles from https://github.com/alt-cloud/ALT-Dockerfiles (pull-requests are welcome).

There are images for the following purposes:

  • web servers nginx and apache2;
  • configuration storage etcd;
  • tools for running your applications: python и ruby;
  • and others.