Peekaping 접속
- 브라우저에서 열기:
http://<SERVER_IP>:8383 - 가입하고 관리자 계정을 만드세요.
- 처음 생성된 계정이 관리자가 됩니다.
중요한 파일 및 디렉토리
- 설치 경로:
/root/peekaping - Compose 파일:
/root/peekaping/docker-compose.yml - 데이터 디렉터리:
/root/peekaping/.data
스택 관리
# Go to installation directory (where docker-compose.yml is located)
cd /root/peekaping
# 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