1.5.1 Install Docker Image

Orbnetes deployment and release orchestration documentation for operators and platform teams.

This page covers the fastest way to start Orbnetes locally using Docker.

Prerequisites

  • Docker Engine 24+ installed and running.
  • A reachable MySQL/MariaDB database.
  • Open port for the web app (example: 8080).

Run Container

docker run -d \
  --name orbnetes \
  -p 8080:8080 \
  -e ORBN_APP_URL=http://localhost:8080 \
  -e ORBN_DB_HOST=host.docker.internal \
  -e ORBN_DB_PORT=3306 \
  -e ORBN_DB_NAME=orbnetes \
  -e ORBN_DB_USER=orbnetes \
  -e ORBN_DB_PASS=secret \
  ghcr.io/orbnetes/orbnetes:latest

First Login Check

  1. Open http://localhost:8080.
  2. Confirm the app is reachable and login page loads.
  3. If DB is empty, complete initial setup flow.

Basic Troubleshooting

  • Container logs: docker logs -f orbnetes
  • Check DB connectivity from host and container network.
  • Ensure ORBN_APP_URL matches your exposed host/port.