You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
902 B
Bash

# [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.
. ./.env
docker run -d \
--name=projectsend \
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
-e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \
-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 `# Persistent config files` \
-v ${BASEDIR:-/volume1/docker}/projectsend/data:/data `# Where to store files to share.` \
--restart unless-stopped \
ghcr.io/linuxserver/projectsend