Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
e77e61d0b0 | |||
66abd9d3c5 |
21
README.md
21
README.md
@ -5,17 +5,20 @@ returning
|
||||
|
||||
## Building
|
||||
|
||||
Build using NoccyLabs Pharlite.
|
||||
Build using NoccyLabs Pharlite:
|
||||
|
||||
$ tools/pharlite
|
||||
|
||||
## Installing
|
||||
|
||||
Download the latest version (or build it yourself) and move it into `/usr/bin`.
|
||||
|
||||
## Usage
|
||||
|
||||
To check for updates, pull updated images and recreate any containers defined in the
|
||||
`docker-compose.yml` in the current directory:
|
||||
|
||||
```
|
||||
$ fresh.phar
|
||||
```
|
||||
|
||||
For all available options, use the `--help` flag.
|
||||
|
||||
@ -25,15 +28,15 @@ For all available options, use the `--help` flag.
|
||||
`--check` flag.
|
||||
- Only checks authenticated registries for new versions. But if you are using
|
||||
this you probably aren't using DockerHub anyway.
|
||||
- ~Using the `-q` or `--quiet` flags doesn't mute the output from `docker-compose`.~
|
||||
- ~Using `--check` still updates the state, need a `--no-state` flag or so to ~
|
||||
~prevent updating the state.~
|
||||
|
||||
## FAQ
|
||||
|
||||
- **How does Fresh remember the last seen hash?** The container hashes are stored
|
||||
in the same directory as the `docker-compose.yml` file in a file named `fresh.yml`.
|
||||
Remove this file to force trigger an update.
|
||||
- **What are these hashes?** Fresh grabs the manifest for the image from the registry
|
||||
and proceeds to hash a concatenation of all the various build layer hashes. This
|
||||
should mean if the image is new but the layers are the same nothing will be updated.
|
||||
|
||||
## Changes
|
||||
|
||||
@ -45,3 +48,9 @@ For all available options, use the `--help` flag.
|
||||
- Disabled automatic flushing of the state to disk; --check will no longer update
|
||||
the state file, but --pull and default update will.
|
||||
|
||||
**0.1.2**
|
||||
|
||||
- Fixed a bug in lockfile class preventing release of stale lockfile.
|
||||
- The `--image` option finally works.
|
||||
- Added a `--write-state`/`-w` option to write updated hashes to the state file.
|
||||
- Implemented `--config` and `--config-type`options.
|
||||
|
@ -7,6 +7,7 @@ if (file_exists(__DIR__."/../src/version.php")) {
|
||||
require_once __DIR__."/../src/version.php";
|
||||
} else {
|
||||
define("APP_VERSION", "DEV");
|
||||
define("BUILD_DATE", "src");
|
||||
}
|
||||
|
||||
$r = new NoccyLabs\FreshDocker\Refresher();
|
||||
|
21
src/Configuration/SingleImageConfiguration.php
Normal file
21
src/Configuration/SingleImageConfiguration.php
Normal file
@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
namespace NoccyLabs\FreshDocker\Configuration;
|
||||
|
||||
use Symfony\Component\Yaml\Yaml;
|
||||
|
||||
class SingleImageConfiguration
|
||||
{
|
||||
|
||||
private $image;
|
||||
|
||||
public function __construct(string $image)
|
||||
{
|
||||
$this->image = $image;
|
||||
}
|
||||
|
||||
public function getChecks(): array
|
||||
{
|
||||
return [ $this->image ];
|
||||
}
|
||||
}
|
@ -5,6 +5,7 @@ namespace NoccyLabs\FreshDocker;
|
||||
use NoccyLabs\FreshDocker\State\Log;
|
||||
use NoccyLabs\FreshDocker\Configuration\ComposeConfiguration;
|
||||
use NoccyLabs\FreshDocker\Configuration\LocalConfiguration;
|
||||
use NoccyLabs\FreshDocker\Configuration\SingleImageConfiguration;
|
||||
use NoccyLabs\FreshDocker\Credentials\BasicCredentialsLoader;
|
||||
use NoccyLabs\FreshDocker\Credentials\CredentialsLoaderInterface;
|
||||
use NoccyLabs\FreshDocker\Hooks\SlackHook;
|
||||
@ -25,6 +26,7 @@ class Refresher
|
||||
'pull' => [ null, 'pull', "Only pull if updated, don't up" ],
|
||||
'check' => [ null, 'check', "Only check for updates, set exit code" ],
|
||||
'prune' => [ null, 'prune', "Prune dangling images after pull and up" ],
|
||||
'write-state' => [ 'w', 'write-state', "Always write updated state (only useful with --check)", false ],
|
||||
],
|
||||
'Hooks' => [
|
||||
'slack' => [ null, 'slack:', "Notify a slack webhook when updating", "FRESH_SLACK" ],
|
||||
@ -32,7 +34,7 @@ class Refresher
|
||||
],
|
||||
'Config' => [
|
||||
'config' => [ 'c:', 'config:', "Use custom configuration file", "FRESH_CONFIG" ],
|
||||
'type' => [ 'C:', 'config-type:', "Configuration type (auto, fresh, compose)", "FRESH_CONFIG_TYPE", "auto" ],
|
||||
'config-type' => [ 'C:', 'config-type:', "Configuration type (auto, fresh, compose)", "FRESH_CONFIG_TYPE", "auto" ],
|
||||
'credentials' => [ null, 'credentials:', "Set credentials loader type (auto or basic)", "FRESH_CREDENTIALS", "auto" ],
|
||||
]
|
||||
];
|
||||
@ -111,8 +113,9 @@ class Refresher
|
||||
|
||||
public function printUsage()
|
||||
{
|
||||
$tty = posix_isatty(STDOUT);
|
||||
|
||||
printf("fresh.phar v%s - (c) 2022, NoccyLabs / GPL v3 or later\n", APP_VERSION);
|
||||
printf("fresh.phar v%s (%s) - (c) 2022, NoccyLabs / GPL v3 or later\n", APP_VERSION, BUILD_DATE);
|
||||
printf("Check for updates to docker images or compose stacks.\n\n");
|
||||
printf("Usage:\n %s [options]\n\n", basename($GLOBALS['argv'][0]));
|
||||
printf("Options:\n");
|
||||
@ -129,10 +132,10 @@ class Refresher
|
||||
if ($s&&$l) $optkey .= ",";
|
||||
if ($l) $optkey .= "--" . $l;
|
||||
if ($h) $optkey .= " VALUE";
|
||||
printf(" %-25s %s", $optkey, $opt[2]);
|
||||
if ($d) printf(" (default: %s)", $d);
|
||||
if ($e) printf(" [\$%s]", $e);
|
||||
echo "\n";
|
||||
$out = sprintf(" %-25s %s", $optkey, $opt[2]);
|
||||
if ($d) $out.= sprintf(" (default: %s)", $d);
|
||||
if ($e) $out.= sprintf(" [\$%s]", $e);
|
||||
echo $out . "\n";
|
||||
}
|
||||
}
|
||||
printf("\nNote:\n");
|
||||
@ -163,6 +166,11 @@ class Refresher
|
||||
|
||||
// If called with --check, only return exit status
|
||||
if ($this->options['check']) {
|
||||
if (($updated !== null) && $this->options['write-state']) {
|
||||
// Flush state if called with -w/--write-state
|
||||
$this->log->append("Flushing state...");
|
||||
$this->state->flush();
|
||||
}
|
||||
exit(($updated === null) ? 0 : 1);
|
||||
}
|
||||
|
||||
@ -227,14 +235,50 @@ class Refresher
|
||||
*/
|
||||
private function setupConfiguration()
|
||||
{
|
||||
if ($this->options['image']) {
|
||||
$this->config = new SingleImageConfiguration($this->options['image']);
|
||||
return;
|
||||
}
|
||||
|
||||
if (file_exists($this->path."/docker-compose.yml")) {
|
||||
$this->config = new ComposeConfiguration($this->path."/docker-compose.yml");
|
||||
$configType = $this->options['config-type'];
|
||||
$configFile = $this->options['config'] ? realpath($this->options['config']) : null;
|
||||
|
||||
switch ($configType) {
|
||||
case 'auto':
|
||||
if ($configFile) {
|
||||
if (basename($configFile) == "docker-compose.yml") {
|
||||
$this->log->append("Using configuration file ".$configFile);
|
||||
$this->config = new ComposeConfiguration($configFile);
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
if (file_exists($this->path."/docker-compose.yml")) {
|
||||
$this->log->append("Using configuration file ".$this->path."/docker-compose.yml");
|
||||
$this->config = new ComposeConfiguration($this->path."/docker-compose.yml");
|
||||
return;
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 'compose':
|
||||
if ($configFile) {
|
||||
if (basename($configFile) == "docker-compose.yml") {
|
||||
$this->log->append("Using configuration file ".$configFile);
|
||||
$this->config = new ComposeConfiguration($configFile);
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
if (file_exists($this->path."/docker-compose.yml")) {
|
||||
$this->log->append("Using configuration file ".$this->path."/docker-compose.yml");
|
||||
$this->config = new ComposeConfiguration($this->path."/docker-compose.yml");
|
||||
return;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
fwrite(STDERR, "error: Couldn't find a supported configuration file\n");
|
||||
exit(2);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Check for newer versions of the image(s)
|
||||
|
@ -17,7 +17,7 @@ class Lockfile
|
||||
public function lock()
|
||||
{
|
||||
if (file_exists($this->filename)) {
|
||||
if (time() - filemtime($this->filename) < $this-$maxLock) {
|
||||
if (time() - filemtime($this->filename) < $this->maxLock) {
|
||||
throw new \RuntimeException("Lockfile {$this->filename} already exists");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user