Nick Sieger

Results 59 comments of Nick Sieger

Thanks for filing! At the moment, Tilt's built-in docker/buildkit client does not support the `cache-to` option yet, so I don't think the usual approach can be translated over to Tilt....

Sure, here's a Dockerfile snippet, or you can run these commands manually on Debian or Ubuntu. ```Dockerfile FROM node:18-bookworm ENV DEBIAN_FRONTEND=noninteractive WORKDIR /root RUN apt update && apt install -y...

FYI, I'm using regular `protoc` instead of `grpc_tools_node_protoc`, the latter seems to bundle its own version of proto-gen-js. ```bash protoc \ --plugin=protoc-gen-js="$(which protoc-gen-js)" \ --js_out=import_style=commonjs,binary:./protos \ --plugin=protoc-gen-grpc="$(which grpc_tools_node_protoc_plugin)" \ --grpc_out=grpc_js:./protos...

1. There is no option to enable fromObject in protoc-gen-js, the only way is to build a patched version from source. I added it as an opt-in option here in...

Is there anything that makes you think this is related to compose specifically and not any docker command? Are you able to `docker run` or `docker ps` against the remote...

I had this problem too. ```sh $ git branch -vva | grep HEAD remotes/upstream/HEAD -> upstream/main ``` I have a `.git/refs/remotes/upstream/HEAD` file. I'm not sure how it was created; its...

Feel free to send a pull request with that change, I'll merge it right away. Thanks for reporting the issue.

@Wulfheart for example, if you have two compose files `a.yaml` and `b.yaml` that both define a service named `foo`, you'd write in your Tiltfile ```starlark docker_compose('a.yaml', project_name='a') dc_resource('foo', project_name='a', new_name='a-foo')...

How are you generating YAML? If you're using one of the `SwaggerYard::Swagger` or `OpenAPI` objects, may I suggest modifying your code to call the `#to_h` method first like so: ```ruby...