deployment/docker-compose/README.md
docker composeOpik supports Docker Compose profiles to start different combinations of services for various development scenarios:
backend): Infrastructure (automatic) + Backend, Python Backend services etc.opik): The full Opik suite including all infrastructure and services, except for Guardrails servicesguardrails): Guardrails services, meant to be combined with other profiles. Guardrails are always optional by default, even for the full Opik suite, unless explicitly enabledopik-otel): The full Opik suite plus Jaeger and OpenTelemetry Collector for observabilityStart only infrastructure services (default behavior when no profile):
docker compose up -d
Start infrastructure + backend services:
docker compose --profile backend up -d
Start full Opik suite (all infrastructure and services, except guardrails):
docker compose --profile opik up -d
Start backend + guardrails:
docker compose --profile backend --profile guardrails up -d
Start full Opik suite + guardrails:
docker compose --profile opik --profile guardrails up -d
Start full Opik suite + OpenTelemetry:
docker compose --profile opik-otel up -d
Note: Infrastructure services (databases, caches, storage etc.) always start by default, as that's the expected behaviour for services with no profile, see Using profiles with Compose. Any profile such as Backend, full Opik suite etc. always automatically include the infrastructure.
docker compose using the imagesIf you want to use a specific version, set Opik version like:
export OPIK_VERSION=0.1.10
Otherwise, it will use the latest images.
Run docker compose from the root of the project:
cd deployment/docker-compose
# Optionally, you can force a pull of the latest images
docker compose --profile opik pull
docker compose -f docker-compose.yaml --profile opik up -d
docker compose with building application from latest codeFrom the root of the project:
cd deployment/docker-compose
# Optionally, you can force a pull of the latest images
docker compose --profile opik pull
# Build the images
docker compose -f docker-compose.yaml --profile opik up -d --build
# Alternatively, you can force a pull of the latest images and build the images
docker compose -f docker-compose.yaml --profile opik up -d --build --pull always
If you're a developer and need to expose the database and backend ports to your host machine for local testing or debugging, you can use the provided Docker Compose override file.
Run the following command to start the services and expose the ports:
# Optionally, you can force a pull of the latest images
docker compose --profile opik pull
docker compose -f docker-compose.yaml -f docker-compose.override.yaml --profile opik up -d
This will expose the following services to the host machine:
By default, Docker Compose binds exposed container ports to 0.0.0.0, making them accessible from any network interface on the host. To restrict access, specify a specific IP in the ports section, such as 127.0.0.1:8080:80, to limit exposure to the local machine.
This can be done in docker-compose.yaml file
frontend:
ports:
- "127.0.0.1:5173:5173" # Frontend server port
If port 5173 is already taken on your host (e.g. another Vite dev server or
local app you can't move), set NGINX_PORT before bringing the stack up:
# UI will be available at http://localhost:5293
NGINX_PORT=5293 ./opik.sh
NGINX_PORT is honored by the frontend container's port mapping, healthcheck,
nginx config, and the backend's internal reverse-proxy URL. Use
OPIK_PORT_OFFSET=N instead if you'd like to shift every Opik port (frontend,
backend, MySQL, Redis, etc.) by the same delta.
docker composenginx_default_local.conf replace:http://backend:8080
With your localhost.
For Mac/Windows (Docker Desktop):
http://host.docker.internal:8080
For Linux:
http://172.17.0.1:8080
docker compose including exposing ports to localhost:# Optionally, you can force a pull of the latest images
docker compose --profile opik pull
docker compose -f docker-compose.yaml -f docker-compose.override.yaml --profile opik up -d
Stop the backend container, because you don't need it.
You can run Opik with OpenTelemetry Collector and Jaeger to collect and visualize traces and logs.
docker compose --profile opik-otel up -d
This will start:
To enable Nginx OpenTelemetry tracing and ship access/error logs to the collector:
# Enable OpenTelemetry Tracing in Nginx
export OTEL_TRACE=on
# Configure Nginx to ship logs to OpenTelemetry Collector via Syslog
export NGINX_EXTRA_ACCESS_LOG="access_log syslog:server=otel-collector:5140 logger-json;"
export NGINX_EXTRA_ERROR_LOG="error_log syslog:server=otel-collector:5140 error;"
# Run with the profile
docker compose --profile opik-otel up -d
When enabled:
docker compose --profile opik down
# or if running with otel profile
docker compose --profile opik-otel down