mirror of
https://github.com/coder/coder.git
synced 2025-07-15 22:20:27 +00:00
examples: support both localhost and 127.0.0.1 in Docker examples (#4306)
And some minor fixes
This commit is contained in:
@ -61,7 +61,7 @@ resource "docker_container" "workspace" {
|
||||
hostname = lower(data.coder_workspace.me.name)
|
||||
dns = ["1.1.1.1"]
|
||||
# Use the docker gateway if the access URL is 127.0.0.1
|
||||
entrypoint = ["sh", "-c", replace(coder_agent.main.init_script, "127.0.0.1", "host.docker.internal")]
|
||||
entrypoint = ["sh", "-c", replace(coder_agent.main.init_script, "/localhost|127\\.0\\.0\\.1/", "host.docker.internal")]
|
||||
env = ["CODER_AGENT_TOKEN=${coder_agent.main.token}"]
|
||||
host {
|
||||
host = "host.docker.internal"
|
||||
|
Reference in New Issue
Block a user