Monitor your API and website with an open-source, self-hosted tool that alerts you to performance issues and downtime before users are affected. Keep your customers informed and build trust by sharing your service status publicly.
Key features include:
services:
upstat:
image: chamanbravo/upstat:latest
container_name: upstat
ports:
- "3000:3000"
environment:
- DATABASE_URL=${DATABASE_URL}
- NEXTAUTH_SECRET=${NEXTAUTH_SECRET}
depends_on:
- db
restart: unless-stopped
db:
image: postgres:15-alpine
container_name: upstat_db
environment:
- POSTGRES_USER=${POSTGRES_USER}
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
- POSTGRES_DB=${POSTGRES_DB}
volumes:
- ./postgres-data:/var/lib/postgresql/data
restart: unless-stoppedDATABASE_URL=postgresql://upstat:your_super_secret_password@db:5432/upstat?schema=public
NEXTAUTH_SECRET=your_super_secret_nextauth_key
POSTGRES_USER=upstat
POSTGRES_PASSWORD=your_super_secret_password
POSTGRES_DB=upstatAuto-fetched 3 minutes ago
Auto-fetched 3 minutes ago