-
Notifications
You must be signed in to change notification settings - Fork 0
Getting Started Quick Start
github-actions[bot] edited this page Dec 9, 2025
·
3 revisions
This guide walks you through the fastest way to get ReadyStackGo up and running.
Make sure Docker is installed:
docker --version
# Docker version 20.10.0 or higherStart the ReadyStackGo admin container:
docker run -d \
--name readystackgo-admin \
-p 8443:8443 \
-v /var/run/docker.sock:/var/run/docker.sock \
-v rsgo-config:/app/config \
--restart unless-stopped \
your-registry/readystackgo/admin:0.1.0-
-p 8443:8443- HTTPS port for the web UI -
-v /var/run/docker.sock:/var/run/docker.sock- Docker socket access -
-v rsgo-config:/app/config- Persistent configuration -
--restart unless-stopped- Automatic restart
Open in your browser:
https://<your-server-ip>:8443
Note: On first start, a self-signed certificate is used. Accept the security warning in your browser.
The wizard guides you through 4 steps:
-
Username: e.g.,
admin - Password: Choose a secure password
-
ID: Technical ID (e.g.,
customer-a) -
Name: Display name (e.g.,
Customer A Inc.)
- Transport: Connection string for message queue
- Persistence: Database connection string
- EventStore: EventStore connection string (optional)
Examples:
Transport: amqp://rabbitmq:5672
Persistence: Server=sqlserver;Database=ams;User=sa;Password=***
EventStore: esdb://eventstore:2113
- Select manifest (e.g.,
v4.3.0) - Start installation
- Wait until all containers are started
After successful installation:
- Wizard ends
- Login page appears
- Log in with admin credentials
You can now:
- View container status
- Manage feature flags
- Upload TLS certificate
- Perform updates
When deploying a stack with many variables, you can import values from a .env file:
- Go to the Deploy page for a stack
- Click Import .env in the sidebar
- Select your
.envfile
This is useful when:
- Migrating from Docker Compose deployments
- Reusing configurations across environments
- Bulk-updating variable values
See: .env Import Documentation
docker logs readystackgo-adminChange the port mapping:
-p 9443:8443Make sure the Docker socket is accessible:
sudo chmod 666 /var/run/docker.sockMore help: Troubleshooting
Getting Started
Architecture
Configuration
Security
Setup Wizard
Development
Operations
CI/CD
Reference
- Roadmap
- API Reference
- Configuration Reference
- Manifest Schema
- Multi-Environment
- Stack Sources
- Plugin System
- Technical Specification
- Full Specification
Specifications
Release Notes