1
0
Fork 0
mirror of https://git.fifo-f.eu/fifo/phanpy-docker.git synced 2025-04-18 19:08:20 +02:00
No description
Find a file
2024-12-04 20:09:09 +01:00
.gitignore Add .gitignore 2024-12-04 19:46:46 +01:00
docker-compose.yml Update docker-compose.yml 2024-12-04 20:08:53 +01:00
Dockerfile Initial commit 2024-12-04 18:38:19 +01:00
LICENSE Add LICENSE 2024-12-04 18:44:33 +01:00
README.md Update README.md 2024-12-04 20:09:09 +01:00

Phanpy Docker image

This is a Dockerfile for running cheeauns Phanpy Mastodon client as a Docker container.

You can use any reverse proxy (for example, nginx) in front of the container. By default, the container listens on port 8282. If you want to use a different port, feel free to edit the Docker Compose file:

services:
  phanpy:
    ...
    ports:
      - "8282:80"

You can customize your Phanpy instance by adding an args section to the Docker Compose file and reubilding the image:

services:
  phanpy:
    build:
      ...
      args:
        PHANPY_CLIENT_NAME: "Phanpy"
        PHANPY_WEBSITE: "https://phanpy.social"
        PHANPY_DEFAULT_INSTANCE: "https://mastodon.social"

You can find a full list on the official Phanpy repo.