Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New #509

Merged
merged 3 commits into from
Sep 28, 2023
Merged

New #509

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions dockerlabs/docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Welcome to MkDocs

For full documentation visit [mkdocs.org](https://www.mkdocs.org).

## Commands

* `mkdocs new [dir-name]` - Create a new project.
* `mkdocs serve` - Start the live-reloading docs server.
* `mkdocs build` - Build the documentation site.
* `mkdocs -h` - Print help message and exit.

## Project layout

mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
1 change: 1 addition & 0 deletions dockerlabs/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
site_name: My Docs
15 changes: 15 additions & 0 deletions portal/docs/2_Installation/docker-desktop-for-linux.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# To install Docker Desktop for Linux on Ubuntu, you can follow these steps:

1. Download the .deb package from the official Docker website.

2. Install the package using the command:

```sudo dpkg -i <package-name>.deb```

3. Start the Docker Desktop service:

```sudo systemctl start docker```

4. Verify that Docker is running by checking its status:

```sudo systemctl status docker```
25 changes: 25 additions & 0 deletions portal/docs/2_Installation/docker-desktop-for-mac.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Installing Docker Desktop for Mac

Docker Desktop is free for small businesses (fewer than 250 employees AND less than $10 million in annual revenue), personal use, education, and non-commercial open-source projects. Otherwise, it requires a paid subscription for professional use. Paid subscriptions are also required for government entities. When downloading and installing Docker Desktop, you are asked to agree to the Docker Subscription Service Agreement


## Download Docker Desktop for Mac

- [Apple Silicon](https://desktop.docker.com/mac/main/arm64/Docker.dmg?utm_source=docker&utm_medium=webreferral&utm_campaign=dd-smartbutton&utm_location=module)
- [Intel Chip](https://desktop.docker.com/mac/main/amd64/Docker.dmg?utm_source=docker&utm_medium=webreferral&utm_campaign=dd-smartbutton&utm_location=module)

## Install interactively

1. Double-click `Docker.dmg` to open the installer, then drag the Docker icon to
the Applications folder.


2. Double-click `Docker.app` in the **Applications** folder to start Docker.

3. The Docker menu (whale menu) displays the Docker Subscription Service Agreement window.



4. Select **Accept** to continue. Docker Desktop starts after you accept the terms.

![docker desktop](image/docker%20desktop.png)
Empty file.
Loading