Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add QuickDrop app #626

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 56 additions & 0 deletions Apps/QuickDrop/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: quickdrop
services:
quickdrop:
image: roastslav/quickdrop:1.0.0
container_name: quickdrop
ports:
- target: 8080
published: "8080"
protocol: tcp
volumes:
- type: bind
source: /DATA/AppData/$AppID/files
target: /app/files
- type: bind
source: /DATA/AppData/$AppID/db
target: /app/db
environment:
PGID: $PGID
PUID: $PUID
TZ: $TZ
restart: unless-stopped
x-casaos:
ports:
- container: "8080"
description:
en_us: WebUI HTTP port
volumes:
- container: /app/files
description:
en_us: QuickDrop files directory.
- container: /app/db
description:
en_us: QuickDrop database directory.
x-casaos:
architectures:
- amd64
- arm64
main: quickdrop
author: RoastSlav
category: Cloud
description:
en_us: QuickDrop is a self-hosted file-sharing application that allows for anonymous uploads, download link generation, and file management with optional password protection and encryption.
developer: RoastSlav
icon: https://raw.githubusercontent.com/RoastSlav/quickdrop/master/src/main/resources/static/images/favicon.png
tagline:
en_us: Self-hosted file-sharing with enhanced security.
title:
en_us: QuickDrop
port_map: "8080"
volumes:
- container: /app/files
description:
en_us: Directory for uploaded files.
- container: /app/db
description:
en_us: Directory for database storage.
Binary file added Apps/QuickDrop/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Apps/QuickDrop/screenshot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Apps/QuickDrop/screenshot-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Apps/QuickDrop/screenshot-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading