Skip to content

Commit 13677e8

Browse files
authored
Merge pull request #21368 from docker/published-update
publish updates from main
2 parents ffbe6b9 + 9eeb171 commit 13677e8

File tree

20 files changed

+104
-56
lines changed

20 files changed

+104
-56
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema
2+
name: New guide
3+
description: Propose a new guide for Docker docs
4+
labels:
5+
- area/guides
6+
- kind/proposal
7+
8+
body:
9+
- type: textarea
10+
attributes:
11+
label: Description
12+
description: |
13+
Briefly describe the topic that you would like us to cover.
14+
validations:
15+
required: true
16+
- type: checkboxes
17+
attributes:
18+
label: Would you like to contribute this guide?
19+
description: |
20+
If you select this checkbox, you indicate that you're willing to
21+
contribute this guide. If not, we will treat this issue as a request,
22+
and someone (a Docker employee, Docker captain, or community member)
23+
may pick it up and start working on it.
24+
options:
25+
- label: Yes

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
ARG ALPINE_VERSION=3.20
55
ARG GO_VERSION=1.23
66
ARG HTMLTEST_VERSION=0.17.0
7-
ARG HUGO_VERSION=0.136.5
7+
ARG HUGO_VERSION=0.138.0
88
ARG NODE_VERSION=22
99
ARG PAGEFIND_VERSION=1.1.1
1010

_vale/config/vocabularies/Docker/accept.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ Unix
137137
VLAN
138138
VM
139139
VMware
140+
VPN
140141
WSL
141142
Wasm
142143
Windows

_vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# github.com/moby/buildkit v0.17.1-0.20241031124041-354f2d13c905
33
# github.com/docker/buildx v0.18.0
44
# github.com/docker/cli v27.3.2-0.20241107125754-eb986ae71b0c+incompatible
5-
# github.com/docker/compose/v2 v2.30.2
5+
# github.com/docker/compose/v2 v2.30.3
66
# github.com/docker/scout-cli v1.15.0

content/manuals/compose/releases/release-notes.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,20 @@ aliases:
1313

1414
For more detailed information, see the [release notes in the Compose repo](https://github.com/docker/compose/releases/).
1515

16+
## 2.30.3
17+
18+
{{< release-date date="2024-11-07" >}}
19+
20+
### Update
21+
22+
- Dependencies upgrade: bump compose-go to v2.4.4
23+
24+
### Bug fixes and enhancements
25+
26+
- Fixed an issue re-starting services that should not when using `--watch`
27+
- Improve the fix of using same YAML anchor multiple times in a Compose file
28+
29+
1630
## 2.30.2
1731

1832
{{< release-date date="2024-11-05" >}}

content/manuals/desktop/troubleshoot-and-support/support.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ title: Get support
55
weight: 20
66
aliases:
77
- /desktop/support/
8+
- /support/
89
---
910

1011
Find information on how to get support, and the scope of Docker Desktop support.

content/manuals/engine/install/centos.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ $ sudo yum-config-manager --add-repo {{% param "download-url-base" %}}/docker-ce
117117
```console
118118
$ yum list docker-ce --showduplicates | sort -r
119119

120-
docker-ce.x86_64 3:27.1.1-1.el9 docker-ce-stable
121-
docker-ce.x86_64 3:27.1.0-1.el9 docker-ce-stable
120+
docker-ce.x86_64 3:27.3.1-1.el9 docker-ce-stable
121+
docker-ce.x86_64 3:27.3.0-1.el9 docker-ce-stable
122122
<...>
123123
```
124124

@@ -127,7 +127,7 @@ $ sudo yum-config-manager --add-repo {{% param "download-url-base" %}}/docker-ce
127127

128128
Install a specific version by its fully qualified package name, which is
129129
the package name (`docker-ce`) plus the version string (2nd column),
130-
separated by a hyphen (`-`). For example, `docker-ce-3:27.1.1-1.el9`.
130+
separated by a hyphen (`-`). For example, `docker-ce-3:27.3.1-1.el9`.
131131

132132
Replace `<VERSION_STRING>` with the desired version and then run the following
133133
command to install:

content/manuals/engine/install/debian.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,15 +155,15 @@ Docker from the repository.
155155
# List the available versions:
156156
$ apt-cache madison docker-ce | awk '{ print $3 }'
157157

158-
5:27.1.1-1~debian.12~bookworm
159-
5:27.1.0-1~debian.12~bookworm
158+
5:27.3.1-1~debian.12~bookworm
159+
5:27.3.0-1~debian.12~bookworm
160160
...
161161
```
162162

163163
Select the desired version and install:
164164

165165
```console
166-
$ VERSION_STRING=5:27.1.1-1~debian.12~bookworm
166+
$ VERSION_STRING=5:27.3.1-1~debian.12~bookworm
167167
$ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin
168168
```
169169

content/manuals/engine/install/fedora.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ To get started with Docker Engine on Fedora, make sure you
2626
To install Docker Engine, you need a maintained version of one of the following
2727
Fedora versions:
2828

29-
- Fedora 39
3029
- Fedora 40
30+
- Fedora 41
3131

3232
### Uninstall old versions
3333

@@ -114,8 +114,8 @@ $ sudo dnf-3 config-manager --add-repo {{% param "download-url-base" %}}/docker-
114114
```console
115115
$ dnf list docker-ce --showduplicates | sort -r
116116

117-
docker-ce.x86_64 3:27.1.1-1.fc40 docker-ce-stable
118-
docker-ce.x86_64 3:27.1.0-1.fc40 docker-ce-stable
117+
docker-ce.x86_64 3:27.3.1-1.fc41 docker-ce-stable
118+
docker-ce.x86_64 3:27.3.0-1.fc41 docker-ce-stable
119119
<...>
120120
```
121121

@@ -124,7 +124,7 @@ $ sudo dnf-3 config-manager --add-repo {{% param "download-url-base" %}}/docker-
124124

125125
Install a specific version by its fully qualified package name, which is
126126
the package name (`docker-ce`) plus the version string (2nd column),
127-
separated by a hyphen (`-`). For example, `docker-ce-3:27.1.1-1.fc40`.
127+
separated by a hyphen (`-`). For example, `docker-ce-3:27.3.1-1.fc41`.
128128

129129
Replace `<VERSION_STRING>` with the desired version and then run the following
130130
command to install:

content/manuals/engine/install/raspberry-pi-os.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@ Docker from the repository.
143143
# List the available versions:
144144
$ apt-cache madison docker-ce | awk '{ print $3 }'
145145

146-
5:27.1.1-1~raspbian.12~bookworm
147-
5:27.1.0-1~raspbian.12~bookworm
146+
5:27.3.1-1~raspbian.12~bookworm
147+
5:27.3.0-1~raspbian.12~bookworm
148148
...
149149
```
150150

151151
Select the desired version and install:
152152

153153
```console
154-
$ VERSION_STRING=5:27.1.1-1~raspbian.12~bookworm
154+
$ VERSION_STRING=5:27.3.1-1~raspbian.12~bookworm
155155
$ sudo apt-get install docker-ce=$VERSION_STRING docker-ce-cli=$VERSION_STRING containerd.io docker-buildx-plugin docker-compose-plugin
156156
```
157157

0 commit comments

Comments
 (0)