Skip to main content

Installation

Follow the steps below to set up Packistry and start managing your PHP packages in a self-hosted Composer repository.

1. Run the Packistry Server

You can run Packistry locally or on a cloud platform using Docker. First, set up the necessary environment variables and create a Docker Compose file.

1.1: Generate .env with APP_KEY

Create an .env file and generate an APP_KEY:

echo "APP_KEY=base64:$(openssl rand -base64 32)" >> .env

1.2: Create compose.yaml

Create a compose.yaml file for Docker Compose.

info

The default configuration uses SQLite, which is created in the /data directory within the container. The /data directory also contains an archives subdirectory with zip files of the archives.

To retrieve the files for backup purposes, copy them out of the container using:
docker cp CONTAINER_ID:/data ./path/on/host

For other setups:

compose.yaml
services:
packistry:
image: ghcr.io/packistry/packistry:latest
restart: unless-stopped
environment:
- APP_KEY=${APP_KEY}
ports:
- 80:80
volumes:
- packistry-storage:/data

volumes:
packistry-storage:

Ensure Docker Compose is installed and Docker is running on your system or cloud environment. Alternatively, you can run Packistry directly with Docker: docker run -p 80:80 -e APP_KEY=[app_key] -v /host/data/path:/data ghcr.io/packistry/packistry:latest


2. Start the container

Run the following command to start the container:

docker compose up -d

3. Create a User

Once the server is running, create an admin user by running the following command:

docker compose exec packistry packistry add:user

Follow the prompts to set up your admin account.Follow the prompts to set up your admin account.


4. Access the Web UI

After setting up the user, open your web browser and go to http://localhost to access the Packistry Web UI. Log in with the credentials you just created.


5. Create a Repository

Navigate to http://localhost/repositories?open=true and create a new repository to start managing your packages.


6. Add Sources

Navigate to http://localhost/sources?open=true to connect your repositories from platforms like GitHub, GitLab, Gitea or Bitbucket.


7. Add a Package

To import repositories from the sources you set up, go to http://localhost/packages?open=true. Packistry will automatically configure webhooks to update your packages with the latest tags and branches.


8. Add Packistry to Your Composer Configuration

To integrate Packistry with Composer, add Packistry to your composer.json file. Replace [url] with the appropriate domain where Packistry is running:

  • http://localhost
  • https://domain.com
  • https://sub.domain.com:1234

Run the following command:

composer config repositories.packistry composer [url]

When serving non-root repositories (e.g., with an additional path configured during creation), run the following command:

composer config repositories.packistry composer [url]/r/[path]

Alternatively, you can copy the correct command by clicking the clipboard icon on the repository or package page in the Packistry Web UI.


9A. Optionally, Authenticate with the Repository using deploy tokens

info

Use a deploy token for CI, server access to repositories, or other integrations.

For private repositories, authentication is required. Replace [hostname] with your Packistry server hostname (e.g., localhost, domain.com, or sub.domain.com:1234), and use a personal or deploy token for access: To generate a deploy token navigate to http://localhost/deploy-tokens?open=true and assign the repositories the token has access too.

composer config bearer.[hostname] "pkdt-9m5HWKPaTg08fArR66zRAbthl7kEYBSIoxByltwibeb01ebf"

9B. Optionally, Authenticate with the Repository using personal access tokens

info

Use a personal token, for example, to authenticate your local machine.

For private repositories, authentication is required. Replace [hostname] with your Packistry server hostname (e.g., localhost, domain.com, or sub.domain.com:1234), and use a personal or deploy token for access: To generate a personal access token navigate to http://localhost/personal-tokens?open=true and generate a token

composer config --global bearer.[hostname] "pkpat-9m5HWKPaTg08fArR66zRAbthl7kEYBSIoxByltwibeb01ebf"

10. Optionally, Allow Insecure HTTP Connections

info

If you are running Packistry behind a reverse proxy on a secure connection but still receive the error message:

Your configuration does not allow connections to ... See https://getcomposer.org/doc/06-config.md#secure-http for details.

Make sure to forward the headers from your proxy to Packistry and mark the proxy as trusted using TRUSTED_PROXIES. See the guide below for more information.

If you are using Packistry over an unsecured HTTP connection (e.g., for local development), configure Composer to allow insecure connections:

composer config secure-http false

Note: For production environments, it's strongly recommended to use HTTPS to ensure secure communication.


11. Install a Package from Packistry

Once your setup is complete, you can install a package from your Packistry repository. Replace vendor/name with the package you wish to install:

composer require vendor/name

By following these steps, you can quickly set up and start using Packistry to manage your Composer packages in a self-hosted environment.