mirror of
https://github.com/DumbWareio/DumbDrop.git
synced 2025-10-22 23:31:57 +00:00
add svg to login / index for favicon ensure file sanitization before and during notification
33 lines
871 B
YAML
33 lines
871 B
YAML
services:
|
|
app:
|
|
build:
|
|
context: ..
|
|
dockerfile: dev/Dockerfile.dev
|
|
target: development
|
|
args:
|
|
DOCKER_BUILDKIT: 1
|
|
x-bake:
|
|
options:
|
|
dockerignore: dev/.dockerignore
|
|
volumes:
|
|
- ..:/usr/src/app
|
|
- /usr/src/app/node_modules
|
|
ports:
|
|
- "3000:3000"
|
|
environment:
|
|
- NODE_ENV=development
|
|
- PORT=3000
|
|
- MAX_FILE_SIZE=1024
|
|
- AUTO_UPLOAD=false
|
|
- DUMBDROP_TITLE=DumbDrop-Dev
|
|
# - APPRISE_URL=ntfy://dumbdrop-test
|
|
# - APPRISE_MESSAGE=[DEV] New file uploaded - {filename} ({size}), Storage used {storage}
|
|
# - APPRISE_SIZE_UNIT=auto
|
|
command: npm run dev
|
|
restart: unless-stopped
|
|
# Enable container debugging if needed
|
|
# stdin_open: true
|
|
# tty: true
|
|
# Add development labels
|
|
labels:
|
|
- "dev.dumbware.environment=development" |