Dostęp do Koillection
- Otwórz w przeglądarce:
http://<SERVER_IP>(HTTP) - Utwórz swoje pierwsze konto użytkownika.
- Pierwsze konto automatycznie staje się administratorem.
Ważne pliki i katalogi
- Ścieżka instalacji:
/root/kiollection - Plik Compose:
/root/kiollection/docker-compose.yml - Plik środowiskowy:
/root/kiollection/.env - Katalog przesyłania:
/root/kiollection/volumes/koillection/uploads - Dane PostgreSQL:
/root/kiollection/volumes/postgresql
Zarządzanie stosem
# 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