Accès à Koillection
- Ouvrir dans le navigateur :
http://<SERVER_IP>(HTTP) - Créez votre compte utilisateur initial.
- Le premier compte devient automatiquement administrateur.
Fichiers et répertoires importants
- Chemin d'installation :
/root/kiollection - Fichier Compose :
/root/kiollection/docker-compose.yml - Fichier d'environnement :
/root/kiollection/.env - Répertoire d'envoi :
/root/kiollection/volumes/koillection/uploads - Données PostgreSQL :
/root/kiollection/volumes/postgresql
Gestion de la stack
# Go to installation directory (where docker-compose.yml is located)
cd /root/koillection
# Show running containers and their status
docker compose ps
# View live logs (useful for debugging issues)
docker compose logs -f
# Restart all services without recreating containers
docker compose restart
# Stop and remove containers (data volumes remain unless explicitly removed)
docker compose down
# Start services in detached mode (background)
docker compose up -d