Made docker's build-kit optional.

This commit is contained in:
2025-03-30 16:14:11 +03:00
parent 4756c0f38a
commit 3635d739a5
2 changed files with 16 additions and 2 deletions

View File

@@ -24,7 +24,12 @@ Adds an abstraction layer on top of your Database.
Needed to download and build the docker container.
```bash
sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get install wget git docker.io docker-buildx -y
sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get install wget git docker.io -y
```
[Optional] Install Docker build-kit:
```bash
sudo apt-get docker-buildx -y
```