Zugriff auf Koillection
- Im Browser öffnen:
http://<SERVER_IP>(HTTP) - Erstellen Sie Ihr erstes Benutzerkonto.
- Das erste Konto wird automatisch zum Administrator.
Wichtige Dateien und Verzeichnisse
- Installationspfad:
/root/kiollection - Compose-Datei:
/root/kiollection/docker-compose.yml - Umgebungsdatei:
/root/kiollection/.env - Upload-Verzeichnis:
/root/kiollection/volumes/koillection/uploads - PostgreSQL-Daten:
/root/kiollection/volumes/postgresql
Den Stack verwalten
# 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