Outils pour utilisateurs

Outils du site


software:applications:organizr

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Prochaine révision
Révision précédente
software:applications:organizr [2021/02/06 19:32] – créée 77.192.232.26software:applications:organizr [2021/06/14 10:52] (Version actuelle) 92.154.112.189
Ligne 16: Ligne 16:
 docker run --rm --name=organizr --detach  \ docker run --rm --name=organizr --detach  \
   -v $(pwd):/config   -e PGID=1000 -e PUID=1000 \   -v $(pwd):/config   -e PGID=1000 -e PUID=1000 \
-  -p 8081:80   -e fpm="false"   -e branch="v2-master"+  -p 8081:80   -e fpm="false" organizr/organizr
-  organizr/organiz+
 </code> </code>
  
Ligne 28: Ligne 27:
  
 Le fichier docker-compose ci-dessous propose de créer un service et un volume Le fichier docker-compose ci-dessous propose de créer un service et un volume
-<code bash>+<file yaml docker-compose.yml> 
 +version: "3.3"
  
-</code>+services: 
 +  organizr: 
 +    image: "organizr/organizr" 
 +    container_name: "organizr" 
 +    restart: always 
 +    environment: 
 +      - PGID=1000 
 +      - PUID=1000 
 +      - fpm="false" 
 +    networks: 
 +      - http_loadbalancing_default 
 +    expose: 
 +      - 80 
 +    volumes: 
 +      - type: volume 
 +        source: organizr_datavol 
 +        target: /config 
 +    labels: 
 +      - "traefik.http.routers.organizr.rule=Host(`organizr.localhost`)" 
 +      - "traefik.http.services.ornganizr.loadbalancer.server.port=80" 
 +      - "traefik.http.routers.organizr.entrypoints=http" 
 +      - "traefik.docker.network=http_loadbalancing_default" 
 +     
 +volumes: 
 +  organizr_datavol: 
 + 
 +networks: 
 +  http_loadbalancing_default: 
 +    external: 
 +      name: http_loadbalancing_default 
 +</file> 
 + 
 +===== Configuration et stockage ===== 
 + 
 +Lors de l'installation le nom du fichier de base de données (format SQLite3) est renseigné par l'administrateur. 
 + 
 +<note warning> 
 +Utiliser un mot de passe d'administration spécifique au service. Le fichier de configuration **/config/www/organizr/api/config/config.php** conserve cette valeur en clair via la clé **'organizrHash'**. 
 +</note> 
 + 
 +===== Démarrage ===== 
 + 
 +Via le compte d'administration: 
 +  * Déclarer un onglet par service web. Un onglet pour être visible doit être activé et associé au groupe de l'utilisateur. 
 +  * Les onglets peuvent être regroupés par Catégories. 
 + 
 +===== Ajouter des icônes de services ===== 
 + 
 +Quelle que soit la dimension, les images doivent avoir même longueur et largeur.
  
 +Depuis un compte d'administration:
 +  * Onglet Settings
 +  * Gestionnaire d'images
 +  * 
 ===== Références ===== ===== Références =====
  
   * https://docs.organizr.app/shelves/organizr-docs   * https://docs.organizr.app/shelves/organizr-docs
 +  * https://registry.hub.docker.com/r/organizr/organizr
software/applications/organizr.1612639956.txt.gz · Dernière modification : 2021/02/06 19:32 de 77.192.232.26