docs: add all untracked content

This commit is contained in:
John Doe 2023-06-26 11:17:19 +00:00
parent 117e60407e
commit da9474c3a3
3 changed files with 80 additions and 0 deletions

44
docker.md Normal file

@ -0,0 +1,44 @@
---
title: How to install Docker
description: How to install Docker on Ubuntu 22.04
published: true
date: 2023-06-26T10:57:30.081Z
tags:
editor: markdown
dateCreated: 2023-06-26T10:43:59.640Z
---
# How to install Docker
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:
```
apt update
```
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:
```
apt install curl
```
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:
```
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.
* Once the installation process is complete, you can verify that Docker is working correctly. Run the following command in the terminal:
```
docker --version
```
This command displays the version of Docker installed on your system. You should see an output similar to the following:
```
➜ ~ docker --version
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.

36
home.md Normal file

@ -0,0 +1,36 @@
---
title: Home
description: Useful docs to help you in your Homelab
published: true
date: 2023-06-26T11:03:27.502Z
tags:
editor: markdown
dateCreated: 2023-06-26T10:42:30.708Z
---
# Welcome to Fascinated's Wiki!
## About
Fascinated's Wiki is a comprehensive resource for Docker, Ubuntu, and more. Whether you're a beginner or an experienced user, you'll find useful information, tutorials, and guides to help you navigate these topics.
## Topics Covered
- Docker: Discover the power of containerization and learn how to efficiently package, deploy, and run applications using Docker containers.
- Ubuntu: Explore the popular Linux distribution and learn how to set up and manage Ubuntu-based systems, including installation, configuration, and common tasks.
## How to Use
Navigate through the different topics using the menu on the left or the search bar at the top of the page. Each topic has a collection of articles and guides to help you learn and solve problems efficiently.
## 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. Together, we can make Fascinated's Wiki a valuable resource for everyone.
## Contact
If you have any questions, feedback, or suggestions, please don't hesitate to reach out to us. You can contact us through the contact form on the website or send an email to [liam@fascinated.cc].
We hope you find Fascinated's Wiki helpful and informative. Happy exploring!
![rblhpt.jpeg](/rblhpt.jpeg)

BIN
rblhpt.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB