Docker Standalone Deployment
Use Docker Standalone for local testing or evaluation. This method runs RegScale on a single VM or laptop.
Requirements
- Docker + Docker Compose
- Docker Hub access
- Optional: External SQL Server (defaults to local SQL Express)
Easy Mode
-
Install Docker, Python 3.9–3.11, and pip
-
Install the Docker SDK:
pip install docker
-
Download the installer script:
curl -O https://raw.githubusercontent.com/RegScale/community/main/standalone/standalone.py
-
Run the installer:
python3 standalone.py
-
Open your browser to http://localhost:81
Manual Mode
Key Files
Steps
-
Download
docker-compose.yml
,atlas.env
, anddb.env
-
Update
db.env
andatlas.env
with your secure credentials and keys -
Start RegScale:
docker-compose up -d
-
Visit http://localhost:81
Updated 11 days ago