Go to file
thomas 590209a9ba Update readme for roundcubemail 2022-08-13 23:53:42 +02:00
lib New version authelia bitwarden-desktop element-web joplin-desktop vaultwarden vaultwarden-web 2022-08-12 23:00:22 +02:00
ressources Update readme for roundcubemail 2022-08-13 23:53:42 +02:00
.gitignore metabase add /etc/default/metabase 2022-03-24 02:48:03 +01:00
README.MD Update readme for roundcubemail 2022-08-13 23:53:42 +02:00
debmaker authelia version update 2022-03-28 22:42:52 +02:00

README.MD

DEBMAKER

The main goal of this project is allow to create application from source without install compilation utility directly on the main system. Compilation environnements are stores in temporary files. All package are install with chroot environnement.

Currently debian packages are build, but other package can be build with this ways

Objectives :

  • Create lowest debian lxc contener to limit backup size
  • Easily upgrade application

Usage

List app

To list all applications with debmaker script

./debmaker list

Create deb file

To create deb file you just need to run the bellow command :

./debmaker run <app>

after execution, .deb file is generate in 'dist' folder

Edit debmaker script

./debmaker edit <app>

Debug

To enter in temporary filesystem

./debmaker chroot <app>

packages available in shared repository

adguardhome

apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y adguardhome

systemctl enable --now adguardhome

#configuration with http://<ip>:3000

authelia

apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y authelia

#Edit /etc/authelia/configuration.yml

systemctl enable --now authelia

bitwarden-desktop

apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y bitwarden-desktop

element-web

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

cp /usr/share/doc/element-web/apache2-element-web.conf /etc/apache2/sites-available/element-web.conf
a2ensite element-web

# edit /etc/apache2/sites-available/element-web.conf
# edit /etc/element-web/config.json

systemctl restart apache2

flame

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
apt-get install -y flame

#Edit /etc/default/flame and change SECRET and PASSWORD

systemctl enable --now flame

gitea

apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y gitea

systemctl enable --now gitea

#configuration with http://<ip>:3000

glpi

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

apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y gotify-server

#Edit /etc/gotify/config.yml

systemctl enable --now gotify

grocy

apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y grocy

#Edit /etc/grocy/config.php

# sample configuration for apache2 + php fpm
apt install apache2 php-fpm
a2enmod proxy_fcgi setenvif rewrite
a2enconf php8.1-fpm
cp /usr/share/doc/grocy/apache2-grocy.conf /etc/apache2/sites-available/grocy.conf
a2ensite grocy
systemctl restart apache2

joplin

apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y joplin

joplin-server

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
apt-get install -y joplin-server 

#Edit /etc/default/joplin-server

systemctl enable --now joplin-server

mautrix-syncproxy and mautrix-wsproxy

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

#Edit /etc/mautrix-wsproxy.yaml and /etc/default/mautrix-syncproxy

systemctl enable --now mautrix-wsproxy mautrix-syncproxy

mautrix-whatsapp

apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y mautrix-whatsapp

#see https://docs.mau.fi/bridges/go/whatsapp/setup/index.html#configuring-and-running

systemctl enable --now mautrix-whatsapp

metabase

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

roundcubemail

apt install -y wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt install roundcubemail

# sample configuration for apache2 + vhost

cp /usr/share/doc/roundcubemail/apache2-roundcubemail.conf /etc/apache2/sites-available/roundcubemail.conf
a2ensite roundcubemail

# edit /etc/apache2/sites-available/roundcubemail.conf
# edit /etc/roundcubemail/config.inc.php

systemctl restart apache2

rss-bridge

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

apt install libapache2-mod-php
cp /usr/share/doc/rss-bridge/apache2-rss-bridge.conf /etc/apache2/site-available/rss-bridge.conf
a2ensite rss-bridge

# edit /etc/apache2/site-available/rss-bridge.conf

systemctl restart apache2

rustdesk-server

apt install -y  wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update

#On Rendez-vous server
apt-get install -y rustdesk-server-hbbs
# edit /etc/default/hbbs
systemctl enable --now hbbs

#On Relay server
apt-get install -y rustdesk-server-hbbr
# edit /etc/default/hbbr
systemctl enable --now hbbr

tt-rss

apt install -y  wget ca-certificates
wget -qO - https://deb.lgy.fr/install.sh | bash
apt-get update
apt-get install -y tt-rss

#Edit /etc/tt-rss/config.php
systemctl enable --now tt-rss

# sample configuration for apache2 + php fpm
apt install apache2 php-fpm
a2enmod proxy_fcgi setenvif 
a2enconf php7.4-fpm
cp /usr/share/doc/tt-rss/apache2-tt-rss.conf /etc/apache2/sites-available/tt-rss.conf
#edit /etc/apache2/sites-available/tt-rss.conf
a2ensite tt-rss
systemctl restart apache2

vaultwarden and vaultwarden-web

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

systemctl enable --now vaultwarden

wallabag

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

apt install libapache2-mod-php
cp /usr/share/doc/wallabag/apache2-wallabag.conf /etc/apache2/site-available/wallabag.conf
a2ensite wallabag

# edit /etc/apache2/site-available/wallabag.conf

systemctl restart apache2

zigbee2mqtt

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

systemctl enable --now zigbee2mqtt