Files
docker-compose/palmr/docker-compose.yml
T

27 lines
698 B
YAML
Raw Normal View History

2025-07-08 21:22:31 +05:30
services:
palmr:
container_name: palmr
image: docker.io/kyantech/palmr:v3.1.6-beta
2025-07-13 18:35:45 +05:30
restart: unless-stopped
2025-07-20 21:41:12 +05:30
labels:
- traefik.enable=true
- traefik.http.routers.palmr.rule=Host(`${TRAEFIK_DOMAIN}`)
2025-07-24 21:12:08 +05:30
- traefik.http.routers.palmr.entrypoints=${TRAEFIK_ENTRYPOINT}
2025-07-20 21:41:12 +05:30
- traefik.http.services.palmr.loadbalancer.server.port=5487
2025-07-08 21:22:31 +05:30
environment:
2025-07-16 20:07:38 +05:30
- ENABLE_S3=false
2025-07-19 20:34:39 +05:30
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
- SECURE_SITE=${SECURE_SITE}
- PALMR_UID=${PUID}
- PALMR_GID=${PGID}
2025-07-08 21:22:31 +05:30
volumes:
2025-07-19 20:34:39 +05:30
- ${APPDATA_PATH}/palmr/server:/app/server
2025-07-08 21:22:31 +05:30
ports:
2025-07-19 20:34:39 +05:30
- ${PORT}:5487
2025-07-20 21:41:12 +05:30
networks:
- frontend
networks:
frontend:
external: true