mirror of
https://github.com/dockur/proxmox.git
synced 2026-07-27 16:54:51 +07:00
e0133bd9d1076edab2058ef07a921fc2956cf94e
Proxmox
Proxmox inside a Docker container.
Features ✨
- KVM acceleration
- Web-based viewer
- Automatic download
Usage 🐳
Via Docker Compose:
services:
proxmox:
image: dockurr/proxmox
container_name: proxmox
devices:
- /dev/kvm
- /dev/net/tun
cap_add:
- NET_ADMIN
ports:
- 8006:8006
volumes:
- ./proxmox:/storage
restart: always
stop_grace_period: 2m
Via Docker CLI:
docker run -it --rm --name proxmox -p 8006:8006 --device=/dev/kvm --device=/dev/net/tun --cap-add NET_ADMIN -v "${PWD:-.}/proxmox:/storage" --stop-timeout 120 docker.io/dockurr/proxmox
Via Kubernetes:
kubectl apply -f https://raw.githubusercontent.com/dockur/proxmox/refs/heads/master/kubernetes.yml
Via Github Codespaces:
FAQ 💬
How do I use it?
Very simple! These are the steps:
Acknowledgements 🙏
Special thanks to rtedpro-cpu, this project would not exist without his invaluable work.
Stars 🌟
Description
Languages
Shell
84.4%
Dockerfile
15.6%
