Skip to content

Initial Setup

After installation, the setup process consists of two phases:

  1. Setup Wizard — Create your admin account (unauthenticated, time-limited)
  2. Onboarding — Configure organization, environment, and stack sources (authenticated, guided)

The setup wizard starts automatically on first access to the web interface. It has a single step: creating the admin account.

Enter your administrator credentials:

Setup Wizard: Create Admin Account

FieldRequirement
UsernameMinimum 3 characters
PasswordMinimum 8 characters
Confirm PasswordMust match the password

The form validates your input before submission:

Setup Wizard: Validation Error

When you click “Continue”:

  1. The admin account is created
  2. You are automatically logged in (no separate login step)
  3. The wizard marks itself as complete
  4. You are automatically redirected to the Onboarding

After the wizard, the guided onboarding starts automatically. It walks you through the initial configuration of your ReadyStackGo instance in three steps.

The organization is the top-level identity of your ReadyStackGo instance. All environments, stacks, and settings belong to it. This step is required — there is no “Skip” button.

Onboarding: Create Organization

FieldRequirement
Organization NameMinimum 2 characters

Enter a name and click “Continue”.


In this step, you connect ReadyStackGo to a Docker daemon. The fields are pre-filled with sensible defaults:

Onboarding: Docker Environment

FieldDefault ValueDescription
Environment NameLocal DockerA display name for this environment
Docker Socket Pathunix:///var/run/docker.sockPath to the Docker daemon socket on the host

You have two options:

  • “Continue” — Creates the environment with the specified values
  • “Skip for now” — Skips this step (you can add environments later in Settings)

Stack sources are repositories containing pre-configured stack definitions that you can deploy directly. ReadyStackGo shows you a curated list of available sources:

Onboarding: Stack Sources

  • Recommended sources (Featured) are pre-selected automatically
  • You can select and deselect sources as needed
  • Click “Add sources” to add the selected sources
  • Or click “Skip for now” to skip this step

After completing the steps, the onboarding shows a summary of all configured (and skipped) items:

Onboarding: Summary

Click “Go to Dashboard” to proceed to the dashboard.


After completing the onboarding, you are redirected to the Dashboard:

Dashboard after Onboarding

If you skipped optional steps during onboarding (environment or stack sources), the dashboard shows a hint with recommendations for further configuration. This hint disappears automatically once all items are configured.

  1. Add Environment (if skipped) — Go to Environments and create a new environment
  2. Configure Stack Sources (if skipped) — Under Settings → Stack Sources
  3. Deploy First Stack — See First Deployment

If the wizard does not start automatically:

Terminal window
# Check container logs
docker logs readystackgo
# Restart the container
docker restart readystackgo

If you want to run the wizard again, you need to reset all data:

Terminal window
# Stop container and delete volumes
docker compose down -v
# Start container again
docker compose up -d