Hi folks
I have been investigating all this week on how to store small artifacts in a place between dagger runs ref [previous messgae](#1278620859304640534 message). i finally setled on using a local registry instead of using a mounted cache. but this also is failing at least on wsl. I am not sure what is going on and would appreciate any suggestions
I attached the code i use to start the local registry using go after scouring from posts here. every now and then the dagger engine restarts i have no idea why i just see that it did
docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
404b3c2e8c04 registry.dagger.io/engine:v0.12.5 "dagger-entrypoint.s…" 9 minutes ago Up 9 minutes dagger-engine-7d4613636ea6099e
0cac1be05978 registry:2 "/entrypoint.sh /etc…" 31 minutes ago Up 31 minutes dagger-registry
_, err = dag.Container().Publish(ctx, "localhost:5000/my-org/my-repo:latest")
if err != nil {
return fmt.Errorf("publish sha file failed for %s", shafile)
}
any ideas on how
Regards