diff --git a/blueprints/palmr/docker-compose.yml b/blueprints/palmr/docker-compose.yml new file mode 100644 index 00000000..9a49b607 --- /dev/null +++ b/blueprints/palmr/docker-compose.yml @@ -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: diff --git a/blueprints/palmr/palmr.png b/blueprints/palmr/palmr.png new file mode 100644 index 00000000..e6c48735 Binary files /dev/null and b/blueprints/palmr/palmr.png differ diff --git a/blueprints/palmr/template.toml b/blueprints/palmr/template.toml new file mode 100644 index 00000000..02986819 --- /dev/null +++ b/blueprints/palmr/template.toml @@ -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]] \ No newline at end of file diff --git a/meta.json b/meta.json index 3fb26ed2..1784aa8e 100644 --- a/meta.json +++ b/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" + ] } ]