containers / containers/podman.io

HTTP status code 404 when fetching https://docs.podman.io/en/v4.5/markdown/podman-run.1.html

Open
#172 2 comments 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
108
Forks
188
Avg merge
9d 15h
Merged PRs (30d)
11

Description

Run this bash script
```
#!/bin/bash

versions="4.2
4.3
4.4
4.5"

for i in $versions; do
echo -n "podman version=$i http_code="
curl -s -o /dev/null -w "%{http_code}\n" https://docs.podman.io/en/v${i}/markdown/podman-run.1.html
done
```

output:
```
podman version=4.2 http_code=200
podman version=4.3 http_code=200
podman version=4.4 http_code=200
podman version=4.5 http_code=404
```

I expected the output to be

```
podman version=4.2 http_code=200
podman version=4.3 http_code=200
podman version=4.4 http_code=200
podman version=4.5 http_code=200
```

because Podman version 4.5.1 has already been released.

Maybe the result is related to the list of Podman versions
on this web page?
https://readthedocs.org/projects/podman/

Contributor guide

No contributing guide indexed for this repository

Research direction

Run the provided Bash script to confirm the 404 for the versioned podman-run page, then inspect the Podman Read the Docs project and its published version list. Done means https://docs.podman.io/en/v4.5/markdown/podman-run.1.html returns HTTP 200 like the earlier versions.

Written by the indexing model from the issue text.

Assessment

Domain
documentation
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.