add pairgoth and containers
This commit is contained in:
17
scripts/15_pairgoth.sh
Normal file
17
scripts/15_pairgoth.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
cd ..
|
||||
cp files/my-pairgoth.service /etc/systemd/system/my-pairgoth.service
|
||||
|
||||
|
||||
cd /root
|
||||
wget https://git.petrovv.com/nikola/pairgoth/releases/download/current/pairgoth.tar.gz
|
||||
tar -xzf pairgoth.tar.gz
|
||||
rm pairgoth.tar.gz
|
||||
cd pairgoth
|
||||
./get_java.sh
|
||||
rm OpenJDK11U-jre_x64_linux_hotspot_11.0.28_6.tar.gz
|
||||
|
||||
systemctl daemon-reload
|
||||
systemctl enable my-pairgoth
|
||||
systemctl start my-pairgoth
|
||||
|
8
scripts/20_containers.sh
Normal file
8
scripts/20_containers.sh
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
podman pull docker.io/erikvl87/languagetool:latest
|
||||
podman run --restart=always -d -p 8010:8010 -e Java_Xms=512m -e Java_Xmx=2g --name languagetool-cont docker.io/erikvl87/languagetool
|
||||
|
||||
mkdir /root/vaultwarden/
|
||||
podman pull docker.io/vaultwarden/server:latest
|
||||
podman run -d --restart=always -e SIGNUPS_ALLOWED=false -v /root/vaultwarden/:/data/ -p 6080:80 --name vaultwarden-cont vaultwarden/server:latest
|
||||
|
Reference in New Issue
Block a user