Ajout d'une variable pour choisir la version de roundcube
This commit is contained in:
parent
c3ccc9122e
commit
685fe83241
2 changed files with 3 additions and 1 deletions
|
@ -12,6 +12,7 @@ Fournir les variables suivantes. Par exemple :
|
|||
|
||||
```yaml
|
||||
docker_roundcube_fqdn: roundcube.libretic.fr
|
||||
docker_roundcube_version: 1.5.2-apache
|
||||
docker_roundcube_data_dir: /data1
|
||||
docker_roundcube_service_id: roundcube
|
||||
docker_roundcube_db_name: roundcube
|
||||
|
@ -38,6 +39,7 @@ docker_roundcube_oauth_login_redirect: "true"
|
|||
| Option | Valeur par défaut | Description |
|
||||
|----------------------------------------------|-------------------|-------------------------------------------------------------------------------------------------------------------------|
|
||||
| docker_roundcube_fqdn | | Le nom de domaine pour lequel le service roundcube répond |
|
||||
| docker_roundcube_version | | Version de l'image docker pour roundcube |
|
||||
| docker_roundcube_data_dir | | L'emplacement dans lequel se trouvent les volumes de donnees docker pour le service |
|
||||
| docker_roundcube_service_id | | Le nom de service souhaité : conditionne le nommage des volumes et le routage par traefik |
|
||||
| docker_roundcube_db_name | | Nom de la base de données postgres pour roundcube |
|
||||
|
|
|
@ -3,7 +3,7 @@ version: '3.3'
|
|||
|
||||
services:
|
||||
roundcubemail:
|
||||
image: roundcube/roundcubemail:1.5.2-apache
|
||||
image: roundcube/roundcubemail:{{ docker_roundcube_version }}
|
||||
restart: always
|
||||
depends_on:
|
||||
- roundcubedb
|
||||
|
|
Loading…
Reference in a new issue