mirror of
https://github.com/DumbWareio/DumbDrop.git
synced 2025-11-02 13:03:31 +00:00
* feat: Add development environment configuration - Create dev/dev.sh script for simplified development workflow - Add docker-compose.dev.yml for local development setup - Update .gitignore to exclude dev directory except specific files - Add development section to README.md with guide reference * docs: Update README and docker-compose with comprehensive setup instructions and configuration options
13 lines
659 B
YAML
13 lines
659 B
YAML
services:
|
|
dumbdrop:
|
|
image: dumbwareio/dumbdrop:latest
|
|
ports:
|
|
- 3000:3000
|
|
volumes:
|
|
# Replace "./local_uploads" ( before the colon ) with the path where the files land
|
|
- ./local_uploads:/app/uploads
|
|
environment:
|
|
DUMBDROP_TITLE: DumbDrop # Replace "DumbDrop" with the title you want to display
|
|
MAX_FILE_SIZE: 1024 # Replace "1024" with the maximum file size you want to allow in MB
|
|
DUMBDROP_PIN: 123456 # Replace "123456" with the pin you want to use
|
|
AUTO_UPLOAD: false # Set to true if you want dont want to have to click the upload button |