blog/content/notes/Docker ALT Linux.md

23 lines
No EOL
464 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

+++
title = "Docker в AltLinux"
tags = ["linux", "docker"]
+++
## Установка
Установить docker можно следующей командой:
```
apt-get install docker-engine
```
Добавить пользователя в группу docker;
```
usermod ИМЯ_ПОЛЬЗОВАТЕЛЯ -aG docker
```
Затем необходимо запустить соответствующую службу:
```
systemctl enable --now docker
```