Easily Running Stability AI’s StableStudio on Azure

StableStudio is a web-based application that allows users to create and edit images using generative AI. It is the official open-source variant of DreamStudio, a user interface developed by Stability AI, a company that specializes in generative AI solutions. StableStudio is a community interface that enables anyone to explore the possibilities of generative AI for image creation. In this article we will see how easy it is to deploy StableStudio as a container using Azure Container Instances.

Prerequisites

Will be using Terraform and its azurerm provider to deploy the environment, so we will be needing the following installed on our workstation:

  • Terraform: installation guide is here.
  • Azure CLI: installation guide is here.

Note that we will need a Stability AI API key, meaning an account, which can be created here.

Example Repository

A complete Terraform script that creates a resource group and an Azure Container Instances resource running a generic Node.JS container with instructions for initializing and executing StableStudio web application, can be found in the following GitHub repository:

https://github.com/cladular/terraform-azure-stablestudio?source=post_page—–312042feec6d——————————–

Deployment Script

We will start by creating a local that will hold the commands needed to inside the container to pull StableStudio’s GitHub repository, build the code and run the app:

locals {
  port = 3000
  commands = [
    "git clone https://github.com/Stability-AI/StableStudio.git",
    "cd StableStudio",
    "yarn",
    "yarn dev --host"
  ]
}

Note that we also defined a port local as it’s good practice in case the port can be changed in the future, so we will only need to change the value in one place.

Next, we create a resource group:

resource "azurerm_resource_group" "this" {
  name     = "rg-${var.deployment_name}-${var.location}"
  location = var.location
}

And lastly, we will create the Azure Container Instances resource to run StableStudio:

resource "azurerm_container_group" "this" {
  name                = "aci-${var.deployment_name}-${var.location}"
  location            = azurerm_resource_group.this.location
  resource_group_name = azurerm_resource_group.this.name
  ip_address_type     = "Public"
  os_type             = "Linux"
  dns_name_label      = "${var.deployment_name}-${var.location}"

  container {
    name   = "${var.deployment_name}-container"
    image  = "node:latest"
    cpu    = "2"
    memory = "4"

    commands = [
      "sh",
      "-c",
      join(" && ", local.commands)
    ]

    ports {
      port     = local.port
      protocol = "TCP"
    }
  }
}

Note that we are using a generic node image and combine all the commands in to one shell command that will be executed by the container when it starts.

We will also define a variables file with some defaults:

variable "deployment_name" {
  default = "stablestudio"
}

variable "location" {
  default = "eastus"
}

And an outputs file that will have the final URL to access our StableStudio instance:

output "stablestudio_url" {
  value = "http://${azurerm_container_group.this.fqdn}:${local. Port}"
}

Testing The Deployment

All we need to do now, is run the following Terraform command:terraform apply -var=”deployment_name=mystablestudio”

Note that although we defined a default value for deployment_name, we should set it to a unique value for our deployment to avoid collisions.

Conclusion

StableStudio is a very promising user interface for generative AI, as it supports swapping the backend that is being used to perform the actual operations (the default is Stability AI’s servers) to other backends in the future using its plugin system.

This blog was part of Azure AI Week. This week featured loads of great blogs and webinars, be sure to check it out!

About the Author:

Microsoft Azure MVP | Highly experienced software development & technology professional; consultant, architect & project manager

Reference:

Podhajcer, I. (2023). Easily Running Stability AI’s StableStudio on Azure. Available at: https://medium.com/microsoftazure/easily-running-stability-ais-stablestudio-on-azure-312042feec6d [Accessed: 17th January 2024].

Share this on...

Rate this Post:

Share:

Topics:

Azure AI