概要
- フル名
docker.io/stnsmith/fossflow- Registry
- docker.io
- 名前空間
- stnsmith
- リポジトリ
- fossflow
- キャッシュ Tag 数
- 176
- 最終同期
- 07/06/2026, 02:52 PM
概要
Fossflow 开源工作流与流程图协作镜像,浏览器端绘制 BPMN 风格流程图、支持协作评论与 PNG/SVG 导出,SQLite 持久化项目,适合团队内网流程文档。
詳細
stnsmith/fossflow 提供 Web 端流程图/工作流编辑器,支持节点拖拽、协作评论与 PNG/SVG 导出,数据默认存 SQLite volume。与 draw.io 自托管相比更聚焦流程文档;生产应固定 tag、启用用户认证、定期备份数据库 volume,并通过 Ingress TLS 对内发布,避免敏感业务流程图泄露至公网。
快速启动
docker run -d --name fossflow \
-p 3000:3000 \
-v $(pwd)/fossflow-data:/app/data \
docker.io/stnsmith/fossflow:latest
推荐实践
docker run -d --name fossflow \
--restart unless-stopped \
-p 3000:3000 \
-e TZ=Asia/Shanghai \
-v /data/fossflow:/app/data \
docker.io/stnsmith/fossflow:1.2.0
核心参数说明
-p 3000:3000— Web 编辑器界面-v .../fossflow-data:/app/data— SQLite 项目数据-e TZ=Asia/Shanghai— 协作时间戳--restart unless-stopped— 文档平台持续在线- 固定 tag — UI 与导出格式版本 pin
- 安全 — 启用登录,限制内网访问
Kubernetes
apiVersion: apps/v1
kind: Deployment
metadata:
name: fossflow
spec:
replicas: 1
selector:
matchLabels:
app: fossflow
template:
metadata:
labels:
app: fossflow
spec:
containers:
- name: fossflow
image: docker.io/stnsmith/fossflow:1.2.0
ports:
- containerPort: 3000
volumeMounts:
- name: data
mountPath: /app/data
volumes:
- name: data
persistentVolumeClaim:
claimName: fossflow-data
---
apiVersion: v1
kind: Service
metadata:
name: fossflow
spec:
selector:
app: fossflow
ports:
- port: 3000
targetPort: 3000
单副本 + PVC 备份 SQLite;Ingress 启用 TLS 与 SSO 可选。
最新 Tag(20 件)
すべての 176 件の Tag を見る →| Tag | アーキテクチャ | プッシュ日時 | サイズ | Digest | 同期 | 期望 | 操作 |
|---|---|---|---|---|---|---|---|
docker.io/stnsmith/fossflow :master-abb4c1d | linux/amd64linux/arm64 | 2026/06/02 03:24 | 58.5 MB | sha256:780b7d1775ab… | |||
docker.io/stnsmith/fossflow :latest | linux/amd64linux/arm64 | 2026/06/02 03:24 | 58.5 MB | sha256:780b7d1775ab… | |||
docker.io/stnsmith/fossflow :master | linux/amd64linux/arm64 | 2026/06/02 03:24 | 58.5 MB | sha256:780b7d1775ab… | |||
docker.io/stnsmith/fossflow :master-b69fc2e | linux/amd64linux/arm64 | 2026/05/14 11:29 | 57.8 MB | sha256:1a1e42ffed79… | |||
docker.io/stnsmith/fossflow :master-4426d08 | linux/amd64linux/arm64 | 2026/05/06 23:09 | 57.8 MB | sha256:f434d592221b… | |||
docker.io/stnsmith/fossflow :master-2b11f51 | linux/amd64linux/arm64 | 2026/04/28 23:23 | 57.8 MB | sha256:c5e468684510… | |||
docker.io/stnsmith/fossflow :master-4805d10 | linux/amd64linux/arm64 | 2026/04/28 22:42 | 57.8 MB | sha256:7145b59bb6e7… | |||
docker.io/stnsmith/fossflow :master-dc4ae32 | linux/amd64linux/arm64 | 2026/04/28 22:23 | 57.8 MB | sha256:15e28f819175… | |||
docker.io/stnsmith/fossflow :master-57de626 | linux/amd64linux/arm64 | 2026/04/27 23:05 | 58.2 MB | sha256:4a2d870462f6… | |||
docker.io/stnsmith/fossflow :master-8da9184 | linux/arm64linux/amd64 | 2026/04/24 19:08 | 59.1 MB | sha256:89b5f7217929… | |||
docker.io/stnsmith/fossflow :master-a13baa4 | linux/amd64linux/arm64 | 2026/04/21 17:15 | 58.2 MB | sha256:5111ba3b180a… | |||
docker.io/stnsmith/fossflow :master-f11fd81 | linux/amd64linux/arm64 | 2026/04/19 23:24 | 58.2 MB | sha256:0429deb75539… | |||
docker.io/stnsmith/fossflow :master-988c0ed | linux/amd64linux/arm64 | 2026/04/16 19:32 | 58.2 MB | sha256:9650a4b9f6e5… | |||
docker.io/stnsmith/fossflow :master-051c10d | linux/amd64linux/arm64 | 2026/04/12 22:56 | 60.6 MB | sha256:d4808f23c9d2… | |||
docker.io/stnsmith/fossflow :master-5472c9b | linux/amd64linux/arm64 | 2026/04/02 14:19 | 58.2 MB | sha256:476f6f56536f… | |||
docker.io/stnsmith/fossflow :master-bad7569 | linux/amd64linux/arm64 | 2026/04/01 12:34 | 58.2 MB | sha256:aa9f57c6e7c2… | |||
docker.io/stnsmith/fossflow :master-e7fafa6 | linux/amd64linux/arm64 | 2026/03/31 20:32 | 58.2 MB | sha256:82246b38e7e5… | |||
docker.io/stnsmith/fossflow :master-18f2ebd | linux/amd64linux/arm64 | 2026/03/30 00:40 | 58.2 MB | sha256:f7ac00aca1b6… | |||
docker.io/stnsmith/fossflow :master-da207ed | linux/amd64linux/arm64 | 2026/03/29 20:44 | 58.2 MB | sha256:83cd86cd0558… | |||
docker.io/stnsmith/fossflow :master-4197b5b | linux/amd64linux/arm64 | 2026/03/29 02:27 | 58.2 MB | sha256:3124cc49ca8f… |