You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/dedicated-linux-docker.md
+34-12Lines changed: 34 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,22 +22,12 @@ Docker is a lightweight, open source virtualization software to provide services
22
22
23
23
To begin, you must connect to your Linux server via SSH. Please have a look at our [Initial access (SSH)](dedicated-linux-ssh.md) guide if you require assistance with this. Throughout this guide, we will be using Ubuntu as the Linux distribution.
24
24
25
-
### Enable Docker Compatibility
26
-
27
-
You must enable **Docker Compatibility** on your web interface in order to allow Docker contaienrs to work, otherwise you will receive `Permission Denied` errors.
28
-
29
-
Head over to the **Settings** section on your server's web interface panel, enable the **Docker Compatibility** option and save.
Once saved, ensure that you restart your server before proceeding.
34
-
35
25
## Installation
36
26
37
27
Now that you are connected to your Linux server, you can proceed with the installation methods. Select from one of the Linux repositories below to view the relevant installation steps.
To begin, you will have to add Docker's package through the use of `apt` and set it up. This will allow you to easily install and update Docker from the repository in the future.
To begin, you will have to add Docker's package through the use of `apt` and set it up. This will allow you to easily install and update Docker from the repository in the future.
66
+
67
+
Use the following commands to add Docker's official GPG key to your repository list.
sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
82
+
```
83
+
84
+
Now that you have added the Docker repository to your sources, run the `apt-get` update command to fetch the changes.
85
+
```
86
+
sudo apt-get update
87
+
```
88
+
89
+
By this stage, you have successfully setup the Docker `apt` repository. As the final step, you will have to install the Docker pacakages. You can install the latest version using the following command.
Congratulations, you have successfully installed and configured Docker onto your Linux server! If you have any further questions or problems, please contact our support team, who are available to help you every day!
0 commit comments