mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
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:
committed by
GitHub
parent
0e0c888022
commit
3ad8faef3d
15
blueprints/palmr/docker-compose.yml
Normal file
15
blueprints/palmr/docker-compose.yml
Normal 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
BIN
blueprints/palmr/palmr.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 7.3 KiB |
13
blueprints/palmr/template.toml
Normal file
13
blueprints/palmr/template.toml
Normal 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]]
|
||||
17
meta.json
17
meta.json
@@ -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"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user