Setting up a Docker Instance

Prerequisites

  • Docker installed on your system
  • Docker Compose (optional, but recommended)

Installation Steps

# Pull the Dream.MF orchestration image
docker pull @dream.mf/ros:latest

# Create a docker-compose.yml file
version: '3.8'
services:
  orchestrator:
    image: @dream.mf/ros:latest
    ports:
      - "5000:5000"
    environment:
      - NODE_ENV=production

Running the Instance

docker-compose up -d

Verifying Installation

  1. Check if the container is running:
docker ps | grep ros
  1. Access the orchestrator UI:
    • Open your browser and navigate to http://localhost:5000
    • You should see the Dream.MF ROS login page.

Next Steps

After setting up your Docker instance, proceed to Creating Users to set up your first admin account.