readme.md
June 12, 2026 · View on GitHub
Proxmox
Proxmox VE inside a Docker container.
Features ✨
- High-performance — Identically to bare-metal thanks to KVM acceleration
- Fast iteration — Spin up or tear down a PVE node quickly within seconds
- Easy backups — Stores all your configuration in a volume mount
- Simple networking — Comes with a pre-configured NAT bridge with DHCP
- LXC supported — LXC containers work out of the box
- Multi-platform — Support for ARM64 processors via PXVIRT
Usage 🐳
Via Docker Compose:
services:
proxmox:
hostname: pve
image: dockurr/proxmox
container_name: proxmox
environment:
PASSWORD: "root"
ports:
- 8006:8006
volumes:
- ./data:/var/lib/vz
- ./config:/var/lib/pve-cluster
restart: always
privileged: true
stop_grace_period: 2m
Via Docker CLI:
docker run -it --rm --name proxmox --hostname pve --privileged -e "PASSWORD=root" -p 8006:8006 -v "${PWD:-.}/data:/var/lib/vz" -v "${PWD:-.}/config:/var/lib/pve-cluster" --stop-timeout 120 docker.io/dockurr/proxmox
Via Github Codespaces:
Screenshot 📸
FAQ 💬
How do I use it?
Very simple! These are the steps:
-
Start the container and connect to port 8006 using your web browser.
-
Login using the username
rootand the password you specified in thePASSWORDenvironment variable.
Enjoy your time with your brand new Proxmox VE installation, and don't forget to star this repo!
How do I change the location of the storage pool?
To change the location for the local storage pool used by Proxmox to store large objects like disk images and .iso files, include the following bind mount in your compose file:
volumes:
- ./data:/var/lib/vz
Replace the example path ./data with the desired storage folder or named volume.
How do I change the location of the configuration data?
To change the location of your Proxmox VE configuration data, include the following bind mount in your compose file:
volumes:
- ./config:/var/lib/pve-cluster
Replace the example path ./config with the desired storage folder or named volume.
Are there containers available for other Proxmox products?
Yes, see our Proxmox Backup Server and Proxmox Datacenter Manager containers.
How do I verify if my system supports the KVM virtualization used by Proxmox?
First check if your software is compatible using this chart:
| Product | Linux | Win11 | Win10 | macOS |
|---|---|---|---|---|
| Docker CLI | ✅ | ✅ | ❌ | ❌ |
| Docker Desktop | ❌ | ✅ | ❌ | ❌ |
| Podman CLI | ✅ | ✅ | ❌ | ❌ |
| Podman Desktop | ✅ | ✅ | ❌ | ❌ |
After that you can run the following commands in Linux to check your system:
sudo apt install cpu-checker
sudo kvm-ok
If you receive an error from kvm-ok indicating that KVM cannot be used, please check whether:
-
the virtualization extensions (
Intel VT-xorAMD SVM) are enabled in your BIOS. -
you enabled "nested virtualization" if you are running the container inside a virtual machine.
-
you are not using a cloud provider, as most of them do not allow nested virtualization for their VPS's.
Acknowledgements 🙏
Special thanks to rtedpro-cpu and LongQT-sea, this project would not exist without their invaluable work.

