17 lines
369 B
YAML
17 lines
369 B
YAML
version: '3'
|
|
|
|
services:
|
|
projectsend:
|
|
image: lscr.io/linuxserver/projectsend:latest
|
|
container_name: projectsend
|
|
environment:
|
|
- PUID=${PUID}
|
|
- PGID=${PGID}
|
|
- TZ=${TZ}
|
|
- MAX_UPLOAD=5000
|
|
volumes:
|
|
- ./appdata/projectsend/config:/config
|
|
- /mnt/fileserver/files:/data
|
|
ports:
|
|
- 8080:80
|
|
restart: unless-stopped |