Marcin Kulik
Marcin Kulik
When you run `ssh username@remote-host`, this command already runs inside a virtual terminal, so you need to input your password with ht's input API, e.g.: ```json { "type": "sendKeys", "keys":...
This error comes from `Asciinema.Recordings.save_file` which is trying to save the file in the recordings directory on the filesystem. This operation does 2 things: 1. creates a nested directory structure...
Thanks for investigating further. I think we only need root in the builder image. In the final image it should be possible to use a regular user indeed.
The only issue with changing the user now is that it may break existing installations. People have root-owned files and the new container won't be able to read them... Any...
I looked more into this, tested with rootless podman. I started it like this: ``` # start temporary Postgres container podman run --rm -p 5432:5432 -e POSTGRES_HOST_AUTH_METHOD=trust docker.io/library/postgres:14 ``` ```...
> well than it will be a different gitops engine for most of the people running none podman/docker deployments ... Yeah, exactly. I don't think we'll be able to find...
I'm wrapping up CLI 3.0, which is my focus at the moment. Once that's out the door I plan to switch gears to the server, do a little redesign and...
Good news! I implemented recording search, which indexes titles, description, and _full terminal session content_ :) It uses Postgres' native FTS support, so no extra components (such as ElasticSearch) are...
> is there a way to restrict searches to titles or descriptions for when that's wanted? That's not implemented at the moment but it would be possible. The search index...
I don't think having auto update enabled by default is really necessary (we don't do much if at all with timezones in this project), so I believe we should just...