rebase
This commit is contained in:
parent
29730c28f2
commit
963233ff83
|
@ -0,0 +1,41 @@
|
|||
|
||||
# Installation sur une eolebase
|
||||
|
||||
## Installer eole-web
|
||||
apt-get install eole-web
|
||||
Genconfig
|
||||
Services > Activer l'interface web de l'EAD = non
|
||||
Services > Activer le serveur de bases de données MySQL = non
|
||||
Services > Activer l’interface d’administration du module (EAD3) = non
|
||||
Applications Web > Nom de domaine des applications web = mondomaine.fr
|
||||
save & quit
|
||||
Reconfigure
|
||||
|
||||
## Installation git / make / docker / docker-compose
|
||||
```
|
||||
sudo apt install git make eole-web apt-transport-https ca-certificates curl gnupg-agent software-properties-common
|
||||
sudo mkdir -p /etc/apt/keyrings
|
||||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg
|
||||
echo \
|
||||
"deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.gpg] https://download.docker.com/linux/ubuntu \
|
||||
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
sudo apt update
|
||||
apt-get install docker-ce docker-ce-cli containerd.io docker-compose-plugin docker-compose
|
||||
```
|
||||
|
||||
|
||||
sudo apt install python3-pip -y
|
||||
pip3 install podman-compose
|
||||
## Installation envole
|
||||
```
|
||||
cd /root
|
||||
mkdir git
|
||||
cd /root/git
|
||||
git clone https://forge.cadoles.com/Envole/envole.git
|
||||
cd /root/git/envole
|
||||
make install
|
||||
```
|
||||
|
||||
## Configurer Envole
|
||||
|
||||
|
|
@ -3,10 +3,16 @@
|
|||
#1 : action = default up
|
||||
#2 : service = optionnel
|
||||
|
||||
# Fusionner l'ensemble des fichier .env en un seul
|
||||
rm -f ./.env.local
|
||||
cat ./env/.env* >> ./.env.local
|
||||
|
||||
# Include
|
||||
. ./misc/tools/e-ihm.sh
|
||||
. ./env/.env
|
||||
. ./env/.env.local
|
||||
|
||||
# Start script
|
||||
clear
|
||||
BigTitle "ENVOLE"
|
||||
|
||||
|
@ -58,9 +64,7 @@ up(){
|
|||
# Stop du ou des services
|
||||
stop $1
|
||||
|
||||
# Fusionner l'ensemble des fichier .env en un seul
|
||||
rm -f ./.env.local
|
||||
cat ./env/.env* >> ./.env.local
|
||||
|
||||
|
||||
# MARIADB
|
||||
Title "MARIADB"
|
||||
|
|
Loading…
Reference in New Issue