-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (72 loc) · 3.03 KB
/
Copy pathindex.html
File metadata and controls
80 lines (72 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Download Docker images as tar files. Useful if you are located in places where DockerHub is blocked."
/>
<meta
name="keywords"
content="download docker image, docker image download, download docker image tar, offline docker images, docker save download, download image from Docker Hub"
/>
<title>Docker Image Downloader</title>
<link rel="icon" href="/logo.svg" type="image/svg+xml" />
<link rel="stylesheet" href="/static/style.css" />
</head>
<body>
<div class="container">
<div class="logo">
<img src="/logo.svg" alt="Docker Image Downloader" />
</div>
<h1 class="app-title">Docker Image Downloader</h1>
<form class="search-box" id="downloadForm">
<div class="search-wrapper">
<input
type="text"
class="search-input"
id="imageName"
name="name"
placeholder="ubuntu:24.04"
autocomplete="off"
autofocus
/>
</div>
<div class="platform-row" id="platformRow">
<span class="platform-label">OS:</span>
<select class="platform-select" id="osSelect"></select>
<span class="platform-label">Arch:</span>
<select class="platform-select" id="archSelect"></select>
</div>
<div class="buttons">
<button type="button" class="btn" id="detectBtn">
Detect platforms
</button>
<button type="submit" class="btn btn-primary" id="downloadBtn">
Download
</button>
</div>
</form>
<div class="status" id="status"></div>
<div class="progress-bar" id="progressBar">
<div class="progress-fill" id="progressFill"></div>
</div>
<div class="hint">
Enter an image name and click <strong>Download</strong>. Load it with:<br />
<code>docker load -i <filename>.tar</code><br /><br />
For multi-arch images, click <strong>Detect platforms</strong>
first to choose a specific OS / architecture.
</div>
</div>
<footer>
<a
href="https://github.com/Basemax/python-docker-image-downloader"
target="_blank"
rel="noopener noreferrer"
>GitHub</a>
· Python Docker Image Downloader
</footer>
<script src="/static/script.js"></script>
</body>
</html>