Quick Start
Get Ops Atlas running in under 5 minutes.
Prerequisites
- Docker 20.10+ and Docker Compose 2.0+
- 2GB RAM minimum
- Port 3000 available
Step 1: Start Ops Atlas
bash
# Create a directory
mkdir ops-atlas && cd ops-atlas
# Download docker-compose.yml
curl -o docker-compose.yml https://raw.githubusercontent.com/ops-atlas/ops-atlas/main/docker-compose.yml
# Start services
docker-compose up -dStep 2: Access the Dashboard
Open http://localhost:3000 in your browser.
Default credentials:
- Username:
admin - Password:
admin
WARNING
Change the default password immediately after first login!
Step 3: Connect Your First Service
- Click Services → Add Service
- Choose connection type:
- Docker: Auto-discover containers
- HTTP: Monitor any HTTP endpoint
- TCP: Check port availability
- Configure health checks
- Save
Step 4: Set Up Alerts (Optional)
- Go to Settings → Integrations
- Connect Slack or Discord
- Create alert rules in Alerts → Rules
What's Next?
- Configuration Guide — Environment variables
- Monitoring Setup — Metrics and dashboards
- Deployment Guide — CI/CD integration
- Production Setup — Secure deployment
Troubleshooting
Container won't start?
bash
# Check logs
docker-compose logs -f ops-atlas
# Verify ports
docker-compose psCan't access dashboard?
- Verify port 3000 is not in use:
lsof -i :3000 - Check Docker network:
docker network ls - Try
http://127.0.0.1:3000instead of localhost