Need help with docker-code-server template.
Installed coder, configured template with architecture of host and docker_url. After successful build in workspaces started session, but there no button for vs code in browser.


docker_container resource you will set 
Dockerfile in the same folder as the main.tfimage
resource "docker_image" "image" {
name = "org/name:latest"
build {
path = "."
tag = ["org/name", "org/name:latest", "org/name:v0.1"]
}
keep_locally = true
}FROM codercom/code-server
# Install prerequisites
RUN apt-get install -y \
curl
CMD /bin/bash
# 123image = docker_image.basic_env.image_idFROM linuxserver/code-server:latest
RUN apt install -y curl./imagesbasic_env