Igor Nikolaev
Igor Nikolaev
> 👋 @inikolaev to our knowledge we're not doing any operations with shared memory or managing threads. Can you elaborate on your setup? We're curious why you need to confirm...
@hollabaq86 Sounds good to me! :) Also looking at the code it looks like it's possible to supply own `http_strategy` which would handle that, but then some code would have...
I have a similar request - sometimes I end-up with an empty cache if build fails and cache is not populated and there's no way to fix that unless I...
Running into the same issue on the macOS at least, but haven't yet tried in the actual CI. Looking at the source it looks like it's possible to pass `TC_HOST`...
@vietj I will try to look into it. There's a lot stuff going on in the code and I need some time to figure it out. One idea from the...
Perhaps a simple code example of how it's used internally would be good, not sure how to put it in text though :) This is how I understand this at...
Was just looking for exactly this feature - I would like to be able to start a database container, but I need it to have some additional extensions to be...
Does this package work or am I missing some extra steps to set it up? Here's my `Dockerfile`: ``` FROM public.ecr.aws/docker/library/postgres:13-alpine RUN apk add postgresql-pg_cron CMD ["-c", "shared_preload_libraries=pg_cron", "-c", "cron.database_name=postgres",...
That explains why I managed to make it work with PostgreSQL 15, though I still had to make some adjustments: ``` RUN apk add --no-cache postgresql-pg_cron sudo \ && cp...
So I guess I should either try another PostgreSQL base image or build `pg_cron` from source.