cleanup repo

This commit is contained in:
L4RM4ND
2023-02-23 22:33:13 +01:00
parent 4e9a51c207
commit 153ba415ba
182 changed files with 84 additions and 84 deletions

View File

@@ -0,0 +1,3 @@
# References
- https://hub.docker.com/r/linuxserver/projectsend

View File

@@ -0,0 +1,32 @@
version: "2.1"
services:
projectsend:
image: lscr.io/linuxserver/projectsend:latest
container_name: projectsend
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Berlin
- MAX_UPLOAD=5000
volumes:
- /mnt/docker-volumes/projectsend/config:/config
- /mnt/docker-volumes/projectsend/data:/data
ports:
- 8080:80 # WEB UI
restart: unless-stopped
depends_on:
- database
database:
image: mariadb:10.5
container_name: projectsend-db
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
restart: unless-stopped
volumes:
- /mnt/docker-volumes/projectsend/database:/var/lib/mysql
environment:
# the projectsend setup ui will ask for a database hostname; specify "database", as this is the container hostname
- MYSQL_DATABASE=projectsend # use this name during projectsend database setup
- MYSQL_USER=projectsend # use this name during projectsend database setup
- MYSQL_PASSWORD=projectsend # use this pw during projectsend database setup
- MYSQL_ROOT_PASSWORD=projectsend