Using a Web GUI
This walkthrough assumes that you already have a registered proxmox account in the cluster. If not, see Introduction.
This guide shows you how to set up a basic LXC container on the MIE Opensource Proxmox Cluster using the a Web GUI. The Web GUI can be accessed at https://create-a-container.opensource.mieweb.org.
1. Authenticate Your Proxmox Account
Upon navigating, you will be prompted for your Proxmox Login Credentials, as shown in the image below:
Options:
- Enter your valid Proxmox username and password
- If authentication fails, you'll see a "Invalid username or password" message and be prompted again.
2. Choose a Container Hostname
This will be your container's subdomain:
Options:
- Use a single word containing only letters, numbers, and hyphens (e.g.,
myapp
,test-api
) - The hostname will be available at
your-hostname.opensource.mieweb.org
- If the name is already taken or contains invalid characters, you'll be asked to choose another
3. Select a Linux Distribution
This dropdown presents available distributions:
Options:
- Type
debian
for Debian 12 (Bookworm) - Type
rocky
for Rocky Linux 9 - Any invalid input defaults to Debian
4. Set the HTTP Port
Specify which port your application will listen on:
Options:
- Any number between 80 and 60,000
- Common choices: 80, 3000, 8080, 5000, 8000
- Invalid entries will prompt you to try again
5. Configure SSH Access
Enter a public key from your local machine:
Options:
- Enter your SSH public key (starts with
ssh-rsa
,ssh-ed25519
, etc.) - Leave blank to skip SSH key configuration
- Invalid keys will prompt for a valid key or blank entry
Entering a public key is highly recommended. It will allow you to access the create-container command line setup without entering a password. Additionally, it will allow you to SSH to your container without having to input your proxmox password, making the connection process faster and more secure.
To create a private/public key pair on your machine, reference this guide.
6. Container Creation Process
After providing all required information, the system will:
- Transfer your configuration to the hypervisor
- Begin the container creation process
- Set up networking, DNS, and reverse proxy
- Configure the container with your specified settings
- Deploy your application if requested
Once the container creation process is complete, your container will be accessible via an ssh command in the form of:
ssh -p <your-container-port> <proxmox-username>@opensource.mieweb.org
7. Understanding the Output
Once your container is created, you will receieve an output that looks somthing like this:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🔔 COPY THESE PORTS DOWN — For External Access
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📌 Note: Your container listens on SSH Port 22 internally,
but EXTERNAL traffic must use the SSH port listed below:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ Hostname Registration: max-demo-container → 10.15.19.181
🔐 SSH Port : 2376
🌐 HTTP Port : 3000
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 Container ID : 116
🌐 Internal IP : 10.15.19.181
🔗 Domain Name : https://max-demo-container.opensource.mieweb.org
🛠️ SSH Access : ssh -p 2376 demouser@max-demo-container.opensource.mieweb.org
🔑 Container Password : Your proxmox account password
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
NOTE: Additional background scripts are being ran in detached terminal sessions.
Wait up to two minutes for all processes to complete.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Still not working? Contact Max K. at maxklema@gmail.com
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Your container password is the same as your Proxmox Account Password.
The first block will list all of the ports that your container uses. By default, it will display an SSH Port and an HTTP Port. If you added any other special protocols, they will appear there as well.
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✅ Hostname Registration: max-demo-container → 10.15.19.181
🔐 SSH Port : 2376
🌐 HTTP Port : 3000
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
The second block contains network information about your container specifically, including its IP address, public domain name, and ssh command:
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📦 Container ID : 116
🌐 Internal IP : 10.15.19.181
🔗 Domain Name : https://max-demo-container.opensource.mieweb.org
🛠️ SSH Access : ssh -p 2376 demouser@max-demo-container.opensource.mieweb.org
🔑 Container Password : Your proxmox account password
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
The IP that is given is an internal IP allocated by our local DHCP server. It is not public. Additionally, since we are setting up a basic container, nothing will be deployed yet, so navigating to the domain will return a 502 bad gateway error from our nginx server. This is expected.
Save your SSH port number, as well as any port numbers, because you will not be able to see them again. This will be fixed at a later time.
8. Viewing your Container on Proxmox
To see your container on the Proxmox GUI, navigate to https://opensource.mieweb.org:8006. Once signed in, on the summary view, you should see the name of your container. If you double click on it, you will be able to access details, like the shell, metrics, and other network/filesystem information.
As of writing, you are able to reboot, start, and shutdown your container as you please. However, you must reach out to a cluster admin to delete your container.
Advanced Options: For multi-component deployments, custom environment variables, or specific service configurations, refer to the Advanced Container Configuration documentation or contact the MIE team.