Last active
November 17, 2021 11:10
-
-
Save dnburgess/756c4d7fca28c03be2d726b845e4cac6 to your computer and use it in GitHub Desktop.
DB Tech ProjectSend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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