Skip to content

Instantly share code, notes, and snippets.

@SofianeHamlaoui
Created June 9, 2024 17:14
Show Gist options
  • Save SofianeHamlaoui/1f926cc4b2f0ac2407126c7a7f517d02 to your computer and use it in GitHub Desktop.
Save SofianeHamlaoui/1f926cc4b2f0ac2407126c7a7f517d02 to your computer and use it in GitHub Desktop.
Updated Project Send Docker Compose File
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