1
0
Fork 0
mirror of https://git.fifo-f.eu/fifo/phanpy-docker.git synced 2025-04-18 19:08:20 +02:00
phanpy-docker/docker-compose.yml

27 lines
708 B
YAML
Raw Permalink Normal View History

2024-12-04 18:38:19 +01:00
version: '3'
services:
phanpy:
build:
context: .
2024-12-04 20:13:55 +01:00
# args:
2024-12-05 07:38:51 +01:00
# PHANPY_CLIENT_NAME: "Phanpy"
# PHANPY_WEBSITE: "https://phanpy.social"
2024-12-04 20:13:55 +01:00
# 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"
2024-12-05 07:38:51 +01:00
# PHANPY_DEFAULT_INSTANCE: "mastodon.social"
2024-12-04 18:38:19 +01:00
ports:
- "8282:80"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost"]
interval: 30s
timeout: 10s
retries: 3
2024-12-04 18:38:19 +01:00
networks:
- phanpy-network
restart: unless-stopped
2024-12-04 18:38:19 +01:00
networks:
phanpy-network:
driver: bridge