- docs
- FlowFuse User Manuals
- Using FlowFuse
- Getting Started
- Static asset service
- Bill of Materials
- FlowFuse Concepts
- Changing the Stack
- Custom Hostnames
- Device Groups
- DevOps Pipelines
- Environment Variables
- FlowFuse Assistant
- FlowFuse File Nodes
- FlowFuse Persistent Context
- FlowFuse Project Nodes
- High Availability mode
- HTTP Access Tokens
- Instance Settings
- Logging
- Shared Team Library
- Snapshots
- Team Broker
- Teams
- User Settings
- FlowFuse API
- Migrating a Node-RED project to FlowFuse
- Device Agent
- Device Agent
- FlowFuse Device Agent Introduction
- Quick Start
- Installation
- Quick Start with Web UI
- Register your Device
- Running the Agent
- Deploying your Flows
- Hardware Guides
- FlowFuse Cloud
- FlowFuse Cloud
- FlowFuse Self-Hosted
- Quick Start
- Installing FlowFuse
- Overview
- Configuring FlowFuse
- DNS Setup
- Docker install
- Docker from AWS Market Place
- Docker on Digital Ocean
- Add Project Stacks on Docker
- Docker Engine on Windows
- Email configuration
- First Run Setup
- FlowFuse File Storage
- Install FlowFuse on Kubernetes
- Upgrading FlowFuse
- Administering FlowFuse
- Administering FlowFuse
- Configuring Single Sign-On (SSO)
- Licensing
- Monitoring
- Telemetry
- User Management
- Support
- Community Support
- Premium Support
- Debugging Node-RED issues
- Contributing
- Contributing to FlowFuse
- Introduction
- Adding Template Settings
- API Design
- Creating debug stack containers
- Database migrations
- FlowFuse Architecture
- Local Install
- State Flows
- Device Editor
- Invite External Users
- User Login Flows
- Reset Password Flow
- Project Creation
- Instance states
- User Sign up Flow
- Team creation Flow
- Team Broker
- Working with Feature Flags
# Quick Start Guide
This guide provides a streamlined process for setting up and running the FlowFuse platform using Docker and docker-compose.
The provided docker-compose file facilitates the deployment of the following services:
- FlowFuse Platform: Includes the core application, MQTT broker, and file server for storage
- Database: A pre-configured database for storing platform data
- Proxy Server: A pre-configured proxy server for managing HTTP traffic
For a full installation guide, including how to setup FlowFuse in a production environment, please refer to the dedicated page for running FlowFuse on Docker.
# Prerequisites
Before you begin, ensure you have the following:
- A domain name that you own and can configure DNS settings for (explained in step 1)
- Docker and Docker Compose installed on your system (either as a standalone binary or as docker plugin)
# Step 1: Configure DNS
Before running FlowFuse, you need to configure your fully qualified domain name settings:
- Set up an A record for your domain (e.g.,
example.com
) to your server's IP address (this works with subdomain as well e.g.flowfuse.example.com
). FlowFuse will run here. - In the same manner, set up a wildcard DNS record (e.g.,
*.example.com
,*.flowfuse.example.com
) to point to your server's IP address. Any Node-RED instances setup by FlowFuse will run here.
This step is crucial for the proper functioning of the application. FlowFuse will not run properly on localhost
domain.
# Step 2: Download Compose file
curl -L -o docker-compose.yml https://github.com/FlowFuse/docker-compose/releases/latest/download/docker-compose-quick-start.yml
# Step 3: Start the Application
Run the following command to deploy FlowFuse. Replace the yourdomain.com
with your domain name configured in step 1.:
DOMAIN=example.com docker compose up -d
This command will download the necessary Docker images, run initial setup and start all the required services in detached mode.
# Step 4: Complete the application Setup
Open your web browser and navigate to http://forge.example.com/setup
. You will be redirected to the setup page where you can create your admin account and set up your instance. For detailed information about first setup and configuration, please follow this guide.
# Cleanup
To stop and remove the FlowFuse application, run the following command. Replace yourdomain.com
with your domain name:
DOMAIN=example.com docker compose down -v
# Troubleshooting
If you encounter any issues, please check the following:
- Ensure all prerequisites are correctly installed
- Verify your DNS settings are correct and have propagated
- Check the Docker logs for any error messages:
docker compose logs
For more detailed information or advanced configuration options for running FlowFuse on Docker, please refer to our full documentation.