SigNoz
Docs
PricingCustomers
Get Started - Free
Docs
IntroductionContributingMigrate from DatadogSigNoz API
OpenTelemetry
What is OpenTelemetryOpenTelemetry Collector GuideOpenTelemetry Demo
Community
Support
Slack
X
Launch Week
Changelog
Dashboard Templates
DevOps Wordle
Newsletter
KubeCon, Atlanta 2025
More
SigNoz vs DatadogSigNoz vs New RelicSigNoz vs GrafanaSigNoz vs Dynatrace
Careers
AboutTermsPrivacySecurity & Compliance
SigNoz Logo
SigNoz
All systems operational
HIPAASOC-2
Self-Host - This page applies to self-hosted SigNoz editions.

Docker SELinux

Choose SigNoz Cloud for ease, or self-host for controlโ€”with the freedom to switch as your needs grow.

Prerequisites

  • A SELinux enabled sytem.
  • Git client
  • Ensure that the ports 8080, 4317 and 4318 are open on the machine where you install SigNoz.

Running Docker in SElinux

When running SigNoz with Docker on SELinux-enabled hosts, you need to apply an SELinux label to bind-mount volumes by appending either :z or :Z to the volume suffix.

For example:

docker run -d \
  --name signoz \
  -p 3301:3301 \
  -v "$(pwd)"/signoz-data:/data:z \
  signoz/signoz:latest

Or, in a Docker Compose file:

version: '3.7'
services:
  signoz:
    image: signoz/signoz:latest
    container_name: signoz
    ports:
      - "3301:3301"
    volumes:
      - ./signoz-data:/data:Z

References:

  • Configure the SELinux label
  • Using Docker volumes on SELinux enabled servers

These are the some of the services for which you need to add labels in the docker-compose file:

  • clickhouse
  • signoz
  • zookeeper

Install SigNoz

Please Follow the docs for installing Signoz in docker or docker swarm

  • Docker Swarm
  • Docker Compose

Related Topics

  • Troubleshoot SigNoz Installation Issues

Next Steps

  • Collect Telemetry from your Docker Clusters
  • Instrument Your Application
  • Tutorials

Last updated: May 6, 2025

Edit on GitHub

Was this page helpful?

Your response helps us improve this page.

Prev
Docker Swarm
Next
General FAQs
On this page
Prerequisites
Running Docker in SElinux
Install SigNoz
Related Topics
Next Steps

Is this page helpful?

Your response helps us improve this page.