Install with Docker

Deploy CAST Imaging using Docker Compose on Linux or Windows.

Before you start

Who this is for IT administrator
Role required Docker user with permission to run containers and manage volumes
Prerequisites Docker Engine 24+ and Docker Compose v2 installed; requirements checked

Step 1: Download the Compose file

[TODO: Where to get the official docker-compose.yml, login to CAST registry if needed]

Step 2: Configure environment variables

Copy the example .env file and fill in the required values:

[TODO: List of required environment variables — database passwords, ports, volume paths, license key]

Step 3: Start the stack

docker compose up -d

Verify that all containers are running:

docker compose ps

[TODO: Expected output showing all services as healthy]

Step 4: Complete initial configuration

[TODO: Open browser, set license, create first admin user, connect AIP Console]

Managing containers

Task Command
Stop the stack docker compose down
View logs docker compose logs -f [service]
Restart a service docker compose restart [service]
Upgrade See Upgrade an existing installation

Next steps