mirror of
https://git.fifo-f.eu/fifo/phanpy-docker.git
synced 2025-04-11 15:08:14 +02:00
26 lines
708 B
YAML
26 lines
708 B
YAML
version: '3'
|
|
|
|
services:
|
|
phanpy:
|
|
build:
|
|
context: .
|
|
# args:
|
|
# PHANPY_CLIENT_NAME: "Phanpy"
|
|
# PHANPY_WEBSITE: "https://phanpy.social"
|
|
# PHANPY_LINGVA_INSTANCES: "lingva.phanpy.social lingva.lunar.icu lingva.garudalinux.org translate.plausibility.cloud"
|
|
# PHANPY_PRIVACY_POLICY_URL: "https://github.com/cheeaun/phanpy/blob/main/PRIVACY.MD"
|
|
# PHANPY_DEFAULT_INSTANCE: "mastodon.social"
|
|
ports:
|
|
- "8282:80"
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 3
|
|
networks:
|
|
- phanpy-network
|
|
restart: unless-stopped
|
|
|
|
networks:
|
|
phanpy-network:
|
|
driver: bridge
|