41 lines
1.1 KiB
Markdown
41 lines
1.1 KiB
Markdown
# proxmox-ve-install-scripts
|
|
|
|
huntarr: `bash -c "$(curl -fsSL https://git.bila.li/Proxmox/proxmox-ve-install-scripts/raw/branch/dev/lxc/huntarr.sh)"`
|
|
|
|
# Proxmox VE Install Scripts
|
|
|
|
A collection of installation scripts for Proxmox VE containers.
|
|
|
|
## Installation Commands
|
|
|
|
### Huntarr
|
|
|
|
Create a new Huntarr LXC container:
|
|
|
|
```bash
|
|
bash -c "$(curl -fsSL https://git.bila.li/Proxmox/proxmox-ve-install-scripts/raw/branch/dev/lxc/huntarr.sh)"
|
|
```
|
|
|
|
Install Huntarr in an existing container:
|
|
|
|
```bash
|
|
bash -c "$(curl -fsSL https://git.bila.li/Proxmox/proxmox-ve-install-scripts/raw/branch/dev/install/huntarr-install.sh)"
|
|
```
|
|
|
|
### Custom Options
|
|
|
|
You can customize the LXC creation with environment variables:
|
|
|
|
```bash
|
|
var_cpu=4 var_ram=4096 var_disk=16 HUNTARR_VERSION=6.2 bash -c "$(curl -fsSL https://git.bila.li/Proxmox/proxmox-ve-install-scripts/raw/branch/dev/lxc/huntarr.sh)"
|
|
```
|
|
|
|
#### Available Options:
|
|
|
|
- var_cpu: Number of CPU cores
|
|
- var_ram: RAM in MB
|
|
- var_disk: Disk size in GB
|
|
- var_os: Operating system (debian, ubuntu)
|
|
- var_version: OS version (12, 11, 22.04, etc.)
|
|
- HUNTARR_VERSION: Version of Huntarr to install
|