Is anyone using VSCode / Remote Containers (on Win...
# golang
w
Is anyone using VSCode / Remote Containers (on Windows) for their development e.g. - https://www.pulumi.com/blog/vscode-devcontainers/ If so, how have you configured docker to run. Trying to run the basic example tests (go test ./...) from this https://github.com/pulumi/pulumi-aws/tree/master/examples/webserver-go and the container times out continually. Any tips or anyone experiencing the same?
l
How much memory are you allocating for the container? The go SDK is quite large and the compilation/run step uses a fair amount of memory.
w
l
Might be worth trying 8gb. Also this directory you linked doesn't have any tests in it. The parent directory does, but you must specify the
-tag=all
build tag https://github.com/pulumi/pulumi-aws/tree/master/examples https://github.com/pulumi/pulumi-aws/blob/master/examples/examples_go_test.go#L2
w
i'll try with 8Gb as well