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.

30 lines
1014 B
YAML

# [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.
---
version: "2.1"
services:
projectsend:
image: ghcr.io/linuxserver/projectsend
container_name: projectsend
environment:
# for UserID
- PUID=${PUID:-1024}
# for GroupID
- PGID=${PGID:-100}
# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).
- TZ=${TZ:-Europe/Amsterdam}
# To set maximum upload size (in MB), default if unset is 5000.
- MAX_UPLOAD=5000
volumes:
# Persistent config files
- ${BASEDIR:-/volume1/docker}/projectsend/config:/config
# Where to store files to share.
- ${BASEDIR:-/volume1/docker}/projectsend/data:/data
ports:
# WebUI
- 80:80
restart: unless-stopped