2023-11-02 17:32:25 +01:00
|
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
```
|
2023-11-03 16:48:10 +01:00
|
|
|
|
ubuntu_version='22.04'
|
|
|
|
|
key_url="https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_${ubuntu_version}/Release.key"
|
|
|
|
|
sources_url="https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/unstable/xUbuntu_${ubuntu_version}"
|
|
|
|
|
|
|
|
|
|
echo "deb $sources_url/ /" | tee /etc/apt/sources.list.d/devel:kubic:libcontainers:unstable.list
|
|
|
|
|
curl -fsSL $key_url | gpg --dearmor | tee /etc/apt/trusted.gpg.d/devel_kubic_libcontainers_unstable.gpg > /dev/null
|
|
|
|
|
apt update
|
|
|
|
|
apt install podman podman-docker podman-plugins containernetworking-plugin
|
|
|
|
|
|
|
|
|
|
apt install python3-pip
|
|
|
|
|
pip3 install podman-compose==1.0.2
|
2023-11-02 17:32:25 +01:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
2023-11-03 16:48:10 +01:00
|
|
|
|
|
2023-11-02 17:32:25 +01:00
|
|
|
|
## 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
|
|
|
|
|
|
|
|
|
|
|