mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-14 18:12:47 +00:00
30 lines
1.0 KiB
YAML
30 lines
1.0 KiB
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:
|
|
# Where to store projectsend 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
|