Published images
Open Wearables publishes two production images to Docker Hub:
Images are published manually through a GitHub Actions workflow. Every publish pushes a short commit SHA tag (
sha-<commit>); runs from main also update latest. Pin a SHA tag in deployments to get repeatable builds.
The single backend image covers every backend role. The start command selects what the container runs:
What a deployment runs
A typical deployment consists of the application containers plus their backing services:app- the API, from the backend imagecelery-worker- background jobs, from the backend imagecelery-beat- schedules recurring syncs, from the backend imagefrontend- the web UI, from the frontend image- PostgreSQL - primary database
- Redis - Celery broker and cache
flower(optional) - Celery monitoring, from the backend imagesvix-server(optional) - only needed when outgoing webhooks are enabled; requires its ownsvixdatabase
backend/config/.env.example documents them. The frontend takes its API URL at runtime as well (see below). Neither image needs a per-environment rebuild.
Example: Compose deployment
A baseline Compose stack using the published images. It uses thelatest tag to stay copy-pasteable; pin sha-<commit> tags for real deployments.
docker-compose.yml
Configuration
Copybackend/config/.env.example from the repository to .env next to the compose file. Compose reads the same file for variable interpolation, so DB_PASSWORD is defined once and shared by Postgres and the backend.
The defaults in .env.example are development values. Override at least these for production:
VITE_API_URL is a frontend variable and is not part of .env.example—add it to the same .env. For a local trial of this stack, set it to http://localhost:8000; in production it is typically the same value as API_BASE_URL.
Running it
1
Pull the images
2
Start the stack
app container applies database migrations and seed scripts before the API starts.3
Check service status
Up, with db as Up (healthy).4
Verify the API and frontend
OK once the API is up (migrations can take a moment on first start). Then open http://localhost:3000 in a browser—the login page should load.command: scripts/start/flower.sh and publish port 5555. To enable outgoing webhooks, add a svix-server service and a svix database; the development docker-compose.yml shows the wiring.
Configuring the frontend API URL at runtime
The frontend resolves its API URL at runtime, so the same published image works against any backend without rebuilding. SetVITE_API_URL as an environment variable on the frontend container. The Nitro server reads it at request time and injects it into the served HTML before the app loads:
VITE_API_URL is not set, it falls back to http://localhost:8000.
VITE_API_URL is a single variable used for both build-time (Vite inlines import.meta.env) and runtime configuration. When the same variable is set both in an .env file and via the container’s environment:, the container environment wins—so runtime always overrides any baked-in value.How it works
Because the frontend is server-rendered (TanStack Start on Nitro), the value travels from the container env to the browser like this:- The Nitro server reads
process.env.VITE_API_URLat request time. - It injects
window.__APP_CONFIG__ = { apiUrl: "..." }into the HTML<head>before the app hydrates. - The API client reads that value. (Resolution order: injected runtime value →
VITE_API_URLbaked at build →http://localhost:8000.)
frontend/src/lib/api/runtime-config.ts.
Related Guides
- Deploy to Railway — One-click managed deployment
- Raw Payloads Storage — Backend runtime configuration example

