parent
f7a1f003c4
commit
1f55fadcc7
17
README.MD
17
README.MD
|
@ -65,6 +65,7 @@ systemctl enable --now authelia
|
|||
#### element-web
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt install element-web
|
||||
|
||||
|
@ -82,7 +83,7 @@ systemctl restart apache2
|
|||
#### gotify
|
||||
|
||||
```bash
|
||||
apt install -y python wget ca-certificates
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y gotify-server
|
||||
|
@ -95,7 +96,7 @@ systemctl enable --now gotify
|
|||
#### grocy
|
||||
|
||||
```bash
|
||||
apt install -y python wget ca-certificates
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y grocy
|
||||
|
@ -114,7 +115,7 @@ systemctl restart apache2
|
|||
#### joplin
|
||||
|
||||
```bash
|
||||
apt install -y python wget ca-certificates
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
|
||||
apt-get install -y joplin
|
||||
|
@ -124,7 +125,7 @@ apt-get install -y joplin
|
|||
#### joplin-server
|
||||
|
||||
```bash
|
||||
apt install -y python wget ca-certificates
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
wget -qO - https://deb.nodesource.com/setup_16.x | bash
|
||||
apt-get update
|
||||
|
@ -137,7 +138,7 @@ systemctl enable --now joplin-server
|
|||
|
||||
#### mautrix-syncproxy and mautrix-wsproxy
|
||||
```bash
|
||||
apt install -y python wget ca-certificates
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y mautrix-syncproxy mautrix-wsproxy
|
||||
|
@ -149,12 +150,14 @@ systemctl enable --now mautrix-wsproxy mautrix-syncproxy
|
|||
#### metabase
|
||||
|
||||
```bash
|
||||
apt install -y python wget ca-certificates
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y metabase openjdk-17-jre
|
||||
|
||||
systemctl enable --now metabase
|
||||
|
||||
#configuration with http://<ip>:3000
|
||||
```
|
||||
|
||||
#### rss-bridge
|
||||
|
@ -197,6 +200,7 @@ systemctl restart apache2
|
|||
#### vaultwarden and vaultwarden-web
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt install vaultwarden vaultwarden-web
|
||||
|
||||
|
@ -208,6 +212,7 @@ systemctl enable --now vaultwarden
|
|||
#### wallabag
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt install wallabag
|
||||
|
||||
|
|
|
@ -3,16 +3,16 @@
|
|||
[ -e ./lib/function.sh ] && source ./lib/function.sh
|
||||
|
||||
APP=element-web
|
||||
VERSION=1.10.4
|
||||
VERSION=1.10.6
|
||||
GIT_VERSION=v$VERSION
|
||||
DEB_VERSION=$VERSION-1
|
||||
DEBIAN_VERSION_CODENAME=bullseye
|
||||
IMAGE_SIZE=
|
||||
IMAGE_SIZE=4
|
||||
|
||||
STEP="envinit prebuild build makedeb"
|
||||
|
||||
envinit() {
|
||||
apt install -y --no-install-recommends build-essential git python wget ca-certificates
|
||||
apt install -y --no-install-recommends build-essential git python wget ca-certificates dpkg fakeroot
|
||||
wget -qO - https://deb.nodesource.com/setup_16.x | bash
|
||||
wget -qO - https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor > /usr/share/keyrings/yarnkey.gpg
|
||||
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" > /etc/apt/sources.list.d/yarn.list
|
||||
|
|
|
@ -2,4 +2,4 @@
|
|||
|
||||
id metabase &> /dev/null || useradd metabase -r -s /bin/false -d /var/lib/metabase
|
||||
|
||||
chown -R www-data:www-data /var/lib/metabase
|
||||
chown -R metabase:metabase /var/lib/metabase
|
||||
|
|
|
@ -4,11 +4,11 @@ Description=metabase
|
|||
[Service]
|
||||
Type=exec
|
||||
User=metabase
|
||||
WorkingDirectory=/var/share/metabase
|
||||
WorkingDirectory=/var/lib/metabase
|
||||
ExecStart=/usr/bin/java -jar /usr/share/metabase/metabase.jar
|
||||
Restart=on-failure
|
||||
RestartSec=30s
|
||||
ReadWritePaths=/var/share/metabase
|
||||
ReadWritePaths=/var/lib/metabase
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
[ -e ./lib/function.sh ] && source ./lib/function.sh
|
||||
|
||||
APP=zigbee2mqtt
|
||||
VERSION=1.23.0
|
||||
VERSION=1.24.0
|
||||
GIT_VERSION=$VERSION
|
||||
DEB_VERSION=$VERSION-3
|
||||
DEBIAN_VERSION_CODENAME=bullseye
|
||||
|
|
Loading…
Reference in New Issue