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