-
Notifications
You must be signed in to change notification settings - Fork 183
Quick Start EN
likaia edited this page Feb 26, 2026
·
3 revisions
This is the shortest path to a working setup.
docker run -d --name nginxpulse \
-p 8088:8088 -p 8089:8089 \
-v /path/to/logs/:/share/logs:ro \
-v /path/to/nginxpulse_data:/app/var/nginxpulse_data \
-v /path/to/pgdata:/app/var/pgdata \
-v /path/to/configs:/app/configs \
-v /etc/localtime:/etc/localtime:ro \
magiccoders/nginxpulse:latestIf logs are mounted but data is empty, it is usually a permission issue. See "Docker Deployment Permissions" in the Deployment guide and align PUID/PGID with the host UID/GID.
Open:
- UI:
http://localhost:8088 - API:
http://localhost:8089
-
/path/to/logs: Host directory that stores your log files. -
/path/to/nginxpulse_data: Persistent runtime data generated by the container. -
/path/to/pgdata: PostgreSQL data directory (not required when using an external database). -
/path/to/configs: Persistent configuration generated via the UI.
Prerequisite: PostgreSQL must be installed and running.
- Update
configs/nginxpulse_config.json:
"database": {
"driver": "postgres",
"dsn": "postgres://nginxpulse:nginxpulse@127.0.0.1:5432/nginxpulse?sslmode=disable"
}- Start the server (example):
./nginxpulseVersion > 1.5.3 requires PostgreSQL (SQLite is removed).
Logs are parsed in system timezone. Ensure host timezone is correct.
- Home
- 快速开始
- 部署方式
- SQLite -> PostgreSQL 迁移
- 配置说明
- 完整字段参考
- 日志来源配置
- 支持的日志格式
- Agent 采集
- 日志解析机制
- IP 归属地解析
- 数据库结构
- 常见问题
- Home (EN)
- Quick Start (EN)
- Deployment (EN)
- Migration (EN)
- Configuration (EN)
- Config Reference (EN)
- Log Sources (EN)
- Supported Log Formats (EN)
- Agent Collection (EN)
- Log Parsing (EN)
- IP Geo (EN)
- Database Schema (EN)
- FAQ (EN)