fix: Update Docker run command to use absolute path for volume mount

This commit is contained in:
Stan
2025-08-14 13:31:09 +01:00
parent bf3a30fa12
commit 617b865480

View File

@@ -60,7 +60,7 @@ Go to https://stan-smith.github.io/FossFLOW/
docker compose up
# Or run directly from Docker Hub with persistent storage
docker run -p 80:80 -v ./diagrams:/data/diagrams stnsmith/fossflow:latest
docker run -p 80:80 -v $(pwd)/diagrams:/data/diagrams stnsmith/fossflow:latest
```
Server storage is enabled by default in Docker. Your diagrams will be saved to `./diagrams` on the host.