Skip to content

Commit 3816620

Browse files
committed
fix: Update docker run command in pull_request workflow
- Replaced shorthand `-d -P` options with explicit `--detach --publish-all` flags. - Ensured `${WHOAMI_VERSION}` is used for clarity and consistency in variable referencing.
1 parent 9b635de commit 3816620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ jobs:
3434
run: |
3535
# renovate: datasource=docker depname=traefik/whoami versioning=docker
3636
WHOAMI_VERSION="43a68d10b9dfcfc3ffbfe4dd42100dc9aeaf29b3a5636c856337a5940f1b4f1c" # v1.10
37-
docker run -d -P --name whoami traefik/whoami:"$WHOAMI_VERSION"
37+
docker run --detach --publish-all --name whoami traefik/whoami:"${WHOAMI_VERSION}"
3838
docker stop whoami
3939
docker rm whoami

0 commit comments

Comments
 (0)