mirror of
https://git.fifo-f.eu/fifo/phanpy-docker.git
synced 2025-04-19 11:28:05 +02:00
30 lines
No EOL
977 B
Markdown
30 lines
No EOL
977 B
Markdown
# Phanpy Docker image
|
||
|
||
This is a Dockerfile for running cheeaun’s [Phanpy](https://github.com/cheeaun/phanpy) fediverse 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:
|
||
|
||
```yaml
|
||
services:
|
||
phanpy:
|
||
...
|
||
ports:
|
||
- "8282:80"
|
||
```
|
||
|
||
You can customize your Phanpy instance by uncommenting the `args` section in the Docker Compose file and rebuilding the image:
|
||
|
||
```yaml
|
||
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.
|
||
|
||
If you have any questions, improvements or other feedback feel free to create an issue on my GitLab: https://git.fifo-f.eu/fifo/phanpy-docker/-/issues |