Docker Installation and Usage

June 2, 2026 · View on GitHub

Pre-built production images are published to GitHub Container Registry on every push to master.

docker run --pull always -it -p 6080:6080 -p 5900:5900 -v openoutreach_db:/app/data ghcr.io/eracle/openoutreach:latest

Watch the live browser (and clear any LinkedIn checkpoint) at http://localhost:6080/vnc.html.

The interactive onboarding will guide you through LinkedIn credentials, LLM API key, and campaign setup on first run. All data (CRM database, cookies, model blobs, embeddings) persists in the openoutreach_db Docker volume.

Available Tags

TagDescription
latestLatest build from master
sha-<commit>Pinned to a specific commit
1.0.0 / 1.0Semantic version (when tagged)

Live Browser View (noVNC)

The container ships a noVNC web viewer for watching the automation live — and for clearing a LinkedIn security checkpoint by hand when one appears. Open it in any browser (no password):

http://localhost:6080/vnc.html

Prefer a native VNC client? One is also exposed on localhost:5900. On Linux with vinagre:

vinagre vnc://127.0.0.1:5900

Both ports must be published for the viewers to work — see the -p 6080:6080 -p 5900:5900 flags in the run command below.

Stopping & Restarting

# Find the container
docker ps

# Stop it
docker stop <container-id>

# Restart (data persists in the openoutreach_db volume)
docker run --pull always -it -p 6080:6080 -p 5900:5900 -v openoutreach_db:/app/data ghcr.io/eracle/openoutreach:latest

Build from Source (Docker Compose)

For development or customization, you can build the image locally. The compose file (local.yml) mounts the entire project directory into the container for live code editing.

Prerequisites

Build & Run

git clone https://github.com/eracle/OpenOutreach.git
cd OpenOutreach

# Build and start
make up

This builds the Docker image from source with BUILD_ENV=local (includes test dependencies) and starts the daemon.

Note: The compose file uses HOST_UID / HOST_GID environment variables (defaulting to 1000) for file ownership. If your host UID differs from 1000, set them explicitly:

HOST_UID=$(id -u) HOST_GID=$(id -g) make up

Useful Commands

CommandDescription
make buildBuild the Docker image without starting
make upBuild and start the service
make stopStop the running containers
make logsFollow application logs
make up-viewStart + open VNC viewer (Linux, requires vinagre)
make viewOpen VNC viewer standalone (requires vinagre)
make docker-testRun the test suite in Docker

VNC with Docker Compose

The live browser view is exposed two ways: the noVNC web viewer at http://localhost:6080/vnc.html (open in any browser), or the native VNC port localhost:5900. Use make up-view to auto-open the native viewer, or connect manually with any VNC client.

Volume Mounts

The pre-built docker run command uses a named Docker volume (openoutreach_db) mounted at /app/data for data persistence (database, config). The compose setup (local.yml) mounts the entire repo .:/app for live code editing during development.