Skip to content
Snippets Groups Projects
Commit ad70899d authored by Mickael Masquelin's avatar Mickael Masquelin
Browse files

feat(exemples-terraform): Ajout exemple CT Ubuntu Jammy + nginx

parent d8bcb58a
No related branches found
No related tags found
No related merge requests found
provider "docker" {
host = "unix:///var/run/docker.sock"
}
resource "docker_image" "ubuntu" {
name = "local/ubu-form-cnrs-nginx:latest"
}
resource "docker_container" "terraform_container" {
image = docker_image.ubuntu.latest
name = "nginx_via_terraform"
ports {
internal = "80"
external = "5555"
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment