mirror of https://github.com/docker/docs.git
30 lines
974 B
Markdown
30 lines
974 B
Markdown
---
|
|
title: "Sorry, we can't find that page"
|
|
permalink: /404.html
|
|
skip_feedback: true
|
|
notoc: true
|
|
sitemap: false
|
|
skip_read_time: true
|
|
---
|
|
|
|
There might be a mistake in the URL or you might've clicked a link to content
|
|
that no longer exists. If you think it's the latter, please file an issue in
|
|
our issue tracker on GitHub.
|
|
|
|
[**Click here to create a new ticket**]({{ site.repo }}/issues/new){:.newissue.button.primary-btn}
|
|
|
|
[](/ "Go to the homepage")
|
|
|
|
<script>
|
|
let el = document.querySelector("a.newissue");
|
|
if (el) {
|
|
let url = new URL("{{ site.repo }}/issues/new");
|
|
url.searchParams.set("template", "broken_link.yml")
|
|
url.searchParams.set("title", "[404]: " + window.location.pathname);
|
|
url.searchParams.set("target", window.location.href);
|
|
url.searchParams.set("location", document.referrer);
|
|
url.searchParams.set("labels", "status/triage");
|
|
el.setAttribute("href", url.toString());
|
|
}
|
|
</script>
|