Back to Apps
Bugsink

Deploy Bugsink on Your Own Server

Bugsink is a self-hosted error tracker. Full control over your data. Compatible with Sentry SDKs, easy to set up, scalable & reliable

πŸ“¦ Other

Want to deploy Bugsink on your server faster? Try Senate with one-command setup, automatic HTTPS and monitoring.

Get Started

What is Bugsink?

Bugsink offers Error Tracking for your applications with full control through self-hosting: * Built to self-host * Sentry-SDK compatible * Scalable and reliable Documentation: https://www.bugsink.com/docs/

Self-Host Bugsink

Follow these steps to deploy on your own server.

1

Install Docker

Skip this step if Docker is already installed on your server.

curl -fsSL https://get.docker.com | sh
2

Configure

Customize the settings below. Defaults work for most cases.

General
Database
3

Deploy

Copy the configuration and run it on your server.

services:
  bugsink:
    image: bugsink/bugsink:1.7.4
    environment:
      BASE_URL: https://bugsink.your-domain.com/
      BEHIND_HTTPS_PROXY: "true"
      CREATE_SUPERUSER: admin:c47c1deb79d5110a
      DATABASE_URL: mysql://root:aa8073dccecc780d@bugsink-mysql:3306/bugsink
      PORT: "8000"
      SECRET_KEY: ff82d58ea7f3b7403fa9c33102791c04fec386144721dd40de
    ports:
      - 8000:8000
    depends_on:
      - mysql
  bugsink-mysql:
    image: mysql:8.4.4
    environment:
      MYSQL_DATABASE: bugsink
      MYSQL_ROOT_PASSWORD: aa8073dccecc780d
    volumes:
      - bugsink-mysql-data:/var/lib/mysql
volumes:
  bugsink-mysql-data: {}

Then run:

docker compose up -d
4

Access

Once started, access your app at http://localhost:8000

Why Self-Host Bugsink?

Full Data Ownership

Your data stays on your servers. No third-party access.

No Monthly Fees

Pay only for your server. No per-seat or usage charges.

Complete Control

Customize, backup, and scale on your own terms.

Privacy & Compliance

Meet GDPR, HIPAA, or internal security requirements.

Technical Details

Docker Image

bugsink/bugsink:${BUGSINK_VERSION}

Want to go faster?

Try Senate! Senate handles Docker, HTTPS, updates, and monitoring for you. Deploy any of our 300+ apps with a single command.

Install on any Linux server:

sh -c "$(curl -sSL https://get.senate.sh)"