การเข้าถึง Koillection
- เปิดใน browser:
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
การจัดการ 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