[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-82142":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":16,"subscribersCount":16,"size":16,"stars1d":16,"stars7d":17,"stars30d":18,"stars90d":16,"forks30d":16,"starsTrendScore":19,"compositeScore":20,"rankGlobal":10,"rankLanguage":10,"license":21,"archived":22,"fork":22,"defaultBranch":23,"hasWiki":22,"hasPages":22,"topics":24,"createdAt":10,"pushedAt":10,"updatedAt":31,"readmeContent":32,"aiSummary":33,"trendingCount":16,"starSnapshotCount":16,"syncStatus":15,"lastSyncTime":34,"discoverSource":35},82142,"proxmox","dockur\u002Fproxmox","dockur","Proxmox VE inside a Docker container.","https:\u002F\u002Fwww.proxmox.com",null,"Shell",216,10,5,2,0,30,114,15,68.12,"MIT License",false,"master",[25,26,27,5,28,29,30],"docker-container","docker-image","homelab","proxmox-tools","proxmox-ve","self-hosting","2026-06-12 04:01:37","\u003Ch1 align=\"center\">Proxmox\u003Cbr \u002F>\n\u003Cdiv align=\"center\">\n\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fdockur\u002Fproxmox\u002F\">\u003Cimg src=\"https:\u002F\u002Fgithub.com\u002Fdockur\u002Fproxmox\u002Fraw\u002Fmaster\u002F.github\u002Flogo.png\" title=\"Logo\" style=\"max-width:100%;\" width=\"128\" \u002F>\u003C\u002Fa>\n\u003C\u002Fdiv>\n\u003Cdiv align=\"center\">\n\n[![Build]][build_url]\n[![Version]][tag_url]\n[![Size]][tag_url]\n[![Pulls]][hub_url]\n\n\u003C\u002Fdiv>\u003C\u002Fh1>\n\nProxmox VE inside a Docker container.\n\n## Features ✨\n\n- **High-performance** — Identically to bare-metal thanks to KVM acceleration\n- **Fast iteration** — Spin up or tear down a PVE node quickly within seconds\n- **Easy backups** — Stores all your configuration in a volume mount\n- **Simple networking** — Comes with a pre-configured NAT bridge with DHCP\n- **LXC supported** — LXC containers work out of the box\n- **Multi-platform** — Support for ARM64 processors via PXVIRT\n\n## Usage  🐳\n\n##### Via Docker Compose:\n\n```yaml\nservices:\n  proxmox:\n    hostname: pve\n    image: dockurr\u002Fproxmox\n    container_name: proxmox\n    environment:\n      PASSWORD: \"root\"\n    ports:\n      - 8006:8006\n    volumes:\n      - .\u002Fstorage:\u002Fvar\u002Flib\u002Fvz\n      - .\u002Fconfig:\u002Fvar\u002Flib\u002Fpve-cluster\n    restart: always\n    privileged: true\n    stop_grace_period: 2m\n```\n\n##### Via Docker CLI:\n\n```bash\ndocker run -it --rm --name proxmox --hostname pve --privileged -e \"PASSWORD=root\" -p 8006:8006 -v \"${PWD:-.}\u002Fstorage:\u002Fvar\u002Flib\u002Fvz\" -v \"${PWD:-.}\u002Fconfig:\u002Fvar\u002Flib\u002Fpve-cluster\" --stop-timeout 120 docker.io\u002Fdockurr\u002Fproxmox\n```\n\n##### Via Github Codespaces:\n\n[![Open in GitHub Codespaces](https:\u002F\u002Fgithub.com\u002Fcodespaces\u002Fbadge.svg)](https:\u002F\u002Fcodespaces.new\u002Fdockur\u002Fproxmox)\n\n## Requirements 🛠️\n\n- Intel VT-x \u002F AMD-V enabled\n- Modern Linux host with kernel 6.8+\n- [Docker Engine](https:\u002F\u002Fdocs.docker.com\u002Fengine\u002Finstall\u002F) (version 27+ recommended)\n- Windows 11 with Docker Desktop (WSL2):\n   - WSL kernel version 6.6+ (`wsl --version`)\n   - Nested virtualization enabled in WSL Settings\n\n## Screenshots 📸\n\n\u003Cdiv align=\"center\">\n\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fdockur\u002Fproxmox\">\u003Cimg src=\"https:\u002F\u002Fraw.githubusercontent.com\u002Fdockur\u002Fproxmox\u002Fmaster\u002F.github\u002Fscreenshot.png\" title=\"Screenshot\" style=\"max-width:100%;\" width=\"256\" \u002F>\u003C\u002Fa>\n\u003C\u002Fdiv>\n\n\u003Cdiv align=\"center\">\n\u003Ca href=\"https:\u002F\u002Fgithub.com\u002Fdockur\u002Fproxmox\">\u003Cimg src=\"https:\u002F\u002Fraw.githubusercontent.com\u002Fdockur\u002Fproxmox\u002Fmaster\u002F.github\u002Fscreenshot2.png\" title=\"Screenshot\" style=\"max-width:100%;\" width=\"256\" \u002F>\u003C\u002Fa>\n\u003C\u002Fdiv>\n\n## FAQ 💬\n\n### How do I use it?\n\n  Very simple! These are the steps:\n  \n  - Start the container and connect to [port 8006](http:\u002F\u002F127.0.0.1:8006\u002F) using your web browser.\n\n  - Login using the username `root` and the password you specified in the `PASSWORD` environment variable.\n  \n  Enjoy your time with your brand new Proxmox installation, and don't forget to star this repo!\n\n### How do I change the location of the storage pool?\n\n  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:\n\n  ```yaml\n  volumes:\n    - .\u002Fstorage:\u002Fvar\u002Flib\u002Fvz\n  ```\n\n  Replace the example path `.\u002Fstorage` with the desired storage folder or named volume.\n\n### How do I change the location of the configuration data?\n\n  To change the location of your Proxmox VE configuration data, include the following bind mount in your compose file:\n  \n  ```yaml\n  volumes:\n    - .\u002Fconfig:\u002Fvar\u002Flib\u002Fpve-cluster\n  ```\n\n  Replace the example path `.\u002Fconfig` with the desired storage folder or named volume.\n\n### How do I verify if my system supports the KVM virtualization used by Proxmox?\n\n  First check if your software is compatible using this chart:\n\n  | **Product**  | **Linux** | **Win11** | **Win10** | **macOS** |\n  |---|---|---|---|---|\n  | Docker CLI        | ✅   | ✅       | ❌        | ❌ |\n  | Docker Desktop    | ❌   | ✅       | ❌        | ❌ | \n  | Podman CLI        | ✅   | ✅       | ❌        | ❌ | \n  | Podman Desktop    | ✅   | ✅       | ❌        | ❌ | \n\n  After that you can run the following commands in Linux to check your system:\n\n  ```bash\n  sudo apt install cpu-checker\n  sudo kvm-ok\n  ```\n\n  If you receive an error from `kvm-ok` indicating that KVM cannot be used, please check whether:\n\n  - the virtualization extensions (`Intel VT-x` or `AMD SVM`) are enabled in your BIOS.\n\n  - you enabled \"nested virtualization\" if you are running the container inside a virtual machine.\n\n  - you are not using a cloud provider, as most of them do not allow nested virtualization for their VPS's.\n\n## Acknowledgements 🙏\n\nSpecial thanks to [rtedpro-cpu](https:\u002F\u002Fgithub.com\u002Frtedpro-cpu) and [LongQT-sea](https:\u002F\u002Fgithub.com\u002FLongQT-sea), this project would not exist without their invaluable work.\n\n## Stars 🌟\n[![Stars](https:\u002F\u002Fstarchart.cc\u002Fdockur\u002Fproxmox.svg?variant=adaptive)](https:\u002F\u002Fstarchart.cc\u002Fdockur\u002Fproxmox)\n\n[build_url]: https:\u002F\u002Fgithub.com\u002Fdockur\u002Fproxmox\u002F\n[hub_url]: https:\u002F\u002Fhub.docker.com\u002Fr\u002Fdockurr\u002Fproxmox\u002F\n[tag_url]: https:\u002F\u002Fhub.docker.com\u002Fr\u002Fdockurr\u002Fproxmox\u002Ftags\n[pkg_url]: https:\u002F\u002Fgithub.com\u002Fdockur\u002Fproxmox\u002Fpkgs\u002Fcontainer\u002Fproxmox\n\n[Build]: https:\u002F\u002Fgithub.com\u002Fdockur\u002Fproxmox\u002Factions\u002Fworkflows\u002Fbuild.yml\u002Fbadge.svg\n[Size]: https:\u002F\u002Fimg.shields.io\u002Fdocker\u002Fimage-size\u002Fdockurr\u002Fproxmox\u002Flatest?color=066da5&label=size\n[Pulls]: https:\u002F\u002Fimg.shields.io\u002Fdocker\u002Fpulls\u002Fdockurr\u002Fproxmox.svg?style=flat&label=pulls&logo=docker\n[Version]: https:\u002F\u002Fimg.shields.io\u002Fdocker\u002Fv\u002Fdockurr\u002Fproxmox\u002Flatest?arch=amd64&sort=semver&color=066da5\n[Package]: https:\u002F\u002Fimg.shields.io\u002Fbadge\u002Fdynamic\u002Fjson?url=https%3A%2F%2Fipitio.github.io%2Fbackage%2Fdockur%2Fproxmox%2Fproxmox.json&query=%24.downloads&logo=github&style=flat&color=066da5&label=pulls\n","dockur\u002Fproxmox 项目将 Proxmox VE 部署在一个 Docker 容器中。它利用 KVM 加速实现了接近裸机的高性能，支持快速创建和销毁 PVE 节点，并通过卷挂载简化了配置备份。该项目还预配置了 NAT 桥接与 DHCP，使得网络设置更加简便，同时兼容 LXC 容器和 ARM64 架构处理器。适用于需要灵活部署虚拟化环境的家庭实验室、自托管服务等场景，尤其适合那些希望在 Docker 环境下体验 Proxmox 功能的用户。","2026-06-11 04:07:51","CREATED_QUERY"]