2021-04-21 00:55:42 +00:00
|
|
|
# [Projectsend](http://www.projectsend.org) is a self-hosted application that
|
|
|
|
# lets you upload files and assign them to specific clients that you create
|
|
|
|
# yourself. Secure, private and easy. No more depending on external services or
|
|
|
|
# e-mail to send those files.
|
2021-04-10 10:16:29 +00:00
|
|
|
|
|
|
|
source ./.env
|
|
|
|
docker run -d \
|
|
|
|
--name=projectsend \
|
|
|
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
|
|
|
-e PGID=${PGID:-100} `# for UserID` \
|
2021-04-13 00:58:58 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
2021-04-10 10:16:29 +00:00
|
|
|
-e MAX_UPLOAD=<5000> `# To set maximum upload size (in MB), default if unset is 5000.` \
|
|
|
|
-p 80:80 `# WebUI` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/projectsend/config:/config `# Where to store projectsend config files.` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/projectsend/data:/data `# Where to store files to share.` \
|
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/projectsend
|