Podman Standalone Deployment
Run RegScale using Podman, an alternative container runtime for RHEL-based systems.
Requirements
- Podman installed on RHEL
- Docker Hub access
Key Files
Quick Start
-
Create pod and network:
podman network create atlas_net podman pod create --name regscale -p 8080:8080 -p 8443:443 -p 1433:1433 --network atlas_net
-
Run SQL Server container:
podman run -d --pod=regscale --restart=always -e ACCEPT_EULA=Y -e MSSQL_PID=Developer -e SA_PASSWORD=YourPassword --name atlas-db mcr.microsoft.com/mssql/server:latest
-
Run RegScale container:
podman run -d --pod=regscale --restart=always --env-file=./atlas.env --volume /atlas/files:/atlas/files --name atlas regscale/regscale:latest
-
Open your browser to http://localhost:8080
Updated 7 days ago