Skip to content

Commit 476918a

Browse files
Merge pull request #22268 from docker/published-update
publish updates from main
2 parents 06bc116 + eec54cf commit 476918a

File tree

7 files changed

+29
-16
lines changed

7 files changed

+29
-16
lines changed

_vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# github.com/moby/moby v28.0.1+incompatible
22
# github.com/moby/buildkit v0.20.1
3-
# github.com/docker/buildx v0.21.2
3+
# github.com/docker/buildx v0.21.3
44
# github.com/docker/cli v28.0.1+incompatible
55
# github.com/docker/compose/v2 v2.34.0
66
# github.com/docker/scout-cli v1.15.0

content/guides/dotnet/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ spec:
6464
name: server
6565
imagePullPolicy: Always
6666
ports:
67-
- containerPort: 80
67+
- containerPort: 8080
6868
hostPort: 8080
6969
protocol: TCP
7070
resources: {}
@@ -117,7 +117,7 @@ spec:
117117
ports:
118118
- name: "8080"
119119
port: 8080
120-
targetPort: 80
120+
targetPort: 8080
121121
nodePort: 30001
122122
selector:
123123
service: server

content/guides/dotnet/develop.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ $ docker container ls
182182
You should see output like the following.
183183

184184
```console
185-
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
186-
cb36e310aa7e docker-dotnet-server "dotnet myWebApp.dll" About a minute ago Up About a minute 0.0.0.0:8080->80/tcp docker-dotnet-server-1
187-
39fdcf0aff7b postgres "docker-entrypoint.s…" About a minute ago Up About a minute (healthy) 5432/tcp docker-dotnet-db-1
185+
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
186+
cb36e310aa7e docker-dotnet-server "dotnet myWebApp.dll" About a minute ago Up About a minute 0.0.0.0:8080->8080/tcp docker-dotnet-server-1
187+
39fdcf0aff7b postgres "docker-entrypoint.s…" About a minute ago Up About a minute (healthy) 5432/tcp docker-dotnet-db-1
188188
```
189189

190190
In the previous example, the container ID is `39fdcf0aff7b`. Run the following command to connect to the postgres database in the container. Replace the container ID with your own container ID.
@@ -241,7 +241,7 @@ services:
241241
context: .
242242
target: final
243243
ports:
244-
- 8080:80
244+
- 8080:8080
245245
depends_on:
246246
db:
247247
condition: service_healthy
@@ -337,14 +337,14 @@ ENTRYPOINT ["dotnet", "myWebApp.dll"]
337337

338338
The following is the updated `compose.yaml` file.
339339

340-
```yaml {hl_lines="5"}
340+
```yaml {hl_lines=[5,15,16]}
341341
services:
342342
server:
343343
build:
344344
context: .
345345
target: development
346346
ports:
347-
- 8080:80
347+
- 8080:8080
348348
depends_on:
349349
db:
350350
condition: service_healthy
@@ -354,7 +354,6 @@ services:
354354
path: .
355355
environment:
356356
- ASPNETCORE_ENVIRONMENT=Development
357-
- ASPNETCORE_URLS=http://+:80'
358357
db:
359358
image: postgres
360359
restart: always

content/manuals/security/faqs/general.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ You can configure this through SSO using your IdP. Check with your IdP if they s
3131

3232
### How are sessions managed and do they expire?
3333

34-
Docker Desktop uses tokens to manage sessions after a user signs in. Docker Desktop signs you out after 90 days, or 30 days of inactivity.
34+
Docker uses tokens to manage sessions after a user signs in:
3535

36-
In Docker Hub, you need to re-authenticate after 24 hours. If users are authenticating using SSO, the default session timeout for the IdP is respected.
36+
- Docker Desktop signs you out after 90 days, or 30 days of inactivity.
37+
- Docker Hub and Docker Home sign you out after 24 hours.
3738

38-
Custom settings per organization for sessions aren't supported.
39+
Custom settings per organization for sessions aren't supported. Currently,
40+
Docker does not support your IdP's default session timeout for SSO users.
3941

4042
### How does Docker attribute downloads to us and what data is used to classify or verify the user is part of our organization?
4143

content/manuals/security/faqs/single-sign-on/faqs.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,14 @@ securely](/security/for-admins/provisioning/group-mapping/#use-group-mapping-wit
6161

6262
### Are there any firewall rules required for SSO configuration?
6363

64-
No. There are no specific firewall rules required for configuring SSO, as long as the domain `login.docker.com` is accessible. This domain is commonly accessible by default. However, in rare cases, some organizations may have firewall restrictions in place that block this domain. If you encounter issues during SSO setup, ensure that `login.docker.com` is allowed in your network's firewall settings.
64+
No. There are no specific firewall rules required for configuring SSO, as long as the domain `login.docker.com` is accessible. This domain is commonly accessible by default. However, in rare cases, some organizations may have firewall restrictions in place that block this domain. If you encounter issues during SSO setup, ensure that `login.docker.com` is allowed in your network's firewall settings.
65+
66+
### Does Docker use my IdP's default session timeout?
67+
68+
No. Currently, Docker does not support your IdP's default session timeout for
69+
SSO users.
70+
71+
Docker's default user session timeouts are as follows:
72+
73+
- Docker Desktop signs you out after 90 days, or 30 days of inactivity.
74+
- Docker Hub and Docker Home sign you out after 24 hours.

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/docker/docs
33
go 1.23.6
44

55
require (
6-
github.com/docker/buildx v0.21.2 // indirect
6+
github.com/docker/buildx v0.21.3 // indirect
77
github.com/docker/cli v28.0.1+incompatible // indirect
88
github.com/docker/compose/v2 v2.34.0 // indirect
99
github.com/docker/scout-cli v1.15.0 // indirect
@@ -12,7 +12,7 @@ require (
1212
)
1313

1414
replace (
15-
github.com/docker/buildx => github.com/docker/buildx v0.21.2
15+
github.com/docker/buildx => github.com/docker/buildx v0.21.3
1616
github.com/docker/cli => github.com/docker/cli v28.0.1+incompatible
1717
github.com/docker/compose/v2 => github.com/docker/compose/v2 v2.34.0
1818
github.com/docker/scout-cli => github.com/docker/scout-cli v1.15.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ github.com/docker/buildx v0.21.1 h1:YjV2k6CsSDbkDTOMsjARUIrj2xv+zZR+M2dtrRyzXhg=
9898
github.com/docker/buildx v0.21.1/go.mod h1:8V4UMnlKsaGYwz83BygmIbJIFEAYGHT6KAv8akDZmqo=
9999
github.com/docker/buildx v0.21.2 h1:r09paH8q9nvAX2PR1ntRrc+C6FBH93bvKUsn1WOb/jU=
100100
github.com/docker/buildx v0.21.2/go.mod h1:8V4UMnlKsaGYwz83BygmIbJIFEAYGHT6KAv8akDZmqo=
101+
github.com/docker/buildx v0.21.3 h1:LEmhk3D9WOboMeC+hlfOUnB1jylXcDfGHjqAL7Tvwks=
102+
github.com/docker/buildx v0.21.3/go.mod h1:8V4UMnlKsaGYwz83BygmIbJIFEAYGHT6KAv8akDZmqo=
101103
github.com/docker/cli v24.0.2+incompatible h1:QdqR7znue1mtkXIJ+ruQMGQhpw2JzMJLRXp6zpzF6tM=
102104
github.com/docker/cli v24.0.2+incompatible/go.mod h1:JLrzqnKDaYBop7H2jaqPtU4hHvMKP+vjCwu2uszcLI8=
103105
github.com/docker/cli v24.0.4+incompatible h1:Y3bYF9ekNTm2VFz5U/0BlMdJy73D+Y1iAAZ8l63Ydzw=

0 commit comments

Comments
 (0)