axeiro

Deploying Containers & Web Apps

axeiro makes it easy to deploy containers and web applications on your virtual machines. Follow these steps to deploy your first app.

1. Choose Your App Type

You can deploy Docker containers, Node.js apps, Python apps, or static websites.

2. Prepare Your App

Make sure your app is ready to run. For Docker, create a Dockerfile. For Node.js, ensure package.json exists.

# Example: Docker build
docker build -t my-app .
docker run -p 3000:3000 my-app

3. Deploy via axeiro

Go to Dashboard → Apps → Create App. Select your VM, app type, and upload your code or Docker image. Click Deploy.

Next → VM Management