Skip to content

PacketShare Custom Image

tadeh85 edited this page Jan 29, 2026 · 1 revision

🛠 PacketShare Custom Image

Why am I using a custom image for PacketShare? The official PacketShare Docker image is currently broken/unstable on certain architectures. To ensure stability, I have built a multi-arch image (tadeh85/packetshare) that fixes these issues and works on both x86 and ARM. I will try to keep this updated.

"I don't trust your image, I want to build it myself" Totally understandable! I have left the Dockerfile inside the source folders. You can build it locally using this command:

# For x86
docker build -t local/packetshare ./x86/packetshare/

# For ARM
docker build -t local/packetshare ./arm/packetshare/

After building, simply change image: tadeh85/packetshare:latest to image: local/packetshare in your docker-compose.yml file.

Clone this wiki locally