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

Docker: Add short info about other available plugins #1004

Merged
merged 4 commits into from
May 30, 2024
Merged
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
23 changes: 23 additions & 0 deletions docs/software/programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,29 @@ _Source: [User:`Maklaan` - Based on a Docker blog post](https://commons.wikimedi
journalctl -u docker -u containerd
```

=== "Plugins"

Docker offers plugins on its website (e.g. [Docker Plugins amd64 stable](https://download.docker.com/linux/debian/dists/bookworm/pool/stable/amd64/){: class="nospellcheck"}), some of them are not installed by the Docker installation by default resp. are no install option from `dietpi-software` (like the Docker Compose plugin is one).
These additional plugins can be installed by the user as described below.

[Docker Buildx](https://docs.docker.com/build/architecture/){: class="nospellcheck"} CLI plugin:

```sh
apt install docker-buildx-plugin
```

[Docker vulnerability scan](https://docs.docker.com/docker-hub/vulnerability-scanning/) CLI plugin:

```sh
apt install docker-scan-plugin
```

For [running container rootless](https://docs.docker.com/engine/security/rootless/):

```sh
apt install docker-ce-rootless-extras
```

=== "Speed up image creation with a tmpfs"

Docker downloads image file chunks to `/mnt/dietpi_userdata/docker-data/tmp` when generating a Docker image. After this, the file chunks are deleted as they are only temporary files.
Expand Down
4 changes: 2 additions & 2 deletions docs/software/webserver_stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ The innovation of Nginx compared to earlier servers such as Apache was to use an

***

Official documentation: <https://www.nginx.com>
Official documentation: <https://docs.nginx.com/nginx/admin-guide/>

### Lighttpd

Expand Down Expand Up @@ -592,7 +592,7 @@ Official documentation: <https://nodejs.org/api/>
<!-- markdownlint-disable MD053 -->
[^1]: Find out more about the success stories of Nginx on: <https://nginx.org/en/>
[^3]: [Most Widely Deployed and Used Database Engine](https://www.sqlite.org/mostdeployed.html). Retrieved 12 December 2020
[^4]: [NGINX vs. Apache: Our View of a Decade-Old Question](https://www.nginx.com/blog/nginx-vs-apache-our-view/). Retrieved 12 December 2020
[^4]: [Apache vs Nginx: Practical Considerations](https://www.digitalocean.com/community/tutorials/apache-vs-nginx-practical-considerations). Retrieved 30 May 2024
[^5]: <https://hostingtribunal.com/blog/node-js-stats/#gref>. Retrieved 29 May 2021
[^6]: [CORS Errors Mozilla](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS/Errors). Retrieved 05 December 2021

Expand Down