docker-aio/README.md

21 lines
804 B
Markdown
Raw Normal View History

2023-01-19 23:34:01 +01:00
# Docker Auto Installer
2023-01-20 09:44:36 +01:00
Docker install scripts for Proxmox Containers.
Just run the command in the containers console.
2023-01-19 23:20:12 +01:00
2023-01-19 23:22:25 +01:00
## Alpine
2023-01-20 09:42:42 +01:00
```bash
2023-01-19 23:22:25 +01:00
sh -c "$(curl -L https://raw.githubusercontent.com/hxcde/Docker-Installer/main/alpine.sh)"
2023-01-20 09:42:42 +01:00
```
2023-01-19 23:33:36 +01:00
- If there is an error because curl is missing, install it with 'apk add curl'
2023-01-20 00:06:54 +01:00
- I recommend using Alpine 3.15 and not 3.16. Alpine 3.16 creates OCI errors.
2023-01-19 23:57:15 +01:00
## Debian
2023-01-20 09:43:11 +01:00
```bash
2023-01-19 23:57:40 +01:00
bash -c "$(curl -L https://raw.githubusercontent.com/hxcde/docker-auto-installer/main/debian.sh)"
2023-01-20 09:43:11 +01:00
```
2023-01-19 23:59:11 +01:00
- If there is an error because curl is missing, install it with 'apt-get install curl'
2023-01-20 09:39:36 +01:00
## Ubuntu
2023-01-20 09:43:11 +01:00
```bash
2023-01-20 09:39:36 +01:00
bash -c "$(curl -L https://raw.githubusercontent.com/hxcde/docker-auto-installer/main/ubuntu.sh)"
2023-01-20 09:43:11 +01:00
```
2023-01-20 09:39:36 +01:00
- If there is an error because curl is missing, install it with 'apt-get install curl'