Skip to main content

Running Ressonance Self-Hosted as Docker Containers

To run Ressonance as a Docker container, run:

docker pull ressonancia/ressonance

docker run -it --rm \
-p 80:80 \
-p 8000:8000 \
-p 8080:8080 \
ressonancia/ressonance

This exposes the Ressonance dashboard on port 80.

Docker Compose

services:
ressonance:
image: ressonancia/ressonance
restart: always
ports:
- "80:80"
- "8000:8000"
- "8080:8080"

Accessing the container

The container exposes three ports:

PortServiceDescription
80DashboardWeb interface for managing the platform
8000Dashboard APIAPI used by the dashboard
8080WebSocket APIWebSocket endpoint for real-time events. Use this URL in your environment variables.

The experience should be very similar to Ressonance Cloud.