mirror of
https://github.com/unraid/webgui.git
synced 2026-01-14 13:39:58 -06:00
We all know my preference is to completely delete this file, but it would solve (or at least help) with the odd user getting confused over what it actually does by naming the tab correctly
38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
Menu="Docker:2"
|
|
Title="Template Repositories"
|
|
Tag="clone"
|
|
Cond="(pgrep('dockerd')!==false)"
|
|
---
|
|
<?PHP
|
|
/* Copyright 2005-2019, Lime Technology
|
|
* Copyright 2014-2019, Guilherme Jardim, Eric Schultz, Jon Panozzo.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<?
|
|
// Add the Docker JSON client
|
|
require_once "$docroot/plugins/dynamix.docker.manager/include/DockerClient.php";
|
|
|
|
// Repos file
|
|
$template_repos = $dockerManPaths['template-repos'];
|
|
?>
|
|
<form markdown="1" method="POST" action="/plugins/dynamix.docker.manager/include/UpdateConfig.php" target="progressFrame">
|
|
<input type="hidden" name="action" value="templates">
|
|
Template repositories:
|
|
: <textarea name="template_repos" rows="5" cols="100" style="width:550px"><?=@file_get_contents($template_repos);?></textarea>
|
|
|
|
> Use this field to add template repositories.
|
|
> Docker templates are used to facilitate the creation and re-creation of Docker containers. Please setup one per line.
|
|
>
|
|
> For a list of popular community-supported repositories, visit here: <a href="http://lime-technology.com/forum/index.php?topic=37958.0" target="_blank">http://lime-technology.com/forum/index.php?topic=37958.0</a>
|
|
|
|
|
|
: <input type="submit" value="Save">
|
|
</form>
|