diff --git a/content/manuals/docker-hub/service-accounts.md b/content/manuals/docker-hub/service-accounts.md index a9f4d5db9bb3..ea412ccf9e13 100644 --- a/content/manuals/docker-hub/service-accounts.md +++ b/content/manuals/docker-hub/service-accounts.md @@ -20,10 +20,6 @@ weight: 50 A service account is a Docker ID used for automated management of container images or containerized applications. Service accounts are typically used in automated workflows, and don't share Docker IDs with the members in the organization. Common use cases for service accounts include mirroring content on Docker Hub, or tying in image pulls from your CI/CD process. -> [!NOTE] -> -> All paid Docker subscriptions include up to 5000 pulls per day per authenticated user. If you require a higher number of pulls, you can purchase an Enhanced Service Account add-on. Note that you can only purchase an Enhanced Service Account add-on if you are on a current Service Account agreement. - ## Enhanced Service Account add-on tiers Refer to the following table for details on the Enhanced Service Account add-ons: diff --git a/content/manuals/engine/install/centos.md b/content/manuals/engine/install/centos.md index 08246fbe3cdf..a79b2cd0535b 100644 --- a/content/manuals/engine/install/centos.md +++ b/content/manuals/engine/install/centos.md @@ -119,8 +119,8 @@ $ sudo dnf config-manager --add-repo {{% param "download-url-base" %}}/docker-ce ```console $ dnf list docker-ce --showduplicates | sort -r - docker-ce.x86_64 3:27.4.0-1.el9 docker-ce-stable - docker-ce.x86_64 3:27.3.1-1.el9 docker-ce-stable + docker-ce.x86_64 3:{{% param "docker_ce_version" %}}-1.el9 docker-ce-stable + docker-ce.x86_64 3:{{% param "docker_ce_version_prev" %}}-1.el9 docker-ce-stable <...> ``` @@ -129,7 +129,7 @@ $ sudo dnf config-manager --add-repo {{% param "download-url-base" %}}/docker-ce Install a specific version by its fully qualified package name, which is the package name (`docker-ce`) plus the version string (2nd column), - separated by a hyphen (`-`). For example, `docker-ce-3:27.4.0-1.el9`. + separated by a hyphen (`-`). For example, `docker-ce-3:{{% param "docker_ce_version" %}}-1.el9`. Replace `` with the desired version and then run the following command to install: diff --git a/content/manuals/engine/install/debian.md b/content/manuals/engine/install/debian.md index 8ba4241e5b65..1a0e17c9f10f 100644 --- a/content/manuals/engine/install/debian.md +++ b/content/manuals/engine/install/debian.md @@ -155,15 +155,15 @@ Docker from the repository. # List the available versions: $ apt-cache madison docker-ce | awk '{ print $3 }' - 5:27.4.0-1~debian.12~bookworm - 5:27.3.1-1~debian.12~bookworm + 5:{{% param "docker_ce_version" %}}-1~debian.12~bookworm + 5:{{% param "docker_ce_version_prev" %}}-1~debian.12~bookworm ... ``` Select the desired version and install: ```console - $ VERSION_STRING=5:27.4.0-1~debian.12~bookworm + $ VERSION_STRING=5:{{% param "docker_ce_version" %}}-1~debian.12~bookworm $ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin ``` diff --git a/content/manuals/engine/install/fedora.md b/content/manuals/engine/install/fedora.md index d2b1d80963ac..9ee612c60cf8 100644 --- a/content/manuals/engine/install/fedora.md +++ b/content/manuals/engine/install/fedora.md @@ -116,8 +116,8 @@ $ sudo dnf-3 config-manager --add-repo {{% param "download-url-base" %}}/docker- ```console $ dnf list docker-ce --showduplicates | sort -r - docker-ce.x86_64 3:27.4.0-1.fc41 docker-ce-stable - docker-ce.x86_64 3:27.3.1-1.fc41 docker-ce-stable + docker-ce.x86_64 3:{{% param "docker_ce_version" %}}-1.fc41 docker-ce-stable + docker-ce.x86_64 3:{{% param "docker_ce_version_prev" %}}-1.fc41 docker-ce-stable <...> ``` @@ -126,7 +126,7 @@ $ sudo dnf-3 config-manager --add-repo {{% param "download-url-base" %}}/docker- Install a specific version by its fully qualified package name, which is the package name (`docker-ce`) plus the version string (2nd column), - separated by a hyphen (`-`). For example, `docker-ce-3:27.4.0-1.fc41`. + separated by a hyphen (`-`). For example, `docker-ce-3:{{% param "docker_ce_version" %}}-1.fc41`. Replace `` with the desired version and then run the following command to install: diff --git a/content/manuals/engine/install/raspberry-pi-os.md b/content/manuals/engine/install/raspberry-pi-os.md index 9cfd020e9075..ca4d69caedd7 100644 --- a/content/manuals/engine/install/raspberry-pi-os.md +++ b/content/manuals/engine/install/raspberry-pi-os.md @@ -143,15 +143,15 @@ Docker from the repository. # List the available versions: $ apt-cache madison docker-ce | awk '{ print $3 }' - 5:27.4.0-1~raspbian.12~bookworm - 5:27.3.1-1~raspbian.12~bookworm + 5:{{% param "docker_ce_version" %}}-1~raspbian.12~bookworm + 5:{{% param "docker_ce_version_prev" %}}-1~raspbian.12~bookworm ... ``` Select the desired version and install: ```console - $ VERSION_STRING=5:27.4.0-1~raspbian.12~bookworm + $ VERSION_STRING=5:{{% param "docker_ce_version" %}}-1~raspbian.12~bookworm $ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin ``` diff --git a/content/manuals/engine/install/rhel.md b/content/manuals/engine/install/rhel.md index 9e9877038e3b..e0678357fc2f 100644 --- a/content/manuals/engine/install/rhel.md +++ b/content/manuals/engine/install/rhel.md @@ -119,8 +119,8 @@ $ sudo dnf config-manager --add-repo {{% param "download-url-base" %}}/docker-ce ```console $ dnf list docker-ce --showduplicates | sort -r - docker-ce.x86_64 3:27.4.0-1.el9 docker-ce-stable - docker-ce.x86_64 3:27.3.1-1.el9 docker-ce-stable + docker-ce.x86_64 3:{{% param "docker_ce_version" %}}-1.el9 docker-ce-stable + docker-ce.x86_64 3:{{% param "docker_ce_version_prev" %}}-1.el9 docker-ce-stable <...> ``` @@ -129,7 +129,7 @@ $ sudo dnf config-manager --add-repo {{% param "download-url-base" %}}/docker-ce Install a specific version by its fully qualified package name, which is the package name (`docker-ce`) plus the version string (2nd column), - separated by a hyphen (`-`). For example, `docker-ce-3:27.4.0-1.el9`. + separated by a hyphen (`-`). For example, `docker-ce-3:{{% param "docker_ce_version" %}}-1.el9`. Replace `` with the desired version and then run the following command to install: diff --git a/content/manuals/engine/install/sles.md b/content/manuals/engine/install/sles.md index 6a9313fb0b7e..b148e60a1b10 100644 --- a/content/manuals/engine/install/sles.md +++ b/content/manuals/engine/install/sles.md @@ -140,8 +140,8 @@ $ sudo zypper addrepo {{% param "download-url-base" %}}/docker-ce.repo ```console $ sudo zypper search -s --match-exact docker-ce | sort -r - v | docker-ce | package | 3:27.4.0-1 | s390x | Docker CE Stable - s390x - v | docker-ce | package | 3:27.3.1-1 | s390x | Docker CE Stable - s390x + v | docker-ce | package | 3:{{% param "docker_ce_version" %}}-1 | s390x | Docker CE Stable - s390x + v | docker-ce | package | 3:{{% param "docker_ce_version_prev" %}}-1 | s390x | Docker CE Stable - s390x ``` The list returned depends on which repositories are enabled, and is specific @@ -149,7 +149,7 @@ $ sudo zypper addrepo {{% param "download-url-base" %}}/docker-ce.repo Install a specific version by its fully qualified package name, which is the package name (`docker-ce`) plus the version string (2nd column), - separated by a hyphen (`-`). For example, `docker-ce-3:27.4.0`. + separated by a hyphen (`-`). For example, `docker-ce-3:{{% param "docker_ce_version" %}}`. Replace `` with the desired version and then run the following command to install: diff --git a/content/manuals/engine/install/ubuntu.md b/content/manuals/engine/install/ubuntu.md index 2e290a43b5bf..ae89082b26d5 100644 --- a/content/manuals/engine/install/ubuntu.md +++ b/content/manuals/engine/install/ubuntu.md @@ -158,15 +158,15 @@ Docker from the repository. # List the available versions: $ apt-cache madison docker-ce | awk '{ print $3 }' - 5:27.4.0-1~ubuntu.24.04~noble - 5:27.3.1-1~ubuntu.24.04~noble + 5:{{% param "docker_ce_version" %}}-1~ubuntu.24.04~noble + 5:{{% param "docker_ce_version_prev" %}}-1~ubuntu.24.04~noble ... ``` Select the desired version and install: ```console - $ VERSION_STRING=5:27.4.0-1~ubuntu.24.04~noble + $ VERSION_STRING=5:{{% param "docker_ce_version" %}}-1~ubuntu.24.04~noble $ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin ``` diff --git a/content/manuals/security/for-admins/access-tokens.md b/content/manuals/security/for-admins/access-tokens.md index f19bcedb9d97..afdc5eef8eca 100644 --- a/content/manuals/security/for-admins/access-tokens.md +++ b/content/manuals/security/for-admins/access-tokens.md @@ -12,13 +12,15 @@ The organization access tokens feature is currently in [Beta](../../release-life > [!WARNING] > -> Organization access tokens aren't currently compatible with the following services: +> Organization access tokens (OATs) are not intended to be used with Docker Desktop, and are incompatible. +> +> OATs are also currently incompatible with the following services: > > - Docker Build Cloud > - Docker Scout > - Docker REST APIs > -> If you use these services, you must use personal access tokens instead. +> If you use Docker Desktop or one of these services, you must use personal access tokens instead. An organization access token (OAT) is like a [personal access token (PAT)](/security/for-developers/access-tokens/), but an OAT is associated with diff --git a/hugo.yaml b/hugo.yaml index fb311ec1838a..9ef72604c382 100644 --- a/hugo.yaml +++ b/hugo.yaml @@ -108,6 +108,7 @@ params: latest_engine_api_version: "1.47" docker_ce_version: "27.4.0" + docker_ce_version_prev: "27.3.1" compose_version: "v2.30.3" compose_file_v3: "3.8" compose_file_v2: "2.4"