访问 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