Skip to content

Other Installation Methods

PrivateBin has been packaged as an easy to install application on the following platforms.

Cloud Providers

Several cloud providers offer one-click-installations for PrivateBin in their Marketplaces:

Docker

PrivateBin can be installed from the Docker hub, see details.

Kubernetes

PrivateBin can be installed from a Helm chart. There is also a deployment example that can be adapted to your K8s persistent volume option.

openSUSE

PrivateBin can be installed as an RPM from the Open Build Service. It has been designed to run with php-fpm and is apparmor protected.

Red Hat / CentOS / Fedora / AlmaLinux / Rocky / Oracle / Amazon Linux

While no dedicated RPM has been created yet, there is a guide on how to handle the installation, particularly addressing how to set up the SElinux contexts correctly.

NixOS

There's a proper module support in NixOS. For up-to-date info about available options, please visit the official options search. Simple configuration would look somewhat like this:

services.privatebin = {
  enable = true;
  enableNginx = true;
  virtualHost = "privatebin.example.com";
  settings = {
    main.name = "My own PrivateBin running on NixOS.";
  };
};