Picoshare
version: '3.3'
services:
picoshare:
environment:
- PORT=3001
- PS_SHARED_SECRET=XXXXXX
ports:
- '3001:3001/tcp'
volumes:
- '/srv/path/Files/Picoshare/data:/data'
container_name: picoshare
image: mtlynch/picoshare
restart: unless-stopped
If behind a reverse proxy like nginx proxy manager, add this to the config in the advanced section of your domain with the values of your choice :
proxy_read_timeout 300;
proxy_connect_timeout 300;
proxy_send_timeout 300;
client_max_body_size 50000M;