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