-
Notifications
You must be signed in to change notification settings - Fork 156
Install Docker
Mario Cho edited this page Aug 15, 2018
·
14 revisions
For platform-specific instructions, please consult the official documentation.
Alternative way of docker installation on Linux (Ubuntu, CentOS, ...)
$ curl -fsSL https://get.docker.io | sh
type your password to install docker.
By default, you need sudo to execute docker commands.
To do so without sudo, add yourself to the system docker
group.
$ sudo usermod -aG docker $USER
It will work after restarting your login session.
You need to install docker-compose separately.
Check out the official documentation.
Check out the official repository for instructions.