feat: add palmr blueprint for self-hosted file sharing (#181)

* feat: add palmr blueprint for self-hosted file sharing

Add new blueprint configuration for Palmr, an open-source alternative to WeTransfer. Includes docker-compose setup, template configuration, and meta.json entry.

* docs: update Palmr links in meta.json

* Update blueprints/palmr/docker-compose.yml

* Update blueprints/palmr/docker-compose.yml

---------

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
This commit is contained in:
Daniel Luiz Alves
2025-06-20 01:34:05 -03:00
committed by GitHub
parent 0e0c888022
commit 3ad8faef3d
4 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
services:
palmr:
image: kyantech/palmr:latest
environment:
- ENABLE_S3=false
- ENCRYPTION_KEY=${encryption_key}
ports:
- "5487"
- "3333"
volumes:
- palmr_data:/app/server
restart: unless-stopped
volumes:
palmr_data:

BIN
blueprints/palmr/palmr.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

@@ -0,0 +1,13 @@
[variables]
main_domain = "${domain}"
encryption_key = "${password:32}"
[config]
[[config.domains]]
serviceName = "palmr"
port = 5487
host = "${main_domain}"
[config.env]
[[config.mounts]]

View File

@@ -2483,5 +2483,22 @@
"docs": "https://www.docuseal.com/"
},
"tags": ["document-signing"]
},
{
"id": "palmr",
"name": "Palmr",
"version": "latest",
"description": "Palmr the open-source, self-hosted alternative to WeTransfer. Share files securely, without tracking or limitations.",
"logo": "palmr.png",
"links": {
"github": "https://github.com/kyantech/Palmr",
"website": "https://palmr.kyantech.com.br/",
"docs": "https://palmr.kyantech.com.br/docs/3.0-beta"
},
"tags": [
"file-sharing",
"self-hosted",
"open-source"
]
}
]