39 lines
1.2 KiB
Markdown
39 lines
1.2 KiB
Markdown
|
|
|||
|
# 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
|
|||
|
```
|
|||
|
|
|||
|
## 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
|
|||
|
|
|||
|
|