Created
June 9, 2024 17:14
-
-
Save SofianeHamlaoui/1f926cc4b2f0ac2407126c7a7f517d02 to your computer and use it in GitHub Desktop.
Updated Project Send Docker Compose File
This file contains hidden or 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
services: | |
projectsend: | |
image: linuxserver/projectsend | |
container_name: projectsend | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=Europe/Paris | |
- MAX_UPLOAD=51200 | |
volumes: | |
- /apps/projectsend/config:/config #Config Volume Goes Here | |
- /apps/projectsend/data:/data #File Storage Volume Goes Here | |
ports: | |
- 8010:80 | |
restart: unless-stopped | |
db: | |
image: mariadb:lts | |
command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin | |
environment: | |
- MARIADB_ROOT_PASSWORD=mariadbnc | |
- TZ=Europe/Paris | |
- MARIADB_DATABASE=projectsend | |
- MARIADB_USER=projectsend | |
- MARIADB_PASSWORD=projectsend | |
volumes: | |
- ./db:/var/lib/mysql | |
restart: unless-stopped |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment