Aleksandr Ilin

Results 16 comments of Aleksandr Ilin

@anight @tony2001 maybe you're interested in this.

Probably disabling `atexit` could help. ``` 17:05:21 [sentry] DEBUG: Setting up integrations (with default = True) 17:05:21 [sentry] DEBUG: Setting up previously not enabled integration logging 17:05:21 [sentry] DEBUG: Setting...

Seems like the problem is coming from `sentry_sdk.init( ... debug=True ... )` param, seems that disabling debug helped. I was happening more frequently when reporting transactions/spans and I'm not currently...

# My Workaround Hiding `docker-credential-pass` from `which` / `PATH` and using separate config for example `$PWD/.docker/config.json` is required to make both Base64 and `pass` to work on same host for...

@lorddaedra thanks for PR, ported to https://github.com/docker-library/php/pull/697.

Yeah, I need to access some credentials in `install.sh` and for now I had to try to fall back to mounting some kind of file instead of using env vars....

## Can't use `devcontainer-feature.json:.mounts` ```json "mounts": [ { "source": "$HOME/.netrc", "target": "/root/.netrc", "type": "bind" } ] ``` Because it's not mounted when `install.sh` is executed: ```text > [dev_containers_target_stage 5/6] \...

Workaround while we wait for `devcontainer down` to be released: * https://github.com/devcontainers/ci/issues/207#issuecomment-1672566863

For more context here is how I try to run it: * https://github.com/devcontainers/ci/issues/207#issuecomment-1672566863

Well, not sure what of those two was but now I works. ```diff diff --git a/package.json b/package.json index 1275861..d01b036 100644 --- a/package.json +++ b/package.json @@ -109,5 +109,11 @@ "vscode-dev-containers": "https://github.com/microsoft/vscode-dev-containers/releases/download/v0.245.2/vscode-dev-containers-0.245.2.tgz",...