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
-
Prepare Azure Infrastructure: Set up your Azure infrastructure, which involves creating a virtual machine, setting up network security groups, and configuring necessary networking settings.
-
Install Docker: On your Azure virtual machine, install Docker. Follow the Docker installation guide for detailed instructions.
- Verify the installation with:
1
docker --version
-
Pull Martini Designer Online Docker Image: Use the following command to download the latest Martini Designer Online Docker image:
1
docker pull lontiplatform/martini-designer-online:latest
-
Start the Docker Container: Launch the Martini Designer Online application using Docker, ensuring to configure ports and environment variables as needed.
1 2 3 4 5 6 7
docker run \ -p 3000:3000 \ -p 8080:8080 \ -p 8443:8443 \ -v ./<workspace-folder>:/home/martini/martini-designer-workspace \ -e MR_LICENSE=<martini-license> \ lontiplatform/martini-designer-online:latest
-
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.