Skip to content

Getting Started

From Release

Download the latest release and run:

bash
wget https://github.com/root-gg/plik/releases/download/1.4-RC1/plik-server-1.4-RC1-linux-amd64.tar.gz
tar xzvf plik-server-1.4-RC1-linux-amd64.tar.gz
cd plik-server-1.4-RC1/server
./plikd

Plik is now running at http://127.0.0.1:8080.

Edit plikd.cfg to adjust the configuration (ports, TLS, TTL, backends, etc.).

TIP

Standalone client binaries for all platforms are also available on the release page. See the CLI documentation for installation instructions.

From Source

Requires Go and Node.js:

bash
git clone https://github.com/root-gg/plik.git
cd plik && make
cd server && ./plikd

Docker

Plik provides multiarch Docker images for linux amd64/i386/arm/arm64:

bash
docker run -p 8080:8080 rootgg/plik

Available tags:

  • rootgg/plik:latest — latest release
  • rootgg/plik:{version} — specific release
  • rootgg/plik:dev — latest master commit

See the Docker Deployment Guide for custom configuration, persistent storage, and Docker Compose examples.

Released under the MIT License.