Skip to content

Azure Installation of Martini Designer Online

Installing Martini Designer Online on Microsoft Azure can be accomplished using the Martini Designer Online Docker file.

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.