mirror of
https://github.com/stan-smith/FossFLOW.git
synced 2025-12-23 22:48:57 -05:00
- Express.js backend for diagram CRUD operations - Filesystem persistence via Docker volume mount - Automatic storage detection in UI - Overwrite protection with confirmation dialogs - Server storage enabled by default in Docker Closes #48
13 lines
279 B
YAML
13 lines
279 B
YAML
services:
|
|
fossflow:
|
|
build: .
|
|
ports:
|
|
- "3000:80"
|
|
- "3001:3001"
|
|
environment:
|
|
- NODE_ENV=development
|
|
- ENABLE_SERVER_STORAGE=true
|
|
- STORAGE_PATH=/data/diagrams
|
|
- ENABLE_GIT_BACKUP=false
|
|
volumes:
|
|
- ./diagrams:/data/diagrams |