use generic file name to store compilation instruction
Add GLPI (with github clone to patch install)
This commit is contained in:
parent
38ded86d9f
commit
853e9f431b
28 changed files with 170 additions and 50 deletions
35
README.MD
35
README.MD
|
@ -8,17 +8,17 @@ All package are install with chroot environnement.
|
|||
To create deb file you just need to run the bellow command :
|
||||
|
||||
```bash
|
||||
. ressources/joplin/joplin
|
||||
. ressources/<App name>/debmaker
|
||||
debmaker_run
|
||||
```
|
||||
This commande create joplin and joplin-server packages
|
||||
after execution, .deb file is generate in 'dist' folder
|
||||
|
||||
### Debug
|
||||
|
||||
To enter in temporary filesystem
|
||||
|
||||
```bash
|
||||
debmaker_chroot cache/joplin
|
||||
debmaker_chroot cache/<App name>
|
||||
```
|
||||
|
||||
### packages available in shared repository
|
||||
|
@ -27,6 +27,7 @@ debmaker_chroot cache/joplin
|
|||
- [authelia](#authelia) ([site](https://www.authelia.com/)) ([src](https://github.com/authelia/authelia))
|
||||
- [element-web](#element-web) ([site](https://element.io/)) ([src](https://github.com/vector-im/element-web))
|
||||
- [gitea](#gitea) ([site](https://gitea.io)) ([src](https://github.com/go-gitea/gitea/))
|
||||
- [glpi](#glpi) ([site](http://glpi-project.org/)) ([src](https://github.com/glpi-project/glpi))
|
||||
- [gotify](#gotify) ([site](https://gotify.net/)) ([src](https://github.com/gotify))
|
||||
- [grocy](#grocy) ([site](https://grocy.info/)) ([src](https://github.com/grocy/grocy))
|
||||
- [joplin desktop](#joplin) ([site](https://joplinapp.org/)) ([src](https://github.com/laurent22/joplin))
|
||||
|
@ -68,6 +69,7 @@ systemctl enable --now authelia
|
|||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install element-web
|
||||
|
||||
# sample configuration for apache2
|
||||
|
@ -92,8 +94,26 @@ apt-get install -y gitea
|
|||
systemctl enable --now gitea
|
||||
|
||||
#configuration with http://<ip>:3000
|
||||
|
||||
```
|
||||
|
||||
#### glpi
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install glpi libapache2-mod-php apache2 -y
|
||||
|
||||
gzip -dc /usr/share/doc/glpi/apache2-glpi.conf.gz > /etc/apache2/sites-available/glpi.conf
|
||||
|
||||
#edité le fichier de configuration apache
|
||||
nano /etc/apache2/sites-available/glpi.conf
|
||||
a2ensite glpi
|
||||
systemctl reload apache2
|
||||
|
||||
#configuration with http://<ip>
|
||||
```
|
||||
|
||||
#### gotify
|
||||
|
||||
```bash
|
||||
|
@ -131,7 +151,7 @@ systemctl restart apache2
|
|||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
|
||||
apt-get update
|
||||
apt-get install -y joplin
|
||||
|
||||
```
|
||||
|
@ -177,7 +197,9 @@ systemctl enable --now metabase
|
|||
#### rss-bridge
|
||||
|
||||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install rss-bridge
|
||||
|
||||
# sample configuration for apache2
|
||||
|
@ -216,6 +238,7 @@ systemctl restart apache2
|
|||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install vaultwarden vaultwarden-web
|
||||
|
||||
#Edit /etc/default/vaultwarden
|
||||
|
@ -228,6 +251,7 @@ systemctl enable --now vaultwarden
|
|||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt install wallabag
|
||||
|
||||
# sample configuration for apache2
|
||||
|
@ -246,6 +270,7 @@ systemctl restart apache2
|
|||
```bash
|
||||
apt install -y wget ca-certificates
|
||||
wget -qO - https://deb.lgy.fr/install.sh | bash
|
||||
apt-get update
|
||||
apt-get install -y zigbee2mqtt
|
||||
|
||||
#Edit /etc/zigbee2mqtt/configuration.yaml
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue