mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-26 15:09:53 +03:00
74 lines
No EOL
3 KiB
HTML
74 lines
No EOL
3 KiB
HTML
<!--
|
|
Copyright (C) 2016-2018 Jones Magloire @Joxit
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="../dist/docker-registry-ui.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta property="og:locale" content="en_US" />
|
|
<meta name="description"
|
|
content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui" />
|
|
<meta property="og:description"
|
|
content="This is the live demo for Docker Registry User Interface. Try it now! Sources : https://github.com/Joxit/docker-registry-ui" />
|
|
<link rel="canonical" href="https://joxit.dev/docker-registry-ui/demo/" />
|
|
<meta property="og:url" content="https://joxit.dev/docker-registry-ui/demo/" />
|
|
<meta property="og:site_name" content="Live Demo | Docker Registry User Interface" />
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:site" content="@Joxit" />
|
|
<meta name="twitter:creator" content="@Jones Magloire" />
|
|
<title>Live Demo | Docker Registry User Interface</title>
|
|
</head>
|
|
|
|
<body>
|
|
<docker-registry-ui registry-url="" name="Demo Docker Registry UI" pull-url="" show-content-digest="true"
|
|
is-image-remove-activated="true" catalog-elements-limit="1000" single-registry="false">
|
|
<script>
|
|
if (localStorage.getItem('registryServer')) {
|
|
localStorage.setItem('registryServer',
|
|
localStorage.getItem('registryServer').replace(
|
|
'https://raw.githubusercontent.com/Joxit/docker-registry-ui/master/demo',
|
|
'https://joxit.dev/docker-registry-demo'
|
|
)
|
|
)
|
|
} else {
|
|
localStorage.setItem('registryServer', JSON.stringify([
|
|
'https://joxit.dev/docker-registry-demo'
|
|
]))
|
|
}
|
|
</script>
|
|
<script src="../dist/docker-registry-ui.js"></script>
|
|
<script>
|
|
(function (i, s, o, g, r, a, m) {
|
|
i['GoogleAnalyticsObject'] = r;
|
|
i[r] = i[r] || function () {
|
|
(i[r].q = i[r].q || []).push(arguments)
|
|
}, i[r].l = 1 * new Date();
|
|
a = s.createElement(o),
|
|
m = s.getElementsByTagName(o)[0];
|
|
a.async = 1;
|
|
a.src = g;
|
|
m.parentNode.insertBefore(a, m)
|
|
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
|
|
|
|
ga('create', 'UA-99119327-1', 'auto');
|
|
ga('send', 'pageview');
|
|
</script>
|
|
</body>
|
|
|
|
</html> |