docker-bits/lsio/projectsend/docker-run.sh

18 lines
919 B
Bash
Raw Normal View History

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
2023-04-26 00:53:18 +00:00
. ./.env
2021-04-10 10:16:29 +00:00
docker run -d \
--name=projectsend \
2022-04-02 00:45:58 +00:00
-e PUID=${PUID:-1024} `# for UserID` \
-e PGID=${PGID:-100} `# for GroupID` \
2023-02-26 14:51:38 +00:00
-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).` \
2022-10-05 01:16:35 +00:00
-e MAX_UPLOAD=5000 `# To set maximum upload size (in MB), default if unset is 5000.` \
2021-04-10 10:16:29 +00:00
-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