Skip to content

Quickstart

This page shows how to quickly set up Overwatch dashboard.

Docker Compose

The following is an example of a docker-compose.yaml file that can be used to quickly set up the Overwatch dashboard.
You just need to adjust the BACKEND_URL environment variable to point to your backend service.

yaml
services:
  overwatch-frontend:
    container_name: overwatch-frontend
    image: ghcr.io/facegrinder/overwatch:frontend_v1.1.0
    ports:
      - 3000:3000
    environment:
      - BACKEND_URL=http://192.168.1.123:8080

  overwatch-backend:
    container_name: overwatch-backend
    image: ghcr.io/facegrinder/overwatch:backend_v1.1.0
    ports:
      - 8080:8080
    volumes:
      - ./config:/app/config

Make it simple, but significant