-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename: ROOT_CONTAINER->ROOT_IMAGE, BASE_CONTAINER->BASE_IMAGE (#2155)
* Rename: ROOT_CONTAINER->ROOT_IMAGE, BASE_CONTAINER->BASE_IMAGE * Add changelog
- Loading branch information
1 parent
b3ceb03
commit 5365b9f
Showing
19 changed files
with
48 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Changelog | ||
|
||
## 2024-10-09 | ||
|
||
### Changed | ||
|
||
_This change might only breaking if you build your custom set of images._ | ||
|
||
- **Breaking:** Rename: `ROOT_CONTAINER`->`ROOT_IMAGE`, `BASE_CONTAINER`->`BASE_IMAGE` ([#2154](https://github.com/jupyter/docker-stacks/pull/2154), [#2155](https://github.com/jupyter/docker-stacks/pull/2155)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ | |
# https://quay.io/repository/jupyter/base-notebook?tab=tags | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/base-notebook:2024-10-07 | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/base-notebook:2024-10-07 | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/pyspark-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/pyspark-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/docker-stacks-foundation | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/docker-stacks-foundation | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,9 +3,9 @@ | |
|
||
# Ubuntu 24.04 (noble) | ||
# https://hub.docker.com/_/ubuntu/tags?page=1&name=noble | ||
ARG ROOT_CONTAINER=ubuntu:24.04 | ||
ARG ROOT_IMAGE=ubuntu:24.04 | ||
|
||
FROM $ROOT_CONTAINER | ||
FROM $ROOT_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
ARG NB_USER="jovyan" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/minimal-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/minimal-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/base-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/base-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/minimal-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/minimal-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/minimal-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/minimal-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# Distributed under the terms of the Modified BSD License. | ||
ARG REGISTRY=quay.io | ||
ARG OWNER=jupyter | ||
ARG BASE_CONTAINER=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_CONTAINER | ||
ARG BASE_IMAGE=$REGISTRY/$OWNER/scipy-notebook | ||
FROM $BASE_IMAGE | ||
|
||
LABEL maintainer="Jupyter Project <[email protected]>" | ||
|
||
|