Nick Santos
Nick Santos
Thanks for the request! Ya, i wonder if we can come up with a way to configure this that's intuitive.
Oooh, I like this idea!!
fwiw, it's hard-coded to localhost in microk8s too: https://github.com/ubuntu/microk8s/blob/c70f5f25b1ecb5a7d75718ee3169e967610265c1/microk8s-resources/actions/registry.yaml#L77 if you do: ``` kubectl edit -n kube-public configmap local-registry-hosting ``` and change it to the VM IP, I think Tilt...
ya, i agree we should update that doc with some info about local-registry-hosting and how to edit it the background here: `default_registry` was originally written for a world where each...
for what it's worth, `git rev-parse HEAD` should work ok if you just have `.git/HEAD`, `.git/refs/heads`, and an empty `.git/objects` dir, so maybe we could set up default rules that...
@TGPSKI is there some reason why the `custom_build` workaround discussed above doesn't work for you? cf https://docs.tilt.dev/custom_build.html ``` custom_build( 'frontend', 'docker build -t $EXPECTED_REF frontend', ['./frontend'], ) ``` (in general,...
@electrofelix Ya, I appreciate that having tilt's docker_build work differently than `docker build .` is frustrating! Let me add a bit of historical context (since this was a fairly old...
interesting! thanks for reporting! out of curiosity, why do you have `.` in your `.dockerignore` if it does nothing? Can you work around this for now by removing it?
actually, i can reproduce this with Docker CLI too, i think the bug is here: https://github.com/docker/cli/blob/master/cli/command/cli.go#L316 where it doesn't attach any timeout to the initial unix socket connection
yes, that definitely looks plausible!