HomeGuidesAPI ReferenceChangelog
Guides

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

  1. 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
    
  2. 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
    
  3. Run RegScale container:

    podman run -d --pod=regscale --restart=always --env-file=./atlas.env --volume /atlas/files:/atlas/files --name atlas regscale/regscale:latest
    
  4. Open your browser to http://localhost:8080