Koillection へのアクセス
- ブラウザで開く:
http://<SERVER_IP>(HTTP) - 最初のユーザーアカウントを作成してください。
- 最初のアカウントは自動的に管理者になります。
重要なファイルとディレクトリ
- インストールパス:
/root/kiollection - Compose ファイル:
/root/kiollection/docker-compose.yml - 環境ファイル:
/root/kiollection/.env - アップロードディレクトリ:
/root/kiollection/volumes/koillection/uploads - PostgreSQL データ:
/root/kiollection/volumes/postgresql
スタックの管理
# 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