Rename: ROOT_CONTAINER->ROOT_IMAGE, BASE_CONTAINER->BASE_IMAGE (#2155)

* Rename: ROOT_CONTAINER->ROOT_IMAGE, BASE_CONTAINER->BASE_IMAGE

* Add changelog
This commit is contained in:
Ayaz Salikhov
2024-10-09 15:02:53 +01:00
committed by GitHub
parent b3ceb038e5
commit 5365b9f79f
19 changed files with 48 additions and 39 deletions

View File

@@ -16,7 +16,7 @@ target "base-notebook" {
docker-stacks-foundation = "target:foundation"
}
args = {
BASE_CONTAINER = "docker-stacks-foundation"
BASE_IMAGE = "docker-stacks-foundation"
}
tags = ["base-notebook"]
}
@@ -27,7 +27,7 @@ target "minimal-notebook" {
base-notebook = "target:base-notebook"
}
args = {
BASE_CONTAINER = "base-notebook"
BASE_IMAGE = "base-notebook"
}
tags = ["minimal-notebook"]
}
@@ -38,7 +38,7 @@ target "custom-notebook" {
minimal-notebook = "target:minimal-notebook"
}
args = {
BASE_CONTAINER = "minimal-notebook"
BASE_IMAGE = "minimal-notebook"
}
tags = ["custom-jupyter"]
}