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