mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-25 22:49:54 +03:00

Change Features to Hidden Features to highlight only features you may not see Update Available Options and add linked PR/Issue and the version added
117 lines
5 KiB
HTML
117 lines
5 KiB
HTML
<!--
|
|
Copyright (C) 2016-2023 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" />
|
|
<!-- build:css docker-registry-ui.css -->
|
|
<link href="../node_modules/riot-mui/build/styles/riot-mui.min.css" rel="stylesheet" type="text/css" />
|
|
<link href="style.css" rel="stylesheet" type="text/css" />
|
|
<link href="material-icons.css" rel="stylesheet" type="text/css" />
|
|
<link href="roboto.css" rel="stylesheet" type="text/css" />
|
|
<!-- endbuild -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta property="og:site_name" content="Docker Registry UI" />
|
|
<meta name="twitter:card" content="summary" />
|
|
<meta name="twitter:site" content="@Joxit" />
|
|
<meta name="twitter:creator" content="@Jones Magloire" />
|
|
<title>Docker Registry UI</title>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- build:keep production -->
|
|
<docker-registry-ui
|
|
registry-url="${REGISTRY_URL}"
|
|
name="${REGISTRY_TITLE}"
|
|
pull-url="${PULL_URL}"
|
|
show-content-digest="${SHOW_CONTENT_DIGEST}"
|
|
is-image-remove-activated="${DELETE_IMAGES}"
|
|
catalog-elements-limit="${CATALOG_ELEMENTS_LIMIT}"
|
|
single-registry="${SINGLE_REGISTRY}"
|
|
default-registries="${DEFAULT_REGISTRIES}"
|
|
read-only-registries="${READ_ONLY_REGISTRIES}"
|
|
show-catalog-nb-tags="${SHOW_CATALOG_NB_TAGS}"
|
|
history-custom-labels="${HISTORY_CUSTOM_LABELS}"
|
|
use-control-cache-header="${USE_CONTROL_CACHE_HEADER}"
|
|
theme="${THEME}"
|
|
theme-primary-text="${THEME_PRIMARY_TEXT}"
|
|
theme-neutral-text="${THEME_NEUTRAL_TEXT}"
|
|
theme-background="${THEME_BACKGROUND}"
|
|
theme-hover-background="${THEME_HOVER_BACKGROUND}"
|
|
theme-accent-text="${THEME_ACCENT_TEXT}"
|
|
theme-header-text="${THEME_HEADER_TEXT}"
|
|
theme-header-background="${THEME_HEADER_BACKGROUND}"
|
|
theme-footer-text="${THEME_FOOTER_TEXT}"
|
|
theme-footer-neutra-text="${THEME_FOOTER_NEUTRAL_TEXT}"
|
|
theme-footer-background="${THEME_FOOTER_BACKGROUND}"
|
|
>
|
|
</docker-registry-ui>
|
|
<!-- endbuild -->
|
|
<!-- build:keep developement -->
|
|
<docker-registry-ui
|
|
registry-url=""
|
|
name="Developement Registry"
|
|
pull-url=""
|
|
show-content-digest="true"
|
|
is-image-remove-activated="true"
|
|
catalog-elements-limit="1000"
|
|
single-registry="false"
|
|
show-catalog-nb-tags="true"
|
|
history-custom-labels="first_custom_labels,second_custom_labels"
|
|
use-control-cache-header="false"
|
|
theme="auto"
|
|
theme-primary-text=""
|
|
theme-neutral-text=""
|
|
theme-background=""
|
|
theme-hover-background=""
|
|
theme-accent-text=""
|
|
theme-header-text=""
|
|
theme-header-background=""
|
|
theme-footer-text=""
|
|
theme-footer-neutra-text=""
|
|
theme-footer-background=""
|
|
>
|
|
</docker-registry-ui>
|
|
<!-- endbuild -->
|
|
<!-- build:js docker-registry-ui.js -->
|
|
<script src="../node_modules/riot/riot+compiler.min.js"></script>
|
|
<script src="../node_modules/riot-route/dist/route.js"></script>
|
|
<script src="../node_modules/riot-mui/build/js/riot-mui.js"></script>
|
|
<script src="tags/catalog.riot" type="riot/tag"></script>
|
|
<script src="tags/catalog-element.riot" type="riot/tag"></script>
|
|
<script src="tags/tag-history-button.riot" type="riot/tag"></script>
|
|
<script src="tags/tag-history.riot" type="riot/tag"></script>
|
|
<script src="tags/tag-history-element.riot" type="riot/tag"></script>
|
|
<script src="tags/taglist.riot" type="riot/tag"></script>
|
|
<script src="tags/image-tag.riot" type="riot/tag"></script>
|
|
<script src="tags/remove-image.riot" type="riot/tag"></script>
|
|
<script src="tags/copy-to-clipboard.riot" type="riot/tag"></script>
|
|
<script src="tags/dialogs/add.riot" type="riot/tag"></script>
|
|
<script src="tags/dialogs/change.riot" type="riot/tag"></script>
|
|
<script src="tags/dialogs/remove.riot" type="riot/tag"></script>
|
|
<script src="tags/dialogs/menu.riot" type="riot/tag"></script>
|
|
<script src="tags/image-size.riot" type="riot/tag"></script>
|
|
<script src="tags/image-date.riot" type="riot/tag"></script>
|
|
<script src="tags/image-content-digest.riot" type="riot/tag"></script>
|
|
<script src="tags/pagination.riot" type="riot/tag"></script>
|
|
<script src="tags/app.riot" type="riot/tag"></script>
|
|
<script src="scripts/http.js"></script>
|
|
<script src="scripts/script.js"></script>
|
|
<script src="scripts/utils.js"></script>
|
|
<!-- endbuild -->
|
|
</body>
|
|
</html>
|