Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save UnitedWithCode/48b7c79b7d36166662260ab00d4b4dba to your computer and use it in GitHub Desktop.
Save UnitedWithCode/48b7c79b7d36166662260ab00d4b4dba to your computer and use it in GitHub Desktop.
DB Tech ProjectSend
---
version: "2.1"
services:
projectsend:
image: linuxserver/projectsend
container_name: projectsend
environment:
- PUID=998
- PGID=100
- TZ=America/Denver
- MAX_UPLOAD=5000
volumes:
- /srv/dev-disk-by-label-Files/config/ProjectSend:/config #Config Volume Goes Here
- /srv/dev-disk-by-label-Files/ProjectSend:/data #File Storage Volume Goes Here
- /etc/timezone:/etc/timezone:ro #This is for TimeZone
ports:
- 8010:80
restart: unless-stopped
db:
image: mariadb
container_name: mariadb-projectsend
environment:
MYSQL_ROOT_PASSWORD: projectsend
MYSQL_DATABASE: projectsend
MYSQL_USER: projectsend
MYSQL_PASSWORD: projectsend
volumes:
- /srv/dev-disk-by-label-Files/config/projectsend/mariadb:/var/lib/mysql #Database Volume Goes Here
- /etc/timezone:/etc/timezone:ro #This is for TimeZone
restart: unless-stopped
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment