mirror of
https://github.com/docker/docs.git
synced 2026-03-27 14:28:47 +07:00
* Share redoc JavaScript between API versions The redoc JavaScript is a big file, and there's no need to keep a separate copy for each version of the API. This patch removes the copy per-version and moves the script to a central location. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> * Use central stylesheet for API reference Signed-off-by: Sebastiaan van Stijn <github@gone.nl> * Update ReDoc to v1.19.3 Changelog can be found at https://github.com/Rebilly/ReDoc/blob/v1.19.3/CHANGELOG.md Signed-off-by: Sebastiaan van Stijn <github@gone.nl> * Hide "request type" badges in menu ReDoc 1.13 added "request type" badges in the menu given that we didn't show these before, this patch hides them. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> * Add .map file for ReDoc Having a .map file allows debugging script issues in the ReDoc JavaScript (which is minified). It's a big file, but may be useful to have. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
21 lines
662 B
HTML
21 lines
662 B
HTML
---
|
|
layout: null
|
|
redirect_from:
|
|
- /engine/reference/api/docker_remote_api_v1.26/
|
|
---
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Docker Engine API v1.26 Reference</title>
|
|
<!-- needed for adaptive design -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="Reference for the API served by Docker Engine.">
|
|
<meta charset="utf-8"/>
|
|
<link rel="stylesheet" type="text/css" href="/css/api-reference.css">
|
|
</head>
|
|
<body>
|
|
<redoc spec-url="swagger.yaml" hide-hostname="true" suppress-warnings="true" lazy-rendering></redoc>
|
|
<script src="/js/redoc.min.js"> </script>
|
|
</body>
|
|
</html>
|