remote-docker icon indicating copy to clipboard operation
remote-docker copied to clipboard

Doesnt show IP ADDRESS

Open dreadstar opened this issue 2 years ago • 0 comments

I am attempting to use the project with the Oracle OCI Free tier. Thank you very much for creating this. I am eager to use it but running into some issues.
I had to make the following changes to get terraform apply to work.. getting past Authentication and Out of host capacity errors:

  • Had to add a provider block to providers.tf
provider "oci" {
  region              = "IAD"
  # "us-ashburn-1"
  auth                = "SecurityToken"
  config_file_profile = "docker-remote"
}

** created "docker-remote" profile with oci session authenticate

  • selected shape "VM.Standard.A1.Flex" and set how_many_nodes to 0 in variables.tf

I followed the instructions through to sh-add id_rsa and running terraform apply a second time.

However, only the compartment is created (visible on the OCI console); not the VM and I dont get the IP address from the terraform apply run as indicated in the project documentation.

I also noticed that when I run terraform show, there is a 404 error on:

# data.http.apt_repo_key:
data "http" "apt_repo_key" {
    body                 = <<-EOT
        <!DOCTYPE html>
        <html lang=en>
          <meta charset=utf-8>
          <meta name=viewport content="initial-scale=1, minimum-scale=1, width=device-width">
          <title>Error 404 (Not Found)!!1</title>

dreadstar avatar Aug 08 '23 04:08 dreadstar