Skip to content

Azure Installation of Martini Designer Online

Installing Martini Designer Online on Microsoft Azure can be accomplished in two ways: provisioning through the Azure Marketplace or setting up the infrastructure manually and using the Martini Designer Online Docker file.

Option 1: Provision via Azure Marketplace

Steps for Marketplace Provisioning

  1. Access the Azure Marketplace: Navigate to the Azure Marketplace and search for Martini Designer Online.

  2. Choose Martini Designer Online: Select Martini Designer Online from the search results.

  3. Configure Your Instance: Follow the Azure interface to configure your instance. This process includes selecting the virtual machine size, configuring network and security settings, and specifying storage options.

  4. Deploy the Instance: Complete the configuration and deploy the instance. Azure will handle the provisioning and setup of Martini Designer Online on the virtual machine.

  5. Access Martini Designer Online: Once the deployment is complete, access Martini Designer Online through the assigned public IP address or DNS name.

Notes

  • Be mindful of Azure's pricing and service management policies.
  • Pay attention to network security and access settings during setup.

Option 2: Manual Setup with Docker

Steps for Manual Setup

  1. Prepare Azure Infrastructure: Set up your Azure infrastructure, which involves creating a virtual machine, setting up network security groups, and configuring necessary networking settings.

  2. Install Docker: On your Azure virtual machine, install Docker. Follow the Docker installation guide for detailed instructions.

    • Verify the installation with:
    1
    docker --version
    
  3. Pull Martini Designer Online Docker Image:

    • Use the following command to download the latest Martini Designer Online Docker image:
    1
    docker pull toroio/martini-designer:latest
    
  4. Start the Docker Container: Launch the Martini Designer Online application using Docker, ensuring to configure ports and environment variables as needed.

1
docker run -d -p 3000:3000 -e MR_LICENSE=<martini-license> toroio/martini-designer:latest
  1. Access Martini Designer Online: Use the public IP address or endpoint of your Azure virtual machine, followed by the configured port, to access Martini Designer Online. For example:
1
http://[HOST]:[PORT]

Notes

  • This method requires knowledge of Azure VM management, Docker, and basic networking.
  • Properly manage security settings to secure your Martini Designer Online deployment.