forked from Fascinated/docs
fix markdown lint errors
This commit is contained in:
parent
99236cb12a
commit
b26a854e97
32
docker.md
32
docker.md
@ -3,7 +3,7 @@ title: How to install Docker
|
|||||||
description: How to install Docker on Ubuntu 22.04
|
description: How to install Docker on Ubuntu 22.04
|
||||||
published: true
|
published: true
|
||||||
date: 2023-06-26T10:57:30.081Z
|
date: 2023-06-26T10:57:30.081Z
|
||||||
tags:
|
tags:
|
||||||
editor: markdown
|
editor: markdown
|
||||||
dateCreated: 2023-06-26T10:43:59.640Z
|
dateCreated: 2023-06-26T10:43:59.640Z
|
||||||
---
|
---
|
||||||
@ -12,33 +12,41 @@ dateCreated: 2023-06-26T10:43:59.640Z
|
|||||||
|
|
||||||
This guide provides step-by-step instructions for installing Docker Community Edition (CE) on Ubuntu, specifically tested on version 22.04. Docker is a powerful tool for containerization, allowing you to separate different services into individual containers and offering better resource efficiency compared to virtual machines.
|
This guide provides step-by-step instructions for installing Docker Community Edition (CE) on Ubuntu, specifically tested on version 22.04. Docker is a powerful tool for containerization, allowing you to separate different services into individual containers and offering better resource efficiency compared to virtual machines.
|
||||||
|
|
||||||
* Begin by updating your apt repository to ensure you have the latest package information and dependencies. Open a terminal and run the following command:
|
- Begin by updating your apt repository to ensure you have the latest package information and dependencies. Open a terminal and run the following command:
|
||||||
```
|
|
||||||
|
```bash
|
||||||
apt update
|
apt update
|
||||||
```
|
```
|
||||||
|
|
||||||
This command will refresh the package lists and update any outdated packages on your system.
|
This command will refresh the package lists and update any outdated packages on your system.
|
||||||
|
|
||||||
* Next, you need to ensure that the curl utility is installed. This tool is used to transfer data to or from a server using various protocols. If you already have curl installed, you can skip this step. Otherwise, execute the following command in the terminal to install it:
|
- Next, you need to ensure that the curl utility is installed. This tool is used to transfer data to or from a server using various protocols. If you already have curl installed, you can skip this step. Otherwise, execute the following command in the terminal to install it:
|
||||||
```
|
|
||||||
|
```bash
|
||||||
apt install curl
|
apt install curl
|
||||||
```
|
```
|
||||||
|
|
||||||
This command will download and install curl from the Ubuntu repositories.
|
This command will download and install curl from the Ubuntu repositories.
|
||||||
|
|
||||||
* Now, you can proceed with the installation of Docker. Docker provides a convenient installation script that you can run to automatically set up the necessary components. Execute the following command in the terminal:
|
- Now, you can proceed with the installation of Docker. Docker provides a convenient installation script that you can run to automatically set up the necessary components. Execute the following command in the terminal:
|
||||||
```
|
|
||||||
|
```bash
|
||||||
curl -sSL https://get.docker.com/ | CHANNEL=stable bash
|
curl -sSL https://get.docker.com/ | CHANNEL=stable bash
|
||||||
```
|
```
|
||||||
|
|
||||||
This command downloads the Docker installation script and pipes it to the bash shell, which executes the script. The CHANNEL=stable option ensures that the stable version of Docker is installed.
|
This command downloads the Docker installation script and pipes it to the bash shell, which executes the script. The CHANNEL=stable option ensures that the stable version of Docker is installed.
|
||||||
|
|
||||||
* Once the installation process is complete, you can verify that Docker is working correctly. Run the following command in the terminal:
|
- Once the installation process is complete, you can verify that Docker is working correctly. Run the following command in the terminal:
|
||||||
```
|
|
||||||
|
```bash
|
||||||
docker --version
|
docker --version
|
||||||
```
|
```
|
||||||
|
|
||||||
This command displays the version of Docker installed on your system. You should see an output similar to the following:
|
This command displays the version of Docker installed on your system. You should see an output similar to the following:
|
||||||
```
|
|
||||||
|
```bash
|
||||||
➜ ~ docker --version
|
➜ ~ docker --version
|
||||||
Docker version 23.0.6, build ef23cbc
|
Docker version 23.0.6, build ef23cbc
|
||||||
```
|
```
|
||||||
|
|
||||||
Congratulations! You have now installed Docker Community Edition on your Ubuntu machine. Docker is ready to be used, allowing you to leverage the power of containerization for your projects and applications.
|
Congratulations! You have now installed Docker Community Edition on your Ubuntu machine. Docker is ready to be used, allowing you to leverage the power of containerization for your projects and applications.
|
||||||
|
8
home.md
8
home.md
@ -3,12 +3,12 @@ title: Home
|
|||||||
description: Useful docs to help you in your Homelab
|
description: Useful docs to help you in your Homelab
|
||||||
published: true
|
published: true
|
||||||
date: 2023-06-26T11:03:27.502Z
|
date: 2023-06-26T11:03:27.502Z
|
||||||
tags:
|
tags:
|
||||||
editor: markdown
|
editor: markdown
|
||||||
dateCreated: 2023-06-26T10:42:30.708Z
|
dateCreated: 2023-06-26T10:42:30.708Z
|
||||||
---
|
---
|
||||||
|
|
||||||
# Welcome to Fascinated's Wiki!
|
# Welcome to Fascinated's Wiki
|
||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
@ -25,7 +25,7 @@ Navigate through the different topics using the menu on the left or the search b
|
|||||||
|
|
||||||
## Contribute
|
## Contribute
|
||||||
|
|
||||||
We encourage contributions from the community to improve and expand our content. If you have a tutorial, guide, or any valuable information related to Docker, Ubuntu, or other relevant topics, feel free to submit it for review on https://git.fascinated.cc/Fascinated/docs. Together, we can make Fascinated's Wiki a valuable resource for everyone.
|
We encourage contributions from the community to improve and expand our content. If you have a tutorial, guide, or any valuable information related to Docker, Ubuntu, or other relevant topics, feel free to submit it for review on <https://git.fascinated.cc/Fascinated/docs>. Together, we can make Fascinated's Wiki a valuable resource for everyone.
|
||||||
|
|
||||||
## Contact
|
## Contact
|
||||||
|
|
||||||
@ -33,4 +33,4 @@ If you have any questions, feedback, or suggestions, please don't hesitate to re
|
|||||||
|
|
||||||
We hope you find Fascinated's Wiki helpful and informative. Happy exploring!
|
We hope you find Fascinated's Wiki helpful and informative. Happy exploring!
|
||||||
|
|
||||||
![rblhpt.jpeg](/rblhpt.jpeg)
|
![rblhpt.jpeg](/rblhpt.jpeg)
|
||||||
|
Loading…
Reference in New Issue
Block a user