Skip to content

Commit 9449a4d

Browse files
authored
Update docker-installation.md
1 parent 05a8705 commit 9449a4d

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

docs/docker-installation.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# Docker Installation Guide
22

33
## Installation for
4-
- [Debian-based Linux](#docker-installation-on-debian-based-linux)
5-
- [Windows](#docker-installation-on-windows)
6-
- [macOS](#docker-installation-on-macos)
74

8-
### Docker Installation on Debian-based Linux
5+
- [Debian-based Linux](#docker-installation-on-debian-based-linux)
6+
- [Windows](#docker-installation-on-windows)
7+
- [macOS](#docker-installation-on-macos)
98

10-
1. **Set up Docker's apt repository:**
9+
## Docker Installation on Debian-based Linux
10+
11+
1. Set up Docker's apt repository:
1112

1213
```bash
1314
# Add Docker's official GPG key:
@@ -25,40 +26,40 @@
2526
sudo apt-get update
2627
```
2728

28-
2. **Install the Docker packages:**
29+
2. Install the Docker packages:
2930

3031
```bash
3132
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
3233
```
3334

34-
3. **Add your user to the `docker` group:**
35+
3. Add your user to the `docker` group:
3536

3637
```bash
3738
sudo usermod -aG docker $USER
3839
newgrp docker
3940
```
4041

41-
4. **Verify the installation:**
42+
4. Verify the installation:
4243

4344
```bash
4445
docker run hello-world
4546
```
4647

4748
---
4849

49-
### Docker Installation on Windows
50+
## Docker Installation on Windows
5051

51-
1. **Download and Install [Docker Desktop for Windows](https://www.docker.com/products/docker-desktop/).**
52+
1. Download and Install [Docker Desktop for Windows](https://www.docker.com/products/docker-desktop/).
5253

53-
2. **Ensure Docker Desktop is running (check the system tray icon).**
54+
2. Ensure Docker Desktop is running (check the system tray icon).
5455

5556
---
5657

5758
### Docker Installation on macOS
5859

59-
1. **Download and Install [Docker Desktop for Mac](https://www.docker.com/products/docker-desktop/).**
60-
2. **Verify the installation in Terminal:**
60+
1. Download and Install [Docker Desktop for Mac](https://www.docker.com/products/docker-desktop/).
61+
2. Verify the installation in Terminal:
6162

6263
```bash
6364
docker --version
64-
```
65+
```

0 commit comments

Comments
 (0)