Space Raccoon
Space Raccoon
Thought I would just add that when manually specifying the font to Times New Roman, you do get the expected results with go-graphviz renderer.
Here is a workaround in case others want an escape hatch, in case the default stays the same. This relies on `"github.com/flopp/go-findfont"` ```go func useSystemFont(g *graphviz.Graphviz, name string) { fontPath,...
FWIW: 1. using `go-graphviz` to export to PNG in that case fails silently 2. using `graphviz dot` to convert between DOT to SVG works as expected (image appears on the...
Note: I am on macOS, comparing with graphviz dot 5.0.1, from homebrew. Brew is compiling with ``` --disable-debug --disable-dependency-tracking --prefix=#{prefix} --disable-php --disable-swig --disable-tcl --with-quartz --without-freetype2 --without-gdk --without-gdk-pixbuf --without-gtk --without-poppler --without-qt...
@Aposhian I just spent some time testing cache sharing modes (private, locked, shared) in buildkitd/buildctl - I do assume the behavior is the same with buildx. Here is my understanding:...
Thought I would clarify what happens when you do NOT use an id. It will default to the target (eg: mount path). So, in OP case, the cache for apt...
UID/GID I have not tested so I do not know (I will check later today) That being said I would be weary of using the same id and sharing mode...
To share cache between hosts, I would suggest using registry stored cache - see https://github.com/moby/buildkit#export-cache Trying to share host folders used by buildkit between machines does not sound like a...
Layer cache AFAIK. I would not use mount cache as a form of persistent storage... and I would not try to share them across hosts. https://github.com/moby/buildkit/blob/master/frontend/dockerfile/docs/reference.md#run---mounttypecache Does spell it out:...