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
349 B
YAML
13 lines
349 B
YAML
services:
|
|
fossflow:
|
|
image: stnsmith/fossflow:latest
|
|
pull_policy: always
|
|
ports:
|
|
- 80:80
|
|
environment:
|
|
- NODE_ENV=production
|
|
- ENABLE_SERVER_STORAGE=${ENABLE_SERVER_STORAGE:-true}
|
|
- STORAGE_PATH=/data/diagrams
|
|
- ENABLE_GIT_BACKUP=${ENABLE_GIT_BACKUP:-false}
|
|
volumes:
|
|
- ./diagrams:/data/diagrams |