Truy cập Koillection
- Mở trong trình duyệt:
http://<SERVER_IP>(HTTP) - Tạo tài khoản người dùng ban đầu của bạn.
- Tài khoản đầu tiên tự động trở thành quản trị viên.
File và thư mục quan trọng
- Đường dẫn cài đặt:
/root/kiollection - Tệp Compose:
/root/kiollection/docker-compose.yml - Tệp môi trường:
/root/kiollection/.env - Thư mục tải lên:
/root/kiollection/volumes/koillection/uploads - Dữ liệu PostgreSQL:
/root/kiollection/volumes/postgresql
Quản lý 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