-
Notifications
You must be signed in to change notification settings - Fork 226
Open
Labels
bugSomething isn't workingSomething isn't working
Description
What are you really trying to do?
Goal: use the vscode devcontainer implementation with a minimum of configuration/overrides/additions.
Got things working as described below. Looking for guidance on these "fixes", and suspecting the documentation should be updated to be more clear on these points.
Describe the bug/repro/fixes
There seem to be two things required to get examples to run.
- The docker network ("temporal") is not configured for use as the DefaultHostPort by the Temporal Go SDK, which means the default
127.0.0.1:7233produces failure until its correctly addressed. The following modification describes the change necessary to everyc, err := client.Dial(client.Options{})encountered in the examples.
clientOptions := client.Options{
HostPort: "temporal:7233",
}
c, err := client.Dial(clientOptions)
Is there a way to globally set the HostPort default to temporal:7233?
- To get the containers to all start, I added empty
development_es.yamlat<repo>/.devcontainer/dynamicconfig/development_es.yaml.
Thank you for this repository.
Environment/Versions
OSX Monterey, Intel Chip
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working