diff --git a/.vortex/.ahoy.yml b/.vortex/.ahoy.yml index ab0f5edd0..366989a04 100644 --- a/.vortex/.ahoy.yml +++ b/.vortex/.ahoy.yml @@ -138,7 +138,7 @@ commands: cmd: yarn --cwd=docs run update-variables update-videos: - usage: Update documentation videos. Pass names to record a subset (installer, build, provision, lint, test, test-bdd, info, doctor, doctor-info); default is all of them. Pass --verify to re-render the committed artefacts and compare instead of recording. + usage: Update documentation videos. Pass names to record a subset (installer, build, provision, lint, test, test-bdd); default is all six. cmd: php docs/.utils/update-videos.php "$@" entrypoint: diff --git a/.vortex/CLAUDE.md b/.vortex/CLAUDE.md index 40a307893..d60e65bbf 100644 --- a/.vortex/CLAUDE.md +++ b/.vortex/CLAUDE.md @@ -158,26 +158,15 @@ commit its output manually. Run both after the code change is committed. ## Documentation videos -Nine terminal demo videos live in `.vortex/docs/static/img/` (`installer.*`, -`build.*`, `provision.*`, `lint.*`, `test.*`, `test-bdd.*`, `info.*`, -`doctor.*`, `doctor-info.*`). Regenerate from `.vortex/` with -`ahoy update-videos [names]`. A video goes stale when the command it records -changes behavior: +Six terminal demo videos live in `.vortex/docs/static/img/` (`installer.*`, +`build.*`, `provision.*`, `lint.*`, `test.*`, `test-bdd.*`). Regenerate from +`.vortex/` with `ahoy update-videos [names]`. A video goes stale when the +command it records changes behavior: - `installer` - any prompt flow change. - `build`, `provision` - changes to `.ahoy.yml` build/provision targets or `scripts/vortex/provision*`. - `lint`, `test`, `test-bdd` - changes to the linter or test-runner setup. -- `info`, `doctor`, `doctor-info` - changes to those `ahoy` targets or to - `vortex-doctor`. - -Regeneration is reproducible: recording the same session twice on one machine -produces the same bytes, so a clean `git status` afterward means the rendering -did not change and any diff is a real change worth reading. `ahoy -update-videos --verify` re-renders the committed artefacts without recording -and reports every one that no longer matches. Three sources of drift survive -that guarantee - `build`, `installer` and the `.png` posters - and -`.vortex/docs/CLAUDE.md` says what each of them is. `update-videos` does not commit - review the diff under `.vortex/docs/static/img/` and commit manually. See `.vortex/docs/CLAUDE.md` for the pipeline internals diff --git a/.vortex/docs/.utils/CastNormalizer.php b/.vortex/docs/.utils/CastNormalizer.php deleted file mode 100644 index d033dde69..000000000 --- a/.vortex/docs/.utils/CastNormalizer.php +++ /dev/null @@ -1,696 +0,0 @@ - '/home/user', - '#/home/(?!user\b)[^/\s"\']+#' => '/home/user', - // Drupal one-time login link, which carries an issue time and a token. - '#/user/reset/(\d+)/\d+/[A-Za-z0-9_\[\]-]+/login#' => '/user/reset/$1/[TIME]/[REDACTED]/login', - // PHPUnit run summary. - '#Time: \d+:\d{2}\.\d+, Memory: [\d.]+ ?[KMGT]?i?B#' => 'Time: [TIME], Memory: [MEMORY]', - // PHPUnit coverage report timing. - '#\[\d{2}:\d{2}\.\d+\]#' => '[TIME]', - // PHP_CodeSniffer run summary. - '#Time: [\d.]+ ?(?:secs?|mins?|hours?); Memory: [\d.]+ ?[KMGT]?i?B#' => 'Time: [TIME]; Memory: [MEMORY]', - // Gherkin linter run summary. - '#took [\d.]+ seconds#' => 'took [TIME]', - // Behat run summary. - '#(? '[TIME] ([MEMORY])', - // Drupal functional test browser output file name. - '#(browser_output/[A-Za-z0-9_]+)-\d+-\d+\.html#' => '$1-[ID].html', - // Provisioning task duration. - '#\((?:\d+h )?(?:\d+m )?\d+s\)#' => '([TIME])', - // Container image digest. - '#sha256:[0-9a-f]{12,64}#' => 'sha256:[HASH]', - // Docker engine object counters, which include the recording stack itself. - '#^(\h*(?:Containers|Running|Paused|Stopped|Images):\h+)\d+#m' => '$1[COUNT]', - // Host port published by the Docker stack. - '#\b(127\.0\.0\.1|localhost):\d{2,5}#' => '$1:[PORT]', - '#(port on host\h+: )\d+#' => '$1[PORT]', - // Build step duration. - '#(? '[TIME]', - // Byte size reported by a build or a transfer. - '#(? '[SIZE]', - ]; - - /** - * Credential formats that must never reach a published demo. - */ - public const SECRET_PATTERNS = [ - // GitHub personal access, OAuth, user-to-server, server-to-server and - // refresh tokens (for example 'ghp_...', 'gho_...'). - '#\bgh[oprsu]_[A-Za-z0-9]{36,255}#', - // GitHub fine-grained personal access tokens ('github_pat_...'). - '#\bgithub_pat_[A-Za-z0-9_]{22,255}#', - // AWS access key identifiers. - '#\b(?:AKIA|ASIA)[A-Z0-9]{16}#', - ]; - - /** - * Environment variables whose value is masked wherever it appears. - */ - public const SECRET_VARIABLES = ['PACKAGE_TOKEN', 'GITHUB_TOKEN', 'VORTEX_CONTAINER_REGISTRY_PASS']; - - /** - * Placeholder that replaces a credential. - */ - public const SECRET_PLACEHOLDER = 'XXXXX'; - - /** - * Shortest environment variable value that is worth masking. - */ - public const SECRET_MIN_LENGTH = 8; - - /** - * How frames are cut from the stream. - */ - protected string $mode; - - /** - * Seconds a frame of command output plays for. - */ - protected float $frameDelay; - - /** - * Whether the session opens with a command typed at a prompt. - */ - protected bool $typed; - - /** - * Absolute paths to replace, keyed by the path, before anything else. - * - * @var array - */ - protected array $paths; - - /** - * Constructs a normalizer for one video. - * - * @param string $mode - * One of the MODE_* constants. - * @param float|null $frame_delay - * Seconds a frame of command output plays for. NULL uses FRAME_DELAY. - * @param bool $typed - * Whether the session opens with a command typed at a prompt. The typed - * characters play at TYPE_DELAY and the command line is followed by a - * STEP_DELAY. - * @param array $paths - * Absolute paths to replace, keyed by the path. - */ - public function __construct(string $mode = self::MODE_WRITES, ?float $frame_delay = NULL, bool $typed = TRUE, array $paths = []) { - if (!in_array($mode, [self::MODE_WRITES, self::MODE_REPAINT], TRUE)) { - throw new \InvalidArgumentException('Unknown frame mode: ' . $mode); - } - - $this->mode = $mode; - $this->frameDelay = $frame_delay ?? self::FRAME_DELAY; - $this->typed = $typed; - $this->paths = $paths; - } - - /** - * Rewrite a cast onto the canonical timeline. - * - * @param string $cast - * Contents of an asciicast file, version 2 or 3. - * - * @return string - * Contents of the canonical version 2 cast, newline-terminated. - */ - public function normalize(string $cast): string { - $lines = preg_split('/\R/', $cast); - $lines = $lines === FALSE ? [] : array_values(array_filter($lines, static fn(string $line): bool => trim($line) !== '')); - - if (count($lines) < 2) { - throw new \RuntimeException('Cast is empty or malformed.'); - } - - $header = $this->decodeHeader((string) array_shift($lines)); - $relative = ($header['version'] ?? 2) === 3; - $frames = $this->collapseRedraws($this->foldBlankFrames($this->cutFrames($this->readWrites($lines, $relative)))); - - if ($frames === []) { - throw new \RuntimeException('Cast carries no frames to draw.'); - } - - return implode("\n", array_merge([$this->normalizeHeader($header)], $this->buildTimeline($frames))) . "\n"; - } - - /** - * Mask everything that differs between two runs of the same session. - * - * @param string $text - * Text recorded from the session. - * - * @return string - * The same text with volatile values replaced by placeholders. - */ - public function mask(string $text): string { - if ($this->paths !== []) { - $text = str_replace(array_keys($this->paths), array_values($this->paths), $text); - } - - foreach (self::MASKS as $pattern => $replacement) { - $masked = preg_replace($pattern, $replacement, $text); - if ($masked === NULL) { - throw new \RuntimeException('Failed to apply mask: ' . $pattern); - } - $text = $masked; - } - - return $this->redactSecrets($text); - } - - /** - * Replace recognised credentials with a fixed placeholder. - * - * Recorded output can surface a real secret - a token replayed by a cached - * container build layer, or one printed by a provisioning step - and a - * published demo must never embed one. - * - * @param string $text - * Text recorded from the session. - * - * @return string - * The same text with credentials replaced. - */ - protected function redactSecrets(string $text): string { - $masked = preg_replace(self::SECRET_PATTERNS, self::SECRET_PLACEHOLDER, $text); - if ($masked === NULL) { - throw new \RuntimeException('Failed to mask secret token patterns.'); - } - - // Defence in depth: mask the literal value of a sensitive environment - // variable when it is set, catching tokens whose format the patterns above - // do not recognise. A short value is skipped to avoid mangling ordinary - // text. - foreach (self::SECRET_VARIABLES as $name) { - $value = getenv($name); - if (is_string($value) && strlen($value) >= self::SECRET_MIN_LENGTH) { - $masked = str_replace($value, self::SECRET_PLACEHOLDER, $masked); - } - } - - return $masked; - } - - /** - * Read the header line. - * - * @param string $line - * The recorded header line. - * - * @return array - * The decoded header. - */ - protected function decodeHeader(string $line): array { - $header = json_decode($line, TRUE); - if (!is_array($header)) { - throw new \RuntimeException('Cast header is not valid JSON.'); - } - - return $header; - } - - /** - * Rewrite the header, dropping everything the machine contributed. - * - * The output is always version 2, which is what the renderers read. - * - * @param array $header - * The decoded header. - * - * @return string - * The canonical header line. - */ - protected function normalizeHeader(array $header): string { - // Version 3 carries the terminal in its own object rather than at the top - // level of the header. - $term = $header['term'] ?? []; - $term = is_array($term) ? $term : []; - - $width = $header['width'] ?? $term['cols'] ?? 80; - $height = $header['height'] ?? $term['rows'] ?? 24; - - $canonical = [ - 'version' => 2, - 'width' => is_numeric($width) ? (int) $width : 80, - 'height' => is_numeric($height) ? (int) $height : 24, - ]; - - foreach (['title', 'command'] as $key) { - if (isset($header[$key]) && is_string($header[$key])) { - $canonical[$key] = $this->mask($header[$key]); - } - } - - return (string) json_encode($canonical, JSON_UNESCAPED_SLASHES); - } - - /** - * Reduce the recorded events to the writes the session made. - * - * @param array $lines - * Recorded event lines. - * @param bool $relative - * Whether each timestamp is the gap from the event before it, as version 3 - * records them, rather than the time from the start of the recording. - * - * @return list - * One entry per write, in order. - */ - protected function readWrites(array $lines, bool $relative = FALSE): array { - $chunks = []; - $time = 0.0; - - foreach ($lines as $line) { - $event = json_decode(trim($line), TRUE); - if (!is_array($event) || count($event) < 3 || !is_numeric($event[0]) || !is_string($event[2])) { - continue; - } - - // An event that draws nothing still spends the time before it. - $time = $relative ? $time + (float) $event[0] : (float) $event[0]; - - if (($event[1] ?? '') !== 'o') { - continue; - } - - $chunks[] = ['at' => $time, 'data' => $event[2]]; - } - - $writes = []; - foreach ($this->joinBufferSplits($chunks) as $write) { - if ($writes === [] && preg_match(self::SPAWN_ECHO, $this->strip($write['data'])) === 1) { - continue; - } - $writes[] = ['at' => $write['at'], 'data' => $this->mask($write['data'])]; - } - - return $writes; - } - - /** - * Rejoin the chunks a full read buffer cut a single write into. - * - * A write longer than the read buffer reaches the recording as several - * chunks, and where the buffer fell is a property of the machine rather than - * of the session. Such a chunk fills the buffer and its remainder follows - * within microseconds, so both conditions are required before two chunks are - * treated as one write. - * - * @param list $chunks - * Recorded chunks, in order. - * - * @return list - * One entry per write, in order. - */ - protected function joinBufferSplits(array $chunks): array { - $writes = []; - $open = NULL; - $previous_length = 0; - $previous_at = 0.0; - - foreach ($chunks as $chunk) { - $continues = $previous_length >= self::READ_BUFFER - self::READ_BUFFER_TOLERANCE - && $chunk['at'] - $previous_at < self::SPLIT_WINDOW; - - if ($open === NULL) { - $open = $chunk; - } - elseif ($continues) { - $open = ['at' => $open['at'], 'data' => $open['data'] . $chunk['data']]; - } - else { - $writes[] = $open; - $open = $chunk; - } - - $previous_length = strlen($chunk['data']); - $previous_at = $chunk['at']; - } - - if ($open !== NULL) { - $writes[] = $open; - } - - return $writes; - } - - /** - * Cut the session's output into the frames it is made of. - * - * In writes mode a write is a frame: a command flushes each state it has to - * show. In repaint mode the writes are treated as one stream and cut where - * the session repainted, because a prompt redraws its whole screen and a - * half-applied repaint is not a state the screen was ever in. - * - * @param list $writes - * Writes the session made, in order. - * - * @return list - * One entry per frame, in order. - */ - protected function cutFrames(array $writes): array { - if ($this->mode !== self::MODE_REPAINT) { - return $writes; - } - - $stream = ''; - $arrivals = []; - foreach ($writes as $write) { - $arrivals[strlen($stream)] = $write['at']; - $stream .= $write['data']; - } - - $pieces = preg_split(self::REPAINT_BOUNDARY, $stream, -1, PREG_SPLIT_NO_EMPTY); - if ($pieces === FALSE) { - $pieces = [$stream]; - } - - $frames = []; - $offset = 0; - foreach ($pieces as $piece) { - $frames[] = ['at' => $this->arrivalAt($arrivals, $offset), 'data' => $piece]; - $offset += strlen($piece); - } - - return $frames; - } - - /** - * Return the time the write holding an offset arrived. - * - * @param array $arrivals - * Arrival times, keyed by the offset each write starts at. - * @param int $offset - * Offset into the stream. - * - * @return float - * Seconds from the start of the recording. - */ - protected function arrivalAt(array $arrivals, int $offset): float { - $at = 0.0; - - foreach ($arrivals as $start => $time) { - if ($start > $offset) { - break; - } - $at = $time; - } - - return $at; - } - - /** - * Fold the frames that paint nothing into the frame that follows them. - * - * A session moves and hides the cursor before it draws, and a prompt that - * repaints five lines may do so with five separate cursor-up sequences. - * Neither changes the screen, so both belong to the frame they introduce. - * - * @param list $frames - * Frames, in order. - * - * @return list - * The surviving frames, in order. - */ - protected function foldBlankFrames(array $frames): array { - $folded = []; - $pending = ''; - $pending_at = NULL; - - foreach ($frames as $frame) { - if ($this->isBlank($frame['data'])) { - $pending .= $frame['data']; - $pending_at ??= $frame['at']; - continue; - } - - $folded[] = ['at' => $pending_at ?? $frame['at'], 'data' => $pending . $frame['data']]; - $pending = ''; - $pending_at = NULL; - } - - if ($pending === '' || $folded === []) { - return $folded; - } - - $last = array_pop($folded); - $folded[] = ['at' => $last['at'], 'data' => $last['data'] . $pending]; - - return $folded; - } - - /** - * Whether a frame moves the cursor around without drawing anything. - * - * @param string $data - * The frame's output. - * - * @return bool - * TRUE when nothing is left once the escape sequences are removed. - */ - protected function isBlank(string $data): bool { - return $this->strip($data) === ''; - } - - /** - * Remove the escape sequences from output, leaving what it draws. - * - * @param string $data - * Output recorded from the session. - * - * @return string - * The same output without its escape sequences. - */ - protected function strip(string $data): string { - return (string) preg_replace('/\x1b\[[0-9;?]*[A-Za-z]/', '', $data); - } - - /** - * Drop the frames an in-place redraw immediately overwrites. - * - * A progress indicator rewrites its own line as often as the work reports - * back, so both what those frames hold and how many of them there are depend - * on the run. Only the last of a run of them survives, alongside the initial - * draw that precedes it. - * - * @param list $frames - * Frames, in order. - * - * @return list - * The surviving frames, in order. - */ - protected function collapseRedraws(array $frames): array { - $kept = []; - - foreach ($frames as $index => $frame) { - $next = $frames[$index + 1] ?? NULL; - if ($next !== NULL && $this->isLineRedraw($frame) && $this->isLineRedraw($next)) { - continue; - } - $kept[] = $frame; - } - - return $kept; - } - - /** - * Whether a frame redraws the line it is on and nothing else. - * - * @param array{at: float, data: string} $frame - * The frame to inspect. - * - * @return bool - * TRUE when the frame returns to the start of the current line and stays - * on it. - */ - protected function isLineRedraw(array $frame): bool { - if (str_contains($frame['data'], "\n") || preg_match('/\x1b\[[0-9]*[AJ]/', $frame['data']) === 1) { - return FALSE; - } - - // A progress indicator that hides the cursor before each update has that - // sequence folded onto the front of the frame, and it draws nothing. - $data = (string) preg_replace('/^(?:\x1b\[\?[0-9;]*[a-zA-Z])+/', '', $frame['data']); - - return preg_match('/^(?:\r(?!\n)|\x1b\[[0-9]*[GDK])/', $data) === 1; - } - - /** - * Place the frames on the canonical timeline. - * - * @param list $frames - * Frames, in order. - * - * @return list - * Encoded event lines, in order. - */ - protected function buildTimeline(array $frames): array { - $events = []; - $time = 0.0; - $typing = $this->typed && $this->mode === self::MODE_WRITES; - - foreach ($frames as $index => $frame) { - if ($index > 0) { - $previous = $frames[$index - 1]; - $time += $this->delay($previous, $frame, $typing); - $typing = $typing && !str_contains($previous['data'], "\n"); - } - - $events[] = $this->encodeEvent($time, $frame['data']); - } - - $events[] = $this->encodeEvent($time + self::END_PAUSE, ''); - - return $events; - } - - /** - * Encode one output event. - * - * The timestamp is written to a fixed number of decimals rather than handed - * to json_encode, which renders a float according to the machine's - * 'serialize_precision' setting. - * - * @param float $time - * Seconds from the start of the cast. - * @param string $data - * The output the event draws. - * - * @return string - * The encoded event line. - */ - protected function encodeEvent(float $time, string $data): string { - $seconds = rtrim(rtrim(number_format($time, self::TIME_DECIMALS, '.', ''), '0'), '.'); - - return '[' . ($seconds === '' ? '0' : $seconds) . ',"o",' . (string) json_encode($data, JSON_UNESCAPED_SLASHES) . ']'; - } - - /** - * Return how long a frame plays for before the next one replaces it. - * - * @param array{at: float, data: string} $previous - * The frame being played. - * @param array{at: float, data: string} $current - * The frame that replaces it. - * @param bool $typing - * Whether the command line is still being typed. - * - * @return float - * Seconds. - */ - protected function delay(array $previous, array $current, bool $typing): float { - if ($this->mode === self::MODE_REPAINT) { - // A prompt paces itself, so the recorded gaps are read here, but only as - // a two-way choice: a repaint that follows within the merge window - // continues a step, and anything slower begins one. - return $current['at'] - $previous['at'] < self::MERGE_WINDOW ? $this->frameDelay : self::STEP_DELAY; - } - - if ($typing) { - return str_contains($previous['data'], "\n") ? self::STEP_DELAY : self::TYPE_DELAY; - } - - return $this->frameDelay; - } - -} diff --git a/.vortex/docs/.utils/VideoRecorder.php b/.vortex/docs/.utils/VideoRecorder.php index 61506a15f..2987fb79d 100644 --- a/.vortex/docs/.utils/VideoRecorder.php +++ b/.vortex/docs/.utils/VideoRecorder.php @@ -2,13 +2,11 @@ declare(strict_types=1); -namespace DrevOps\Vortex\Docs; - /** * Shared recorder for Vortex documentation videos. * * Each per-video script constructs an instance of this class and orchestrates - * a sequence of calls (workspace, bootstrap, record, normalize, render, + * a sequence of calls (workspace, bootstrap, record, postprocess, render, * install). The class is intentionally self-contained: no framework, no * composer dependencies. */ @@ -18,6 +16,12 @@ final class VideoRecorder { public const TERMINAL_HEIGHT = 42; + /** Poster timestamp for the installer recording (captures the welcome banner). */ + public const POSTER_TIMESTAMP_MS = 2000; + + /** Poster timestamp for command videos that spend their first seconds bootstrapping inside Docker. */ + public const POSTER_TIMESTAMP_MS_LATE = 30000; + public const LINE_HEIGHT = '1.1'; public function __construct( @@ -26,13 +30,13 @@ public function __construct( public readonly string $renderer_script, ) { if (!is_dir($this->project_root)) { - throw new \RuntimeException("Project root not found: {$this->project_root}"); + throw new RuntimeException("Project root not found: {$this->project_root}"); } if (!is_dir($this->docs_static_dir)) { - throw new \RuntimeException("Docs static dir not found: {$this->docs_static_dir}"); + throw new RuntimeException("Docs static dir not found: {$this->docs_static_dir}"); } if (!is_file($this->renderer_script)) { - throw new \RuntimeException("Renderer script not found: {$this->renderer_script}"); + throw new RuntimeException("Renderer script not found: {$this->renderer_script}"); } } @@ -55,7 +59,7 @@ public function checkDependencies(array $extra = []): void { $this->note('Install commands:'); $this->note(' brew install asciinema expect composer # macOS'); $this->note(' apt-get install asciinema expect-dev composer # Ubuntu/Debian'); - throw new \RuntimeException('Missing dependencies: ' . implode(', ', $missing)); + throw new RuntimeException('Missing dependencies: ' . implode(', ', $missing)); } $this->pass('All required dependencies present'); @@ -69,7 +73,7 @@ public function buildInstallerPhar(string $dest): void { $built_phar = $source_dir . '/build/installer.phar'; if (!is_dir($source_dir)) { - throw new \RuntimeException("Installer source not found: $source_dir"); + throw new RuntimeException("Installer source not found: $source_dir"); } $this->info('Building installer.phar from source'); @@ -79,11 +83,11 @@ public function buildInstallerPhar(string $dest): void { $this->run(['composer', 'build'], $source_dir); if (!is_file($built_phar)) { - throw new \RuntimeException("Build completed but installer.phar not found at $built_phar"); + throw new RuntimeException("Build completed but installer.phar not found at $built_phar"); } if (!copy($built_phar, $dest)) { - throw new \RuntimeException("Failed to copy installer.phar to $dest"); + throw new RuntimeException("Failed to copy installer.phar to $dest"); } $this->pass("installer.phar built and copied to $dest"); @@ -102,7 +106,7 @@ public function buildInstallerPhar(string $dest): void { public function runInstaller(string $workspace, string $uri): string { $installer = "$workspace/installer.php"; if (!is_file($installer)) { - throw new \RuntimeException("Installer not found in workspace: $installer"); + throw new RuntimeException("Installer not found in workspace: $installer"); } $this->info('Running installer non-interactively'); @@ -123,7 +127,7 @@ public function runInstaller(string $workspace, string $uri): string { $project_dir = "$workspace/star_wars"; if (!is_dir($project_dir)) { - throw new \RuntimeException("Installer did not produce project at $project_dir"); + throw new RuntimeException("Installer did not produce project at $project_dir"); } $this->pass("Installer completed; project at $project_dir"); @@ -203,7 +207,7 @@ public function teardownPersistentWorkspace(string $workspace, string $compose_p } /** - * Run asciinema rec against a target command, producing an asciicast file. + * Run asciinema rec against a target command, producing an asciicast v2 JSON file. * * @param string $cwd * The cwd for asciinema (and therefore for the recorded command). @@ -228,12 +232,10 @@ public function recordSession(string $cwd, string $cast_path, string $command, s $this->note("command: $command"); $this->note("output: $cast_path"); - // '--window-size' needs asciinema 3.x, which writes version 3 casts. - // CastNormalizer reads those and the version 2 an older recorder would - // write, so the format is left to whichever one is installed. $this->run([ 'asciinema', 'rec', "--window-size=$size", + '--output-format=asciicast-v2', "--title=$title", "--command=$command", '--overwrite', @@ -241,37 +243,154 @@ public function recordSession(string $cwd, string $cast_path, string $command, s ], $cwd, $env); if (!is_file($cast_path)) { - throw new \RuntimeException("Recording produced no cast file at $cast_path"); + throw new RuntimeException("Recording produced no cast file at $cast_path"); } $this->pass('Recording complete'); } /** - * Rewrite a recorded cast onto the canonical timeline in place. + * Post-process a recorded cast: + * - When $strip_first_event is TRUE, drop the first event line (used for + * the installer's expect script where asciinema echoes the spawn + * command on event 1). + * - Replace the workspace path with /home/user/demo. + * - Replace the project root path with /home/user/vortex. + * - Strip any leftover /Users// user-home references. + */ + public function postprocessCast(string $cast_path, ?string $workspace = NULL, bool $strip_first_event = FALSE): void { + if (!is_file($cast_path)) { + throw new RuntimeException("Cast file not found: $cast_path"); + } + + $this->info('Post-processing cast'); + + $lines = file($cast_path, FILE_IGNORE_NEW_LINES); + if ($lines === FALSE || count($lines) < 2) { + throw new RuntimeException("Cast file is empty or malformed: $cast_path"); + } + + if ($strip_first_event) { + array_splice($lines, 1, 1); + } + + $contents = implode("\n", $lines) . "\n"; + + if ($workspace !== NULL && $workspace !== '') { + $contents = str_replace($workspace, '/home/user/demo', $contents); + $workspace_json = json_encode($workspace); + $demo_json = json_encode('/home/user/demo'); + if (is_string($workspace_json) && $workspace_json !== '' && is_string($demo_json)) { + $contents = str_replace($workspace_json, $demo_json, $contents); + } + } + + $contents = str_replace($this->project_root, '/home/user/vortex', $contents); + $project_root_json = json_encode($this->project_root); + $vortex_json = json_encode('/home/user/vortex'); + if (is_string($project_root_json) && $project_root_json !== '' && is_string($vortex_json)) { + $contents = str_replace($project_root_json, $vortex_json, $contents); + } + + $contents = preg_replace('#/Users/[^/]+/#', '/home/user/', $contents); + if ($contents === NULL) { + throw new RuntimeException("Failed to anonymise user paths in cast: $cast_path"); + } + + $contents = preg_replace('#(/user/reset/\d+/\d+/)[A-Za-z0-9_-]+(/login)#', '$1[REDACTED]$2', $contents); + if ($contents === NULL) { + throw new RuntimeException("Failed to redact login tokens in cast: $cast_path"); + } + + $contents = $this->redactSecrets($contents); + + if (file_put_contents($cast_path, $contents) === FALSE) { + throw new RuntimeException("Failed to write postprocessed cast: $cast_path"); + } + + $this->pass('Cast post-processed'); + } + + /** + * Mask credential-like secrets in cast contents with a fixed placeholder. * - * @param string $cast_path - * Path to the recorded cast file. - * @param \DrevOps\Vortex\Docs\CastNormalizer $normalizer - * Normalizer configured for the video being rendered. + * Recorded command output can surface real secrets - for example a + * 'PACKAGE_TOKEN' replayed verbatim by a cached Docker build layer, or a + * token printed by a provisioning step. Published demos must never embed + * real credentials, so recognised token formats and the literal values of + * sensitive environment variables are masked before the cast is rendered to + * SVG and PNG. + */ + protected function redactSecrets(string $contents): string { + $placeholder = 'XXXXX'; + + $patterns = [ + // GitHub personal access, OAuth, user-to-server, server-to-server and + // refresh tokens (for example 'ghp_...', 'gho_...'). + '#\bgh[oprsu]_[A-Za-z0-9]{36,255}#', + // GitHub fine-grained personal access tokens ('github_pat_...'). + '#\bgithub_pat_[A-Za-z0-9_]{22,255}#', + // AWS access key identifiers. + '#\b(?:AKIA|ASIA)[A-Z0-9]{16}#', + ]; + + $masked = preg_replace($patterns, $placeholder, $contents); + if ($masked === NULL) { + throw new RuntimeException('Failed to mask secret token patterns in cast'); + } + + // Defence in depth: mask the literal values of sensitive environment + // variables when set, catching tokens whose format the patterns above do + // not recognise. Short values are skipped to avoid mangling innocuous text. + foreach (['PACKAGE_TOKEN', 'GITHUB_TOKEN', 'VORTEX_CONTAINER_REGISTRY_PASS'] as $name) { + $value = getenv($name); + if (is_string($value) && strlen($value) >= 8) { + $masked = str_replace($value, $placeholder, $masked); + } + } + + return $masked; + } + + /** + * Multiply every event timestamp by $factor (< 1 speeds up, > 1 slows down). + * Used to make recorded command demos playable in less wall-clock time. */ - public function normalizeCast(string $cast_path, CastNormalizer $normalizer): void { + public function applyTimeScale(string $cast_path, float $factor): void { if (!is_file($cast_path)) { - throw new \RuntimeException("Cast file not found: $cast_path"); + throw new RuntimeException("Cast file not found: $cast_path"); + } + if ($factor <= 0) { + throw new RuntimeException("applyTimeScale factor must be > 0, got $factor"); } - $this->info('Normalizing cast'); + $this->info("Applying time scale {$factor}x to cast"); - $contents = file_get_contents($cast_path); - if ($contents === FALSE) { - throw new \RuntimeException("Failed to read cast: $cast_path"); + $lines = file($cast_path, FILE_IGNORE_NEW_LINES); + if ($lines === FALSE || count($lines) < 2) { + throw new RuntimeException("Cast file is empty or malformed: $cast_path"); + } + + $output = [$lines[0]]; + for ($i = 1, $n = count($lines); $i < $n; $i++) { + $line = trim($lines[$i]); + if ($line === '') { + continue; + } + $event = json_decode($line, TRUE); + if (!is_array($event) || !isset($event[0]) || !is_numeric($event[0])) { + $output[] = $lines[$i]; + continue; + } + $event[0] = round(((float) $event[0]) * $factor, 6); + $output[] = json_encode($event, JSON_UNESCAPED_SLASHES); } - if (file_put_contents($cast_path, $normalizer->normalize($contents)) === FALSE) { - throw new \RuntimeException("Failed to write normalized cast: $cast_path"); + if (file_put_contents($cast_path, implode("\n", $output) . "\n") === FALSE) { + throw new RuntimeException("Failed to write time-scaled cast: $cast_path"); } - $this->pass('Cast normalized'); + $this->pass("Cast time-scaled by {$factor}x"); } /** @@ -289,70 +408,53 @@ public function renderSvg(string $cast_path, string $svg_path): void { ]); if (!is_file($svg_path)) { - throw new \RuntimeException("SVG render produced no file: $svg_path"); + throw new RuntimeException("SVG render produced no file: $svg_path"); } $this->pass("SVG rendered: $svg_path"); } /** - * Return the timestamp in ms at which a cast shows a given frame. - * - * @param string $cast_path - * Path to the cast file. - * @param string|null $marker - * Text the wanted frame draws. NULL means the last frame of the cast. - * - * @return int - * Milliseconds from the start of the cast, one millisecond after the frame - * is applied so that the snapshot shows it. + * Inspect a cast file and return the timestamp of its last event in ms. */ - public function getFrameTimestampMs(string $cast_path, ?string $marker = NULL): int { + public function getCastDurationMs(string $cast_path): int { $handle = fopen($cast_path, 'r'); if ($handle === FALSE) { - throw new \RuntimeException("Cannot read cast: $cast_path"); + throw new RuntimeException("Cannot read cast: $cast_path"); } fgets($handle); - $at = NULL; + $last_ts = 0.0; while (($line = fgets($handle)) !== FALSE) { - $event = json_decode(trim($line), TRUE); - if (!is_array($event) || !isset($event[0]) || !is_numeric($event[0]) || !isset($event[2]) || !is_string($event[2])) { + $line = trim($line); + if ($line === '') { continue; } - - if ($marker === NULL) { - $at = (float) $event[0]; - continue; - } - - if (str_contains((string) preg_replace('/\x1b\[[0-9;?]*[A-Za-z]/', '', $event[2]), $marker)) { - $at = (float) $event[0]; - break; + $event = json_decode($line, TRUE); + if (is_array($event) && isset($event[0]) && is_numeric($event[0])) { + $last_ts = (float) $event[0]; } } fclose($handle); - if ($at === NULL) { - throw new \RuntimeException($marker === NULL ? "Cast has no events: $cast_path" : "No frame draws \"$marker\" in $cast_path"); - } - - return (int) round($at * 1000) + 1; + return (int) round($last_ts * 1000); } /** * Render a single frame to PNG (1280px wide). * - * @param string $cast_path - * Path to the cast file. - * @param string $png_path - * Path to write the PNG to. - * @param string|null $marker - * Text the poster frame draws. NULL means the last frame of the cast. + * @param int|null $at_ms + * Cast timestamp (ms) to snapshot. NULL means the last frame of the cast. + * When omitted, falls back to POSTER_TIMESTAMP_MS. */ - public function renderPng(string $cast_path, string $png_path, ?string $marker = NULL): void { - $at = $this->getFrameTimestampMs($cast_path, $marker); - $this->note($marker === NULL ? "Poster: last frame ({$at}ms)" : "Poster: first frame drawing \"$marker\" ({$at}ms)"); + public function renderPng(string $cast_path, string $png_path, ?int $at_ms = NULL): void { + if ($at_ms === NULL) { + $at = $this->getCastDurationMs($cast_path); + $this->note("Using end-of-cast timestamp: {$at}ms"); + } + else { + $at = $at_ms; + } $this->info("Rendering PNG poster (at {$at}ms): $png_path"); @@ -374,14 +476,12 @@ public function renderPng(string $cast_path, string $png_path, ?string $marker = '-o', $png_path, '-f', 'png', 'resize', '1280', - // 'npx' resolves from its working directory, so run it where the pinned - // 'sharp-cli' is installed rather than wherever the caller happened to be. - ], dirname($this->renderer_script, 2)); + ]); @unlink($frame_svg); if (!is_file($png_path)) { - throw new \RuntimeException("PNG render produced no file: $png_path"); + throw new RuntimeException("PNG render produced no file: $png_path"); } $this->pass("PNG rendered: $png_path"); @@ -444,12 +544,12 @@ public function run(array $command, ?string $cwd = NULL, array $env_overrides = $proc = proc_open($command, [], $pipes, $cwd, $env); if (!is_resource($proc)) { - throw new \RuntimeException("Failed to start: $pretty"); + throw new RuntimeException("Failed to start: $pretty"); } $exit_code = proc_close($proc); if ($exit_code !== 0) { - throw new \RuntimeException("Command failed (exit $exit_code): $pretty"); + throw new RuntimeException("Command failed (exit $exit_code): $pretty"); } return $exit_code; diff --git a/.vortex/docs/.utils/update-videos.php b/.vortex/docs/.utils/update-videos.php index 39daf036e..38e963db4 100755 --- a/.vortex/docs/.utils/update-videos.php +++ b/.vortex/docs/.utils/update-videos.php @@ -3,12 +3,8 @@ declare(strict_types=1); -require_once __DIR__ . '/CastNormalizer.php'; require_once __DIR__ . '/VideoRecorder.php'; -use DrevOps\Vortex\Docs\CastNormalizer; -use DrevOps\Vortex\Docs\VideoRecorder; - /** * Update one or more documentation videos. * @@ -22,27 +18,17 @@ * the existing workspace, useful for re-recording a subset of videos * without paying the install + build cost. * - * Output is hardcoded to .vortex/docs/static/img/.{json,svg,png}. - * - * Recording the same session twice produces the same bytes: every artefact is - * a function of what the session output, never of how the machine was doing - * that day. `--verify` re-runs the deterministic half of the pipeline over the - * committed artefacts and reports anything that no longer matches. + * Output is hardcoded to .vortex/docs/static/img/.{json,svg,png,gif}. * * Usage: - * php update-videos.php # wipe + bootstrap + record all + * php update-videos.php # wipe + bootstrap + record all six * php update-videos.php lint provision # wipe + bootstrap + record lint, provision * php update-videos.php lint,test # commas also accepted * php update-videos.php --keep lint # reuse workspace, record lint only - * php update-videos.php --verify # re-render the committed artefacts and compare */ const PROMPT_DELAY = 1; -const TYPE_DELAY = 0.02; - -const VERIFY_REL = '.artifacts/tmp/videos-verify'; - const WORKSPACE_REL = '.artifacts/tmp/videos-workspace'; const COMPOSE_PROJECT = 'vortex_videos'; @@ -50,113 +36,96 @@ /** * Per-video configuration. * - * - command: the command executed inside the recording. NULL means the - * installer expect script is used instead. - * - frames: how the recording is cut into frames. 'writes' follows the - * writes a command made; 'repaint' follows the repaints a - * full-screen prompt made. - * - frame_delay: seconds a frame of command output plays for. The typed - * command line plays at CastNormalizer::TYPE_DELAY regardless, - * so every demo types at the same rate. - * - cols/rows: terminal dimensions passed to asciinema and used for renders. - * - poster: text the PNG poster frame draws. NULL means use the last - * frame of the cast. - * - typer: wrap the command with the simulated-typing intro from - * type-and-run.php. Installer is FALSE because the expect - * script handles its own prompt-driven flow. + * - command: the command executed inside the recording. NULL means the + * installer expect script is used instead. + * - speed: playback speed multiplier. 1.0 = recorded speed, 2.0 = 2x faster. + * - cols/rows: terminal dimensions passed to asciinema and used for renders. + * - poster_ms: cast timestamp (ms) at which the PNG poster frame is taken. + * NULL means use the last frame of the cast. + * - typer: wrap the command with the simulated-typing intro from + * type-and-run.php. Installer is FALSE because the expect + * script handles its own prompt-driven flow. */ const VIDEOS = [ 'installer' => [ 'command' => NULL, - 'frames' => CastNormalizer::MODE_REPAINT, - 'frame_delay' => 0.1, + 'speed' => 1.0, 'cols' => 80, 'rows' => 42, - 'poster' => 'Repository and reference validated', + 'poster_ms' => 2000, 'typer' => FALSE, ], 'build' => [ 'command' => 'ahoy build', - 'frames' => CastNormalizer::MODE_WRITES, - 'frame_delay' => 0.05, + 'speed' => 1.0, 'cols' => 80, 'rows' => 42, - 'poster' => NULL, + 'poster_ms' => 2000, 'typer' => TRUE, ], 'provision' => [ 'command' => 'ahoy provision', - 'frames' => CastNormalizer::MODE_WRITES, - 'frame_delay' => 0.15, + 'speed' => 1.0, 'cols' => 80, 'rows' => 42, - 'poster' => NULL, + 'poster_ms' => NULL, 'typer' => TRUE, ], 'lint' => [ 'command' => 'ahoy lint', - 'frames' => CastNormalizer::MODE_WRITES, - 'frame_delay' => 0.4, + 'speed' => 2.0, 'cols' => 80, 'rows' => 42, - 'poster' => NULL, + 'poster_ms' => NULL, 'typer' => TRUE, ], 'test' => [ 'command' => 'ahoy test', - 'frames' => CastNormalizer::MODE_WRITES, - 'frame_delay' => 0.15, + 'speed' => 2.0, 'cols' => 80, 'rows' => 42, - 'poster' => NULL, + 'poster_ms' => 2000, 'typer' => TRUE, ], 'test-bdd' => [ 'command' => 'ahoy test-bdd', - 'frames' => CastNormalizer::MODE_WRITES, - 'frame_delay' => 0.1, + 'speed' => 1.0, 'cols' => 80, 'rows' => 42, - 'poster' => NULL, + 'poster_ms' => 2000, 'typer' => TRUE, ], 'info' => [ 'command' => 'ahoy info', - 'frames' => CastNormalizer::MODE_WRITES, - 'frame_delay' => 0.5, + 'speed' => 1.0, 'cols' => 80, 'rows' => 42, - 'poster' => NULL, + 'poster_ms' => NULL, 'typer' => TRUE, ], 'doctor' => [ 'command' => 'ahoy doctor', - 'frames' => CastNormalizer::MODE_WRITES, - 'frame_delay' => 0.5, + 'speed' => 1.0, 'cols' => 80, 'rows' => 42, - 'poster' => NULL, + 'poster_ms' => NULL, 'typer' => TRUE, ], 'doctor-info' => [ 'command' => 'ahoy doctor info', - 'frames' => CastNormalizer::MODE_WRITES, - 'frame_delay' => 0.3, + 'speed' => 1.0, 'cols' => 80, 'rows' => 42, - 'poster' => NULL, + 'poster_ms' => NULL, 'typer' => TRUE, ], ]; function usage(): void { - fwrite(STDERR, "Usage: php update-videos.php [--keep|--verify] [video-name ...]\n"); + fwrite(STDERR, "Usage: php update-videos.php [--keep] [video-name ...]\n"); fwrite(STDERR, ' Video names: ' . implode(', ', array_keys(VIDEOS)) . "\n"); fwrite(STDERR, " Default: all videos\n"); fwrite(STDERR, "\n"); - fwrite(STDERR, "--verify records nothing. It re-runs normalization and rendering over the\n"); - fwrite(STDERR, "committed artefacts and reports every one that no longer matches.\n"); - fwrite(STDERR, "\n"); fwrite(STDERR, "Default mode wipes '.artifacts/tmp/videos-workspace/' (via 'ahoy reset'\n"); fwrite(STDERR, "+ rm) and bootstraps from scratch (install installer.phar, run installer,\n"); fwrite(STDERR, "ahoy build).\n"); @@ -167,7 +136,7 @@ function usage(): void { fwrite(STDERR, "Video names may be space or comma separated (lint test = lint,test).\n"); } -function build_installer_expect_script(int|float $prompt_delay, int|float $type_delay, string $uri): string { +function build_installer_expect_script(int|float $prompt_delay, string $uri): string { $body = <<<'EXPECT' #!/usr/bin/env expect @@ -175,7 +144,6 @@ function build_installer_expect_script(int|float $prompt_delay, int|float $type_ log_user 1 set prompt_delay {{PROMPT_DELAY}} -set type_delay {{TYPE_DELAY}} set installer_uri "{{URI}}" proc safe_send {s} { @@ -203,16 +171,10 @@ function build_installer_expect_script(int|float $prompt_delay, int|float $type_ after 150 } -# Type at a fixed rate. 'send -h' varies its inter-character delays at random, -# which moves where the terminal splits its writes and makes two recordings of -# the same session differ. proc type_text {text} { - global type_delay wait_for_quiet 0.1 - foreach ch [split $text ""] { - safe_send $ch - sleep $type_delay - } + set send_human {.1 .3 1 .05 2 .1 .2 0 .4 0 .6 0 .8 0 1} + send -h $text } proc wait_and_enter {} { @@ -306,109 +268,27 @@ function build_installer_expect_script(int|float $prompt_delay, int|float $type_ EXPECT; return str_replace( - ['{{PROMPT_DELAY}}', '{{TYPE_DELAY}}', '{{URI}}'], - [(string) $prompt_delay, (string) $type_delay, $uri], + ['{{PROMPT_DELAY}}', '{{URI}}'], + [(string) $prompt_delay, $uri], $body, ); } -function build_normalizer(string $name, string $project_root, string $workspace): CastNormalizer { - $cfg = VIDEOS[$name]; - - return new CastNormalizer( - mode: (string) $cfg['frames'], - frame_delay: (float) $cfg['frame_delay'], - typed: $cfg['typer'] === TRUE, - paths: [ - $workspace => '/home/user/demo', - $project_root => '/home/user/vortex', - ], - ); -} - function render_video(VideoRecorder $recorder, string $name, string $workspace, string $docs_static_dir): void { $cfg = VIDEOS[$name]; $cast = $docs_static_dir . "/$name.json"; - $recorder->normalizeCast($cast, build_normalizer($name, $recorder->project_root, $workspace)); - $recorder->renderSvg($cast, $docs_static_dir . "/$name.svg"); - $recorder->renderPng($cast, $docs_static_dir . "/$name.png", $cfg['poster'] === NULL ? NULL : (string) $cfg['poster']); -} - -function files_match(string $left, string $right): bool { - return is_file($left) && is_file($right) && filesize($left) === filesize($right) && md5_file($left) === md5_file($right); -} - -/** - * Re-render the committed artefacts and report every one that has drifted. - * - * Nothing is recorded: recording is the one part of the pipeline that needs a - * built project and a running Docker stack. Everything after it is a function - * of the committed cast, so this checks that each cast is already in canonical - * form and that its SVG and PNG are the ones the current renderers produce - * from it. - */ -function verify_videos(VideoRecorder $recorder, array $requested, string $project_root, string $docs_static_dir): int { - $recorder->info('Verifying committed artefacts'); - - $verify_dir = $project_root . '/' . VERIFY_REL; - $recorder->rmrf($verify_dir); - if (!mkdir($verify_dir, 0o755, TRUE) && !is_dir($verify_dir)) { - $recorder->fail("Failed to create verification directory: $verify_dir"); - return 1; - } - - $workspace = $project_root . '/' . WORKSPACE_REL; - $drifted = []; - - foreach ($requested as $name) { - $cast = $docs_static_dir . "/$name.json"; - if (!is_file($cast)) { - $recorder->note("$name: no committed cast, skipped"); - continue; - } - - $recorder->info("===== Verifying '$name' ====="); - - $cfg = VIDEOS[$name]; - $committed = (string) file_get_contents($cast); - $normalized = build_normalizer($name, $project_root, $workspace)->normalize($committed); - - $differences = $normalized === $committed ? [] : ['cast']; - - $candidate = "$verify_dir/$name.json"; - if (file_put_contents($candidate, $normalized) === FALSE) { - throw new RuntimeException("Failed to write candidate cast: $candidate"); - } - - $recorder->renderSvg($candidate, "$verify_dir/$name.svg"); - if (!files_match("$verify_dir/$name.svg", $docs_static_dir . "/$name.svg")) { - $differences[] = 'svg'; - } - - $recorder->renderPng($candidate, "$verify_dir/$name.png", $cfg['poster'] === NULL ? NULL : (string) $cfg['poster']); - if (!files_match("$verify_dir/$name.png", $docs_static_dir . "/$name.png")) { - $differences[] = 'png'; - } - - if ($differences === []) { - $recorder->pass("$name: artefacts match"); - continue; - } - - $drifted[$name] = $differences; - $recorder->fail("$name: " . implode(', ', $differences) . ' differ'); - } + // The installer's expect script makes asciinema echo a spawn line as the + // first event; for command videos using type-and-run.php there is no such + // echo and the first event is the typed prompt that we want to keep. + $recorder->postprocessCast($cast, $workspace, strip_first_event: $name === 'installer'); - if ($drifted === []) { - $recorder->pass('All verified artefacts match'); - return 0; + if ((float) $cfg['speed'] !== 1.0) { + $recorder->applyTimeScale($cast, 1.0 / (float) $cfg['speed']); } - $recorder->fail('Artefacts differ for: ' . implode(', ', array_keys($drifted))); - $recorder->note('Re-run `ahoy update-videos ` and commit the result.'); - - return 1; + $recorder->renderSvg($cast, $docs_static_dir . "/$name.svg"); + $recorder->renderPng($cast, $docs_static_dir . "/$name.png", $cfg['poster_ms'] === NULL ? NULL : (int) $cfg['poster_ms']); } function record_installer(VideoRecorder $recorder, string $workspace, string $project_root, string $docs_static_dir): void { @@ -417,7 +297,7 @@ function record_installer(VideoRecorder $recorder, string $workspace, string $pr $recorder->info("===== Recording 'installer' ====="); $expect_script = "$workspace/installer.exp"; - if (file_put_contents($expect_script, build_installer_expect_script(PROMPT_DELAY, TYPE_DELAY, $project_root)) === FALSE) { + if (file_put_contents($expect_script, build_installer_expect_script(PROMPT_DELAY, $project_root)) === FALSE) { throw new RuntimeException("Failed to write expect script: $expect_script"); } if (!chmod($expect_script, 0o755)) { @@ -483,8 +363,7 @@ function main(array $argv): int { } $keep = in_array('--keep', $args, TRUE); - $verify = in_array('--verify', $args, TRUE); - $args = array_values(array_filter($args, fn($a): bool => !in_array($a, ['--keep', '--verify'], TRUE))); + $args = array_values(array_filter($args, fn($a): bool => $a !== '--keep')); $expanded = []; foreach ($args as $arg) { @@ -507,11 +386,6 @@ function main(array $argv): int { $recorder = new VideoRecorder($project_root, $docs_static_dir, $renderer); $recorder->info('Vortex video orchestrator (PHP)'); $recorder->note('Requested: ' . implode(', ', $requested)); - - if ($verify) { - return verify_videos($recorder, $requested, $project_root, $docs_static_dir); - } - $recorder->note('Mode: ' . ($keep ? 'reuse workspace (--keep)' : 'wipe + bootstrap')); $needs_built_project = array_intersect($requested, ['build', 'provision', 'lint', 'test', 'test-bdd', 'info', 'doctor', 'doctor-info']) !== []; diff --git a/.vortex/docs/CLAUDE.md b/.vortex/docs/CLAUDE.md index eaaaceecf..624418882 100644 --- a/.vortex/docs/CLAUDE.md +++ b/.vortex/docs/CLAUDE.md @@ -59,22 +59,20 @@ Categories defined in `sidebars.js`. For subdirectories: ## Documentation videos -Nine terminal demo videos live in `static/img/` (`installer.*`, `build.*`, -`provision.*`, `lint.*`, `test.*`, `test-bdd.*`, `info.*`, `doctor.*`, -`doctor-info.*`), each as a `.json` asciicast + `.svg` + `.png` poster. They are -generated by a single PHP script (`.utils/update-videos.php`) driven by the -shared `VideoRecorder` class and the `CastNormalizer` class. Run +Six terminal demo videos live in `static/img/` (`installer.*`, `build.*`, +`provision.*`, `lint.*`, `test.*`, `test-bdd.*`), each as a `.json` asciicast + +`.svg` + `.png` poster. They are generated by a single PHP script +(`.utils/update-videos.php`) driven by the shared `VideoRecorder` class. Run `ahoy update-videos [names]` from `.vortex/`. See `.vortex/CLAUDE.md` for the staleness triggers (which code change invalidates which video). | Command | Regenerates | |----------------------------------------|------------------------------------------------| -| `ahoy update-videos` | Wipe workspace + bootstrap + record all | +| `ahoy update-videos` | Wipe workspace + bootstrap + record all six | | `ahoy update-videos lint provision` | Wipe + bootstrap + record only lint, provision | | `ahoy update-videos lint,test` | Comma-separated list also accepted | | `ahoy update-videos --keep lint` | Skip bootstrap, re-record lint only | | `ahoy update-videos --keep lint test` | Skip bootstrap, re-record lint and test | -| `ahoy update-videos --verify` | Record nothing; re-render and compare | **Workspace**: the orchestrator uses a single fixed workspace at `.artifacts/tmp/videos-workspace/` (gitignored, Docker compose project name @@ -82,8 +80,8 @@ staleness triggers (which code change invalidates which video). bootstraps from scratch; `--keep` reuses the existing workspace and exits cleanly if the Docker stack is not running. -**Config**: per-video settings (command, frame mode, frame delay, terminal -cols/rows, poster marker, typer on/off) live in the `VIDEOS` array at the top of +**Config**: per-video settings (command, speed, terminal cols/rows, poster +timestamp, typer on/off) live in the `VIDEOS` array at the top of `update-videos.php`. **Pipeline**: @@ -93,47 +91,6 @@ cols/rows, poster marker, typer on/off) live in the `VIDEOS` array at the top of 3. Remaining requested commands (`provision`, `lint`, `test`, `test-bdd`) are recorded in that same `star_wars` directory, in fixed order. 4. The workspace and Docker stack are preserved at exit so the next `--keep` invocation can reuse them; a stale workspace from a previous run is torn down at the **start** of the next non-`--keep` run. -**Reproducibility**: `CastNormalizer` rewrites each recording onto a canonical -timeline before it is rendered, so the artefacts are a function of what the -session output rather than of how the machine was doing that day. It reduces -the recording to the writes the session made, cuts frames at boundaries the -output carries, replays them at the configured delays, masks values that differ -between two runs (host ports, run durations, image digests, generated file -names), and collapses a run of in-place redraws to its final state. - -Two consequences worth knowing: - -- `ahoy update-videos --verify` records nothing. It re-runs normalization and - rendering over the committed artefacts and reports every one that no longer - matches, so a hand-edited cast or a renderer change is caught without a - regeneration. -- `build` can still drift. BuildKit numbers its `#N` steps as parallel targets - start and interleaves their lines by completion, which no masking fixes. -- `installer` can still drift. Repaint mode is the one place a recorded gap is - read, as a two-way choice against `MERGE_WINDOW`. Its own pauses sit an order - of magnitude clear of that threshold, but a gap that lands near it can fall - either way between runs, which changes one delay and shifts every timestamp - after it. - -The `.png` posters are rasterized from the `.svg` by `sharp`, whose output -depends on the host's SVG renderer and fonts. Two runs on one machine match; -two machines need not. - -**Cast format**: a recording is whatever version the installed `asciinema` -writes. The recorder passes `--window-size`, which needs asciinema 3.x, so in -practice that is version 3. `CastNormalizer` -reads both (version 3 times each event from the one before it and carries the -terminal in a `term` object) and always writes version 2, which is the version -`svg-term` reads. Nothing downstream has to know which recorder produced the -session. - -**Proof**: `VideoRecordingTest` in `.vortex/tests/phpunit/Functional/` records -one command twice through the real pipeline and asserts the `.json`, `.svg` and -`.png` come out byte-identical. It needs `asciinema`, `node`, `npx` and the -documentation Node dependencies, and skips when any of them is missing, so it -runs where the recording toolchain is installed and stays out of the way -everywhere else. - **Iterating on one video** - use `--keep` so the install + build happens only once, then replay the recording against the preserved project: diff --git a/.vortex/docs/content/contributing/maintenance/installer.mdx b/.vortex/docs/content/contributing/maintenance/installer.mdx index fa9ee0246..5110f9285 100644 --- a/.vortex/docs/content/contributing/maintenance/installer.mdx +++ b/.vortex/docs/content/contributing/maintenance/installer.mdx @@ -14,7 +14,7 @@ that template modifications and the corresponding installer logic stay in sync. installer.php && php installe > /etc/clamav/clamd.conf && rm /tmp/clamav.conf && sed -i \"s/^LogFile /# LogFile /g\" /etc/clamav/clamd.conf && sed -i \"s/^#LogSyslog /LogSyslog /g\" /etc/clamav/clamd.conf && sed -i \"s/^UpdateLogFile /# UpdateLogFile /g\" /etc/clamav/freshclam.conf && sed -i \"s/^#LogSyslog /LogSyslog /g\" /etc/clamav/freshclam.conf\r\n#38 CACHED\r\n\r\n#39 [clamav stage-1 5/7] COPY .docker/config/clamav/clamav.conf /tmp/clamav.conf\r\n#39 CACHED\r\n\r\n#40 [clamav stage-1 7/7] RUN fix-permissions /var/lib/clamav\r\n#40 CACHED\r\n\r\n#41 [nginx internal] load build context\r\n#41 transferring context: [SIZE] [TIME] done\r\n#41 DONE [TIME]\r\n\r\n#42 [clamav] exporting to image\r\n#42 exporting layers done\r\n#42 writing image sha256:[HASH] done\r\n#42 naming to docker.io/library/vortex_videos-clamav done\r\n#42 DONE [TIME]\r\n\r\n#43 [solr internal] load build context\r\n#43 transferring context: [SIZE] [TIME] done\r\n"] -[2.5,"o","#43 DONE [TIME]\r\n\r\n#44 [clamav] resolving provenance for metadata file\r\n#44 DONE [TIME]\r\n\r\n#45 [solr 2/3] COPY .docker/config/solr/config-set /solr-conf/conf/\r\n#45 CACHED\r\n\r\n#46 [solr 3/3] RUN sed -i -e \"s#${solr.data.dir:}#/var/solr/${solr.core.name}#g\" /solr-conf/conf/solrconfig.xml && sed -i -e \"s#solr.lock.type:native#solr.lock.type:none#g\" /solr-conf/conf/solrconfig.xml && sed -i -e \"s#solr.autoSoftCommit.MaxTime=5000#solr.autoSoftCommit.MaxTime=-1#g\" /solr-conf/conf/solrcore.properties\r\n#46 CACHED\r\n\r\n#47 [cli stage-0 2/10] RUN apk add --no-cache ncurses pv tzdata autoconf g++ make && pecl install pcov && docker-php-ext-enable pcov && docker-php-ext-install pcntl && apk del g++ make autoconf\r\n#47 CACHED\r\n\r\n#48 [cli stage-0 3/10] COPY patches /app/patches\r\n#48 CACHED\r\n\r\n#49 [cli stage-0 4/10] COPY scripts /app/scripts\r\n#49 CACHED\r\n\r\n#50 [solr] exporting to image\r\n#50 exporting layers done\r\n#50 writing image sha256:[HASH] [TIME] done\r\n#50 naming to docker.io/library/vortex_videos-solr done\r\n#50 DONE [TIME]\r\n\r\n#51 [php stage-0 5/10] COPY composer.json composer.* patches.lock.* .env* auth* /app/\r\n"] -[2.55,"o","#51 DONE [TIME]\r\n\r\n#52 [solr] resolving provenance for metadata file\r\n#52 DONE [TIME]\r\n\r\n#53 [php stage-0 6/10] RUN --mount=type=secret,id=package_token token=$(if [ -s /run/secrets/package_token ]; then cat /run/secrets/package_token; else echo \"XXXXX\"; fi) && if [ -n \"${token}\" ]; then export COMPOSER_AUTH=\"{\"github-oauth\": {\"github.com\": \"${token}\"}}\"; fi && COMPOSER_MEMORY_LIMIT=-1 composer install -n --no-dev --ansi --prefer-dist --optimize-autoloader\r\n"] -[2.6,"o","#53 0.260 \u001b[30;43mNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information.\u001b[39;49m\r\n"] -[2.65,"o","#53 0.261 \u001b[32mLoading composer repositories with package information\u001b[39m\r\n"] -[2.7,"o","#53 20.48 \u001b[32mUpdating dependencies\u001b[39m\r\n"] -[2.75,"o","#53 20.74 \u001b[32mLock file operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n#53 20.74 - Locking \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m)"] -[2.8,"o","\r\n#53 20.74 - Locking \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m)\r\n#53 20.74 - Locking \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] -[2.85,"o","#53 20.74 - Locking \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n#53 20.75 \u001b[32mWriting lock file\u001b[39m\r\n#53 20.75 \u001b[32mInstalling dependencies from lock file\u001b[39m\r\n#53 20.75 \u001b[32mPackage operations: 124 installs, 0 updates, 0 removals\u001b[39m\r\n#53 20.75 - Downloading \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[2.9,"o","#53 21.48 - Installing \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[2.95,"o","#53 21.50 - Downloading \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[3,"o","#53 22.09 - Installing \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n#53 22.10 - Downloading \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)"] -[3.05,"o","\r\n#53 22.10 - Downloading \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n"] -[3.1,"o","#53 22.11 - Downloading \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m)\r\n#5"] -[3.15,"o","3 22.11 - Downloading \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n"] -[3.2,"o","#53 22.50 0/121 [>---------------------------] 0%"] -[3.25,"o","\u001b[1G\u001b[2K 121/121 [============================] 100%\u001b[1G\u001b[2K"] -[3.3,"o","\u001b[30;43mpatches.lock.json does not exist. Creating a new patches.lock.json.\u001b[39;49m\r\n#53 28.01 - \u001b[32mResolving patches from dependencies.\u001b[39m\r\n#53 28.01 - Installing \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n#53 28.02 - Installing \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 28.06 - Installing \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[3"] -[3.35,"o","9m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n#53 28.08 0/118 [>---------------------------] 0%\u001b[1G\u001b[2K 40/118 [=========>------------------] 33%\u001b[1G\u001b[2K 64/118 [===============>------------] 54%"] -[3.4,"o","\u001b[1G\u001b[2K 118/118 [============================] 100%\u001b[1G\u001b[2K"] -[3.45,"o","\u001b[32m34 package suggestions were added by new dependencies, use `composer suggest` to see details.\u001b[39m\r\n"] -[3.5,"o","#53 30.26 \u001b[32mGenerating optimized autoload files\u001b[39m\r\n"] -[3.55,"o","#53 31.15 \u001b[32m57 packages you are using are looking for funding.\u001b[39m\r\n#53 31.15 \u001b[32mUse the `composer fund` command to find out more!\u001b[39m\r\n"] -[3.6,"o","#53 31.15 Scaffolding files for \u001b[33mdrupal/core\u001b[39m:\r\n#53 31.15 - Skip \u001b[32m[web-root]/.htaccess\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.15 - Skip \u001b[32m[web-root]/README.md\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/index.php\u001b[39m from \u001b[32massets/scaffold/files/index.php\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.csslintrc\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/robots.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/update.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/INSTALL.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.eslintignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.eslintrc.json\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.ht.router.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/README.txt\u001b[39m from \u001b[32massets/scaffold/files/sites.README.txt\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[project-root]/.editorconfig\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/example.gitignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/themes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/themes.README.txt\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[project-root]/.gitattributes\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/modules/README.txt\u001b[39m from \u001b[32massets/scaffold/files/modules.README.txt\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/profiles/README.txt\u001b[39m from \u001b[32massets/scaffold/files/profiles.README.txt\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[project-root]/recipes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/recipes.README.txt\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/sites/example.sites.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/development.services.yml\u001b[39m from \u001b[32massets/scaffold/files/development.services.yml\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/sites/example.settings.local.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/default/default.services.yml\u001b[39m from \u001b[32massets/scaffold/files/default.services.yml\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/default/default.settings.php\u001b[39m from \u001b[32massets/scaffold/files/default.settings.php\u001b[39m\r\n"] -[3.65,"o","#53 DONE [TIME]\r\n\r\n#54 [nginx stage-0 7/10] COPY . /app\r\n#54 DONE [TIME]\r\n\r\n#55 [php stage-0 8/10] RUN mkdir -p -m 2775 \"/app/web/sites/default/files\" \"/app/web/sites/default/files/private\" \"/tmp\"\r\n"] -[3.7,"o","#55 DONE [TIME]\r\n\r\n#56 [cli stage-0 9/10] RUN if [ \"0\" != \"1\" ]; then theme_path=\"/app/web/themes/custom/star_wars\"; npm --prefix=\"${theme_path}\" ci --no-progress --no-audit --no-fund && npm --prefix=\"${theme_path}\" run build && npm cache clean --force; fi\r\n"] -[3.75,"o","#56 1.432 npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] -[3.8,"o","#56 1.756 npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\r\n#56 1.821 npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me\r\n"] -[3.85,"o","#56 2.110 npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] -[3.9,"o","#56 2.119 npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] -[3.95,"o","#56 2.357 npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported\r\n"] -[4,"o","#56 3.071 npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.\r\n"] -[4.05,"o","#56 3.654 \r\n#56 3.654 > star_wars@1.0.0 postinstall\r\n#56 3.654 > patch-package\r\n#56 3.654 \r\n#56 3.738 patch-package 6.5.1\r\n#56 3.738 Applying patches...\r\n#56 3.739 No patch files found\r\n#56 3.753 \r\n#56 3.753 added 475 packages in [TIME]\r\n#56 3.866 \r\n#56 3.866 > star_wars@1.0.0 build\r\n#56 3.866 > npm run clean && mkdir -p build/js && npm run concat && npm run uglify && npm run sass:prod && npm run postcss:prod && npm run copy\r\n#56 3.866 \r\n"] -[4.1,"o","#56 3.954 \r\n#56 3.954 > star_wars@1.0.0 clean\r\n#56 3.954 > rm -rf build\r\n#56 3.954 \r\n#56 4.049 \r\n#56 4.049 > star_wars@1.0.0 concat\r\n#56 4.049 > find js -name '*.js' ! -name '*.min.js' -exec cat {} + > build/js/star_wars.min.js\r\n#56 4.049 \r\n"] -[4.15,"o","#56 4.143 \r\n#56 4.143 > star_wars@1.0.0 uglify\r\n#56 4.143 > terser build/js/star_wars.min.js -o build/js/star_wars.min.js -c drop_console=true -m reserved=['jQuery','Drupal'] 2>/dev/null || true\r\n#56 4.143 \r\n"] -[4.2,"o","#56 4.322 \r\n#56 4.322 > star_wars@1.0.0 sass:prod\r\n#56 4.322 > sass scss/styles.scss build/css/star_wars.min.css --no-source-map --style=compressed\r\n#56 4.322 \r\n"] -[4.25,"o","#56 4.621 \r\n#56 4.621 > star_wars@1.0.0 postcss:prod\r\n#56 4.621 > postcss build/css/star_wars.min.css -o build/css/star_wars.min.css --no-map\r\n#56 4.621 \r\n"] -[4.3,"o","#56 4.903 \r\n#56 4.903 > star_wars@1.0.0 copy\r\n#56 4.903 > npm run copy:images && npm run copy:fonts\r\n#56 4.903 \r\n"] -[4.35,"o","#56 4.991 \r\n#56 4.991 > star_wars@1.0.0 copy:images\r\n#56 4.991 > mkdir -p build/images && cp -r images/* build/images/ 2>/dev/null || true\r\n#56 4.991 \r\n"] -[4.4,"o","#56 5.079 \r\n#56 5.079 > star_wars@1.0.0 copy:fonts\r\n#56 5.079 > mkdir -p build/fonts && cp -r fonts/* build/fonts/ 2>/dev/null || true\r\n#56 5.079 \r\n#56 5.157 npm warn using --force Recommended protections disabled.\r\n"] -[4.45,"o","#56 DONE [TIME]\r\n\r\n#57 [php stage-0 10/10] WORKDIR /app\r\n#57 DONE [TIME]\r\n\r\n#58 [cli] exporting to image\r\n#58 exporting layers\r\n"] -[4.5,"o","#58 exporting layers [TIME] done\r\n"] -[4.55,"o","#58 writing image sha256:[HASH] done\r\n#58 naming to docker.io/library/vortex_videos done\r\n#58 DONE [TIME]\r\n\r\n#59 [nginx stage-1 2/5] RUN apk add --no-cache tzdata\r\n#59 CACHED\r\n\r\n#60 [nginx stage-1 3/5] COPY ./.docker/config/nginx/redirects-map.conf /etc/nginx/redirects-map.conf\r\n#60 CACHED\r\n\r\n#61 [nginx stage-1 4/5] RUN fix-permissions /etc/nginx\r\n#61 CACHED\r\n\r\n#62 [php stage-1 2/3] RUN apk add --no-cache tzdata\r\n#62 CACHED\r\n\r\n#63 [cli] resolving provenance for metadata file\r\n#63 DONE [TIME]\r\n\r\n#64 [php stage-1 3/3] COPY --from=cli /app /app\r\n"] -[4.6,"o","#64 DONE [TIME]\r\n\r\n#65 [nginx stage-1 5/5] COPY --from=cli /app /app\r\n"] -[4.65,"o","#65 DONE [TIME]\r\n\r\n#66 [nginx] exporting to image\r\n"] -[4.7,"o","#66 exporting layers [TIME] done\r\n#66 writing image sha256:[HASH] done\r\n#66 naming to docker.io/library/vortex_videos-nginx done\r\n#66 DONE [TIME]\r\n\r\n#67 [php] exporting to image\r\n#67 exporting layers [TIME] done\r\n"] -[4.75,"o","#67 writing image sha256:[HASH] done\r\n#67 naming to docker.io/library/vortex_videos-php done\r\n#67 DONE [TIME]\r\n\r\n#68 [php] resolving provenance for metadata file\r\n#68 DONE [TIME]\r\n\r\n#69 [nginx] resolving provenance for metadata file\r\n#69 DONE [TIME]\r\n"] -[4.8,"o","\u001b[?25l\u001b[0G[+] up 8/12\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[4.85,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[4.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[4.95,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[5,"o"," \u001b[33m\u280b\u001b[0m Container vortex_videos-clamav-1 Creating \u001b[34m [TIME]\u001b[0m\r\n"] -[5.05,"o"," \u001b[33m\u280b\u001b[0m Container vortex_videos-redis-1 Creating \u001b[34m [TIME]\u001b[0m\r\n"] -[5.1,"o"," \u001b[33m\u280b\u001b[0m Container vortex_videos-solr-1 Creating \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-database-1 Creating \u001b[34m [TIME]\u001b[0m\r\n"] -[5.15,"o","\u001b[?25h\u001b[?25l\u001b[13A\u001b[0G[+] up 10/12\r\n"] -[5.2,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[5.25,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[5.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[5.35,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[5.4,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[5.45,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[5.5,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[5.55,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-solr-1 Creating \u001b[34m [TIME]\u001b[0m\r\n"] -[5.6,"o"," \u001b[33m\u2819\u001b[0m Container vortex_videos-database-1 Creating \u001b[34m [TIME]\u001b[0m\r\n"] -[5.65,"o","\u001b[?25h\u001b[?25l\u001b[13A\u001b[0G[+] up 12/13\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[5.7,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Creating \u001b[34m [TIME]\u001b[0m\r\n"] -[5.75,"o","\u001b[?25h\u001b[?25l\u001b[14A\u001b[0G[+] up 13/14\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-cli-1 Creating \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[5.8,"o","\u001b[?25l\u001b[15A\u001b[0G[+] up 14/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-php-1 Creating \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-nginx-1 Creating \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-chrome-1 Creating \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[5.85,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n"] -[5.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[5.95,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[6,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[6.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-nginx-1 Creating \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-chrome-1 Creating \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.1,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n"] -[6.15,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[6.2,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[6.25,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[6.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[6.35,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.4,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.45,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.5,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.55,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.6,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.65,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[6.7,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.75,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.8,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[6.85,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[6.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[6.95,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[7.05,"o"," \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[7.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[7.15,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[7.2,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[7.25,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[7.3,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[7.35,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[7.4,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[7.45,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[7.5,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[7.55,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[7.6,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[7.65,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[7.7,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[7.75,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[7.8,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[7.85,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[7.9,"o"," \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[7.95,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[8,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.05,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.15,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.2,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[8.25,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[8.3,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[8.35,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[8.4,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[8.45,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.5,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.55,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.6,"o"," \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[8.65,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.75,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.8,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[8.85,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[8.9,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[8.95,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[9.05,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[9.1,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[9.15,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[9.2,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[9.25,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[9.3,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[9.35,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[9.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[9.45,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[9.5,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[9.55,"o"," \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[9.6,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[9.65,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[9.7,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[9.75,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[9.8,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[9.85,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[9.9,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[9.95,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10,"o"," \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[10.05,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.15,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.2,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.25,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[10.3,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[10.35,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.45,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.5,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[10.55,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[10.6,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.65,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.75,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.8,"o"," \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[10.85,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.9,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[10.95,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[11,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[11.05,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[11.1,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[11.15,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[11.2,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[11.25,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[11.3,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[11.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[11.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[11.45,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[11.5,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[11.55,"o"," \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[11.6,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[11.65,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[11.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[11.75,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[11.8,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[11.85,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[11.9,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[11.95,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[12,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[12.05,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[12.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[12.15,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[12.2,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[12.25,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[12.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[12.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[12.4,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[12.45,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[12.5,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[12.55,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[12.6,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[12.65,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[12.7,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[12.75,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[12.8,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[12.85,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[12.9,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[12.95,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13.1,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13.15,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13.2,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13.25,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[13.3,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[13.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[13.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[13.45,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[13.5,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[13.55,"o"," \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[13.6,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[13.65,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13.7,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13.75,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13.8,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[13.85,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[13.9,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[13.95,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[14,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[14.05,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[14.1,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[14.15,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[14.2,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[14.25,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[14.3,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[14.35,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[14.4,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[14.45,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[14.5,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n"] -[14.55,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[14.6,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[14.65,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[14.7,"o"," \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[14.75,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[14.8,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[14.85,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[14.9,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[14.95,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15.05,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15.15,"o"," \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[15.2,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[15.25,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[15.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15.45,"o"," \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[15.5,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[15.55,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[15.6,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15.65,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[15.75,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[15.8,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[15.85,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[15.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[15.95,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[16,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[16.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[16.1,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.15,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.2,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.25,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.3,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.35,"o"," \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.45,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[16.5,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.55,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[16.6,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[16.65,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[16.7,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[16.75,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[16.8,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.85,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.9,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[16.95,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[17,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[17.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[17.1,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[17.15,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[17.2,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[17.25,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[17.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[17.35,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[17.4,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[17.45,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[17.5,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[17.55,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[17.6,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[17.65,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[17.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[17.75,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[17.8,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[17.85,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[17.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[17.95,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.05,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.15,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.2,"o"," \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[18.25,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[18.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[18.35,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[18.4,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.45,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.5,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.55,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.6,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[18.65,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[18.7,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[18.75,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[18.8,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[18.85,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.9,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[18.95,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19.05,"o"," \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[19.1,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[19.15,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[19.2,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19.25,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[19.3,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19.45,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[19.5,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[19.55,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[19.6,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[19.65,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19.75,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19.8,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[19.85,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[19.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[19.95,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[20,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[20.05,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[20.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[20.15,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[20.2,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[20.25,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[20.3,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[20.35,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[20.4,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[20.45,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[20.5,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[20.55,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[20.6,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[20.65,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[20.7,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[20.75,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[20.8,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[20.85,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[20.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[20.95,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[21,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[21.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[21.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[21.15,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[21.2,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[21.25,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[21.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[21.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[21.4,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[21.45,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[21.5,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[21.55,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[21.6,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[21.65,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[21.7,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[21.75,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[21.8,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[21.85,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[21.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[21.95,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[22,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[22.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[22.1,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[22.15,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.2,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.25,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.3,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.45,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[22.5,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.55,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.6,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[22.65,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[22.7,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[22.75,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[22.8,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.85,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.9,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[22.95,"o"," \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[23,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[23.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.15,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.2,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.25,"o"," \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n"] -[23.3,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[23.4,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[23.45,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[23.5,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[23.55,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.6,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.65,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.7,"o"," \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[23.75,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[23.8,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.85,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[23.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[23.95,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[24,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[24.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[24.1,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[24.15,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[24.2,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n"] -[24.25,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[24.3,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[24.35,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[24.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[24.45,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[24.5,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[24.55,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280b\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[24.6,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[24.65,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[24.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[24.75,"o"," \u001b[33m\u2819\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.[TIME]\u001b[0m\r\n"] -[24.8,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[24.85,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[24.9,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[24.95,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[25.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.15,"o"," \u001b[33m\u2839\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.[TIME]\u001b[0m\r\n"] -[25.2,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.25,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.3,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.4,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[25.45,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.5,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.55,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.6,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.65,"o"," \u001b[33m\u2838\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.[TIME]\u001b[0m\r\n"] -[25.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.75,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.8,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[25.85,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[25.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[25.95,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.05,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[26.1,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[26.15,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[26.2,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[26.25,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[26.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.35,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.45,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.5,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.55,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.6,"o"," \u001b[33m\u2834\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.[TIME]\u001b[0m\r\n"] -[26.65,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.75,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.8,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.85,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.9,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2826\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[26.95,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[27,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.05,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2827\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[27.1,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[27.15,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[27.2,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u2807\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[27.25,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[27.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[33m\u280f\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.45,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[27.5,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[27.55,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.6,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.65,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.7,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.75,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.8,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[27.85,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.[TIME]\u001b[0m\r\n"] -[27.9,"o"," \u001b[33m\u2819\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[27.95,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[28,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[28.05,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[28.1,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[28.15,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[28.2,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n\u001b[?25h"] -[28.25,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[28.3,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[28.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[28.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.[TIME]\u001b[0m\r\n"] -[28.45,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n"] -[28.5,"o"," \u001b[33m\u2819\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m11.[TIME]\u001b[0m\r\n"] -[28.55,"o"," \u001b[33m\u2839\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m11.[TIME]\u001b[0m\r\n"] -[28.6,"o"," \u001b[33m\u2839\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m11.[TIME]\u001b[0m\r\n"] -[28.65,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] -[28.7,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[28.75,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[28.8,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[33m\u2839\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.[TIME]\u001b[0m\r\n"] -[28.85,"o","\u001b[?25h\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] -[28.9,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[28.95,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[29,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[29.05,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[29.1,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[29.15,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[29.2,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[29.25,"o"," \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[29.3,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[29.35,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[29.4,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[29.45,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[29.5,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[33m\u2838\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[33m\u283c\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.[TIME]\u001b[0m\r\n\u001b[?25h"] -[29.55,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[33m\u2834\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.[TIME]\u001b[0m\r\n\u001b[?25h"] -[29.6,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[29.65,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n"] -[29.7,"o"," \u001b[33m\u2826\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.[TIME]\u001b[0m\r\n"] -[29.75,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n\u001b[?25h"] -[29.8,"o","\u001b[?25l\u001b[18A\u001b[0G[+] up 17/17\r\n"] -[29.85,"o"," \u001b[32m\u2714\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.[TIME]\u001b[0m\r\n"] -[29.9,"o"," \u001b[32m\u2714\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n"] -[29.95,"o"," \u001b[32m\u2714\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m [TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-nginx-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n \u001b[32m\u2714\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.[TIME]\u001b[0m\r\n\u001b[?25h"] -[30,"o","\u001b[30;43mNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information.\u001b[39;49m\r\n\u001b[32mLoading composer repositories with package information\u001b[39m\r\n"] -[30.05,"o","\u001b[32mUpdating dependencies\u001b[39m\r\n"] -[30.1,"o","\u001b[32mLock file operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n"] -[30.15,"o"," - Locking \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m)\r\n - Locking \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n - Locking \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n - Locking \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n - Locking \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n - Locking \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n - Locking \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n - Locking \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n"] -[30.2,"o"," - Locking \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m)\r\n - Locking \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n - Locking \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m)\r\n - Locking \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n - Locking \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n - Locking \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m)\r\n - Locking \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m)\r\n - Locking \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n - Locking \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m)\r\n - Locking \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m)\r\n - Locking \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n - Locking \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n - Locking \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n - Locking \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n - Locking \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m)\r\n - Locking \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m)\r\n - Locking \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m)\r\n - Locking \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n - Locking \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n - Locking \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Locking \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n - Locking \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n - Locking \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n - Locking \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n - Locking \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n - Locking \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n"] -[30.25,"o"," - Locking \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n - Locking \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m)\r\n - Locking \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n - Locking \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n - Locking \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n"] -[30.3,"o"," - Locking \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n"] -[30.35,"o"," - Locking \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n"] -[30.4,"o"," - Locking \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m)\r\n - Locking \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m)\r\n - Locking \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m)\r\n - Locking \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n - Locking \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n - Locking \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m)\r\n - Locking \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m)\r\n - Locking \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n - Locking \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n - Locking \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n - Locking \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n - Locking \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Locking \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n - Locking \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m)\r\n - Locking \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n - Locking \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m)\r\n - Locking \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m)\r\n - Locking \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m)\r\n - Locking \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m)\r\n - Locking \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m)\r\n - Locking \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m)\r\n - Locking \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n - Locking \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n - Locking \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n - Locking \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m)\r\n - Locking \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m)\r\n - Locking \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m)\r\n - Locking \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m)\r\n - Locking \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n - Locking \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n - Locking \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n - Locking \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m)\r\n - Locking \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n - Locking \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m)\r\n - Locking \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m)\r\n - Locking \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m)\r\n - Locking \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m)\r\n - Locking \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n - Locking \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n - Locking \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n - Locking \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n - Locking \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m)\r\n - Locking \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n - Locking \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n - Locking \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n - Locking \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n - Locking \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m)\r\n - Locking \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n - Locking \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n - Locking \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n - Locking \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n - Locking \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n - Locking \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n - Locking \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m)\r\n - Locking \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n - Locking \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n - Locking \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n - Locking \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m)\r\n - Locking \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m)\r\n - Locking \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n - Locking \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m)\r\n - Locking \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n - Locking \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n - Locking \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n - Locking \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m)\r\n - Locking \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n - Locking \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] -[30.45,"o"," - Locking \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n - Locking \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m)\r\n - Locking \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n - Locking \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n - Locking \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n - Locking \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n - Locking \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n - Locking \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n - Locking \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n - Locking \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n - Locking \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m)\r\n - Locking \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m)\r\n - Locking \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n - Locking \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n - Locking \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n - Locking \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n - Locking \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n - Locking \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n - Locking \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n"] -[30.5,"o"," - Locking \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n"] -[30.55,"o"," - Locking \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n - Locking \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m)\r\n - Locking \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n - Locking \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n - Locking \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n - Locking \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n - Locking \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n - Locking \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n - Locking \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n"] -[30.6,"o","\u001b[32mWriting lock file\u001b[39m\r\n\u001b[32mInstalling dependencies from lock file (including require-dev)\u001b[39m\r\n"] -[30.65,"o","\u001b[32mPackage operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n"] -[30.7,"o"," - Installing \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[30.75,"o"," - Installing \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[30.8,"o"," - Downloading \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n"] -[30.85,"o"," - Downloading \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n"] -[30.9,"o"," - Downloading \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n"] -[30.95,"o"," - Downloading \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n"] -[31,"o"," - Downloading \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n"] -[31.05,"o"," - Downloading \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n"] -[31.1,"o"," - Downloading \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n"] -[31.15,"o"," - Downloading \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n"] -[31.2,"o"," - Downloading \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n"] -[31.25,"o"," - Downloading \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n"] -[31.3,"o"," - Downloading \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n"] -[31.35,"o"," - Downloading \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n"] -[31.4,"o"," - Downloading \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n"] -[31.45,"o"," - Downloading \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n"] -[31.5,"o"," - Downloading \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[31.55,"o"," - Downloading \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n"] -[31.6,"o"," - Downloading \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n"] -[31.65,"o"," - Downloading \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n"] -[31.7,"o"," - Downloading \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n"] -[31.75,"o"," - Downloading \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] -[31.8,"o"," - Downloading \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] -[31.85,"o"," - Downloading \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n"] -[31.9,"o"," - Downloading \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n"] -[31.95,"o"," - Downloading \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n"] -[32,"o"," - Downloading \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n"] -[32.05,"o"," - Downloading \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] -[32.1,"o"," - Downloading \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n"] -[32.15,"o"," - Downloading \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n"] -[32.2,"o"," - Downloading \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n"] -[32.25,"o"," - Downloading \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n"] -[32.3,"o"," - Downloading \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n"] -[32.35,"o"," - Downloading \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n"] -[32.4,"o"," - Downloading \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n"] -[32.45,"o"," - Downloading \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n"] -[32.5,"o"," - Downloading \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n"] -[32.55,"o"," - Downloading \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n"] -[32.6,"o"," - Downloading \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n"] -[32.65,"o"," - Downloading \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n"] -[32.7,"o"," - Downloading \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n"] -[32.75,"o"," - Downloading \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n"] -[32.8,"o"," - Downloading \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n"] -[32.85,"o"," - Downloading \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n"] -[32.9,"o"," - Downloading \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n"] -[32.95,"o"," - Downloading \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n"] -[33,"o"," - Downloading \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n"] -[33.05,"o"," - Downloading \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n"] -[33.1,"o"," - Downloading \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n"] -[33.15,"o"," - Downloading \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n"] -[33.2,"o"," - Downloading \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n"] -[33.25,"o"," - Downloading \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n"] -[33.3,"o"," - Downloading \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n"] -[33.35,"o"," - Downloading \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n"] -[33.4,"o"," - Downloading \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[33.45,"o"," - Downloading \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n"] -[33.5,"o"," - Downloading \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n"] -[33.55,"o"," - Downloading \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n"] -[33.6,"o"," - Downloading \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n"] -[33.65,"o"," - Downloading \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n"] -[33.7,"o"," - Downloading \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[33.75,"o"," - Downloading \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n"] -[33.8,"o"," - Downloading \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n"] -[33.85,"o"," - Downloading \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n"] -[33.9,"o"," - Downloading \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n"] -[33.95,"o"," - Downloading \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n"] -[34,"o"," - Downloading \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] -[34.05,"o"," - Downloading \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n"] -[34.1,"o"," - Downloading \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n"] -[34.15,"o"," - Downloading \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[34.2,"o"," - Downloading \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n"] -[34.25,"o"," - Downloading \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n"] -[34.3,"o"," - Downloading \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n"] -[34.35,"o"," - Downloading \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n"] -[34.4,"o"," - Downloading \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[34.45,"o"," - Downloading \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[34.5,"o"," - Downloading \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n"] -[34.55,"o"," - Downloading \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n"] -[34.6,"o"," - Downloading \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n"] -[34.65,"o"," - Downloading \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n"] -[34.7,"o"," - Downloading \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n"] -[34.75,"o"," - Downloading \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n"] -[34.8,"o"," - Downloading \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n"] -[34.85,"o"," - Downloading \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m)\r\n"] -[34.9,"o"," - Downloading \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n"] -[34.95,"o"," 0/83 [>---------------------------] 0%"] -[35,"o","\u001b[1G\u001b[2K 83/83 [============================] 100%\u001b[1G\u001b[2K"] -[35.05,"o","\u001b[30;43mpatches.lock.json does not exist. Creating a new patches.lock.json.\u001b[39;49m\r\n"] -[35.1,"o"," - \u001b[32mResolving patches from dependencies.\u001b[39m\r\n"] -[35.15,"o"," - Installing \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] -[35.2,"o"," - Installing \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] -[35.25,"o"," - Installing \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] -[35.3,"o"," - Installing \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m): Extracting archive\r\n"] -[35.35,"o"," - Installing \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] -[35.4,"o"," - Installing \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m): Extracting archive\r\n"] -[35.45,"o"," - Installing \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m): Extracting archive\r\n"] -[35.5,"o"," - Installing \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m): Extracting archive\r\n"] -[35.55,"o"," - Installing \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m): Extracting archive\r\n"] -[35.6,"o"," - Installing \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m): Extracting archive\r\n"] -[35.65,"o"," - Installing \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m): Extracting archive\r\n"] -[35.7,"o"," - Installing \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] -[35.75,"o"," - Installing \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m): Extracting archive\r\n"] -[35.8,"o"," - Installing \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m): Extracting archive\r\n"] -[35.85,"o"," 0/8 [>---------------------------] 0%"] -[35.9,"o","\u001b[1G\u001b[2K 8/8 [============================] 100%\u001b[1G\u001b[2K"] -[35.95,"o"," - Installing \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m): Extracting archive\r\n"] -[36,"o"," - Installing \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m): Extracting archive\r\n"] -[36.05,"o"," - Installing \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m): Extracting archive\r\n"] -[36.1,"o"," - Installing \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] -[36.15,"o"," - Installing \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m): Extracting archive\r\n"] -[36.2,"o"," - Installing \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m): Extracting archive\r\n"] -[36.25,"o"," - Installing \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] -[36.3,"o"," - Installing \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m): Extracting archive\r\n"] -[36.35,"o"," - Installing \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m): Extracting archive\r\n"] -[36.4,"o"," - Installing \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[36.45,"o"," - Installing \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] -[36.5,"o"," - Installing \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[36.55,"o"," - Installing \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[36.6,"o"," - Installing \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] -[36.65,"o"," - Installing \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[36.7,"o"," - Installing \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[36.75,"o"," - Installing \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m): Extracting archive\r\n"] -[36.8,"o"," - Installing \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] -[36.85,"o"," - Installing \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[36.9,"o"," - Installing \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[36.95,"o"," - Installing \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m): Extracting archive\r\n"] -[37,"o"," - Installing \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m): Extracting archive\r\n"] -[37.05,"o"," - Installing \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m): Extracting archive\r\n"] -[37.1,"o"," - Installing \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] -[37.15,"o"," - Installing \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m): Extracting archive\r\n"] -[37.2,"o"," - Installing \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] -[37.25,"o"," - Installing \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m): Extracting archive\r\n"] -[37.3,"o"," - Installing \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] -[37.35,"o"," - Installing \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[37.4,"o"," - Installing \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[37.45,"o"," - Installing \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[37.5,"o"," - Installing \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] -[37.55,"o"," - Installing \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[37.6,"o"," - Installing \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[37.65,"o"," - Installing \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[37.7,"o"," - Installing \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[37.75,"o"," - Installing \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[37.8,"o"," - Installing \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m): Extracting archive\r\n"] -[37.85,"o"," - Installing \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m): Extracting archive\r\n"] -[37.9,"o"," - Installing \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m): Extracting archive\r\n"] -[37.95,"o"," - Installing \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m): Extracting archive\r\n"] -[38,"o"," - Installing \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[38.05,"o"," - Installing \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[38.1,"o"," - Installing \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[38.15,"o"," - Installing \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m): Extracting archive\r\n"] -[38.2,"o"," - Installing \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m): Extracting archive\r\n"] -[38.25,"o"," - Installing \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m): Extracting archive\r\n"] -[38.3,"o"," - Installing \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m): Extracting archive\r\n"] -[38.35,"o"," - Installing \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m): Extracting archive\r\n"] -[38.4,"o"," - Installing \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] -[38.45,"o"," - Installing \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m): Extracting archive\r\n"] -[38.5,"o"," - Installing \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] -[38.55,"o"," - Installing \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] -[38.6,"o"," - Installing \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[38.65,"o"," - Installing \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] -[38.7,"o"," - Installing \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[38.75,"o"," - Installing \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] -[38.8,"o"," - Installing \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[38.85,"o"," - Installing \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[38.9,"o"," - Installing \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[38.95,"o"," - Installing \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m): Extracting archive\r\n"] -[39,"o"," - Installing \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m): Extracting archive\r\n"] -[39.05,"o"," - Installing \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m): Extracting archive\r\n"] -[39.1,"o"," - Installing \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[39.15,"o"," - Installing \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[39.2,"o"," - Installing \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] -[39.25,"o"," - Installing \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] -[39.3,"o"," - Installing \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[39.35,"o"," - Installing \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[39.4,"o"," - Installing \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[39.45,"o"," - Installing \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[39.5,"o"," - Installing \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m): Extracting archive\r\n"] -[39.55,"o"," - Installing \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m): Extracting archive\r\n"] -[39.6,"o"," - Installing \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m): Extracting archive\r\n"] -[39.65,"o"," - Installing \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m): Extracting archive\r\n"] -[39.7,"o"," - Installing \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m): Extracting archive\r\n"] -[39.75,"o"," - Installing \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m): Extracting archive\r\n"] -[39.8,"o"," - Installing \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m): Extracting archive\r\n"] -[39.85,"o"," - Installing \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m): Extracting archive\r\n"] -[39.9,"o"," - Installing \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m): Extracting archive\r\n"] -[39.95,"o"," - Installing \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] -[40,"o"," - Installing \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] -[40.05,"o"," - Installing \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m): Extracting archive\r\n"] -[40.1,"o"," - Installing \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m): Extracting archive\r\n"] -[40.15,"o"," - Installing \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] -[40.2,"o"," - Installing \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m): Extracting archive\r\n"] -[40.25,"o"," - Installing \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m): Extracting archive\r\n"] -[40.3,"o"," - Installing \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m): Extracting archive\r\n"] -[40.35,"o"," - Installing \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m): Extracting archive\r\n"] -[40.4,"o"," - Installing \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] -[40.45,"o"," - Installing \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] -[40.5,"o"," - Installing \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m): Extracting archive\r\n"] -[40.55,"o"," - Installing \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m): Extracting archive\r\n"] -[40.6,"o"," - Installing \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m): Extracting archive\r\n"] -[40.65,"o"," - Installing \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m): Extracting archive\r\n"] -[40.7,"o"," - Installing \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m): Extracting archive\r\n"] -[40.75,"o"," - Installing \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] -[40.8,"o"," - Installing \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m): Extracting archive\r\n"] -[40.85,"o"," - Installing \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n"] -[40.9,"o"," - Installing \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m): Extracting archive\r\n"] -[40.95,"o"," - Installing \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m): Extracting archive\r\n"] -[41,"o"," - Installing \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] -[41.05,"o"," - Installing \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m): Extracting archive\r\n"] -[41.1,"o"," - Installing \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m): Extracting archive\r\n"] -[41.15,"o"," - Installing \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m): Extracting archive\r\n"] -[41.2,"o"," - Installing \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m): Extracting archive\r\n"] -[41.25,"o"," - Installing \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m): Extracting archive\r\n"] -[41.3,"o"," - Installing \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] -[41.35,"o"," - Installing \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m): Extracting archive\r\n"] -[41.4,"o"," - Installing \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] -[41.45,"o"," - Installing \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m): Extracting archive\r\n"] -[41.5,"o"," - Installing \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] -[41.55,"o"," - Installing \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m): Extracting archive\r\n"] -[41.6,"o"," - Installing \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m): Extracting archive\r\n"] -[41.65,"o"," - Installing \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m): Extracting archive\r\n"] -[41.7,"o"," - Installing \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m): Extracting archive\r\n"] -[41.75,"o"," - Installing \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m): Extracting archive\r\n"] -[41.8,"o"," - Installing \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m): Extracting archive\r\n"] -[41.85,"o"," - Installing \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m): Extracting archive\r\n"] -[41.9,"o"," - Installing \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] -[41.95,"o"," - Installing \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] -[42,"o"," - Installing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m): Extracting archive\r\n"] -[42.05,"o"," - Installing \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m): Extracting archive\r\n"] -[42.1,"o"," - Installing \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m): Extracting archive\r\n"] -[42.15,"o"," - Installing \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m): Extracting archive\r\n"] -[42.2,"o"," - Installing \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m): Extracting archive\r\n"] -[42.25,"o"," - Installing \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m): Extracting archive\r\n"] -[42.3,"o"," - Installing \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m): Extracting archive\r\n"] -[42.35,"o"," - Installing \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m): Extracting archive\r\n"] -[42.4,"o"," - Installing \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m): Extracting archive\r\n"] -[42.45,"o"," - Installing \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] -[42.5,"o"," - Installing \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m): Extracting archive\r\n"] -[42.55,"o"," - Installing \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m): Extracting archive\r\n"] -[42.6,"o"," - Installing \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m): Extracting archive\r\n"] -[42.65,"o"," - Installing \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[42.7,"o"," - Installing \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m): Extracting archive\r\n"] -[42.75,"o"," - Installing \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m): Extracting archive\r\n"] -[42.8,"o"," - Installing \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m): Extracting archive\r\n"] -[42.85,"o"," - Installing \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] -[42.9,"o"," - Installing \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] -[42.95,"o"," - Installing \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] -[43,"o"," - Installing \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m): Extracting archive\r\n"] -[43.05,"o"," - Installing \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m): Extracting archive\r\n"] -[43.1,"o"," - Installing \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] -[43.15,"o"," - Installing \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] -[43.2,"o"," - Installing \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] -[43.25,"o"," - Installing \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m): Extracting archive\r\n"] -[43.3,"o"," - Installing \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] -[43.35,"o"," - Installing \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] -[43.4,"o"," - Installing \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] -[43.45,"o"," - Installing \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m): Extracting archive\r\n"] -[43.5,"o"," - Installing \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m): Extracting archive\r\n"] -[43.55,"o"," - Installing \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m): Extracting archive\r\n"] -[43.6,"o"," - Installing \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m): Extracting archive\r\n"] -[43.65,"o"," - Installing \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m): Extracting archive\r\n"] -[43.7,"o"," - Installing \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m): Extracting archive\r\n"] -[43.75,"o"," - Installing \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m): Extracting archive\r\n"] -[43.8,"o"," - Installing \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m): Extracting archive\r\n"] -[43.85,"o"," - Installing \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m): Extracting archive\r\n"] -[43.9,"o"," - Installing \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m): Extracting archive\r\n"] -[43.95,"o"," - Installing \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[44,"o"," - Installing \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] -[44.05,"o"," - Installing \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m): Extracting archive\r\n"] -[44.1,"o"," - Installing \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m): Extracting archive\r\n"] -[44.15,"o"," - Installing \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m): Extracting archive\r\n"] -[44.2,"o"," - Installing \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] -[44.25,"o"," - Installing \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[44.3,"o"," - Installing \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m): Extracting archive\r\n"] -[44.35,"o"," - Installing \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m): Extracting archive\r\n"] -[44.4,"o"," - Installing \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m): Extracting archive\r\n"] -[44.45,"o"," - Installing \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m): Extracting archive\r\n"] -[44.5,"o"," - Installing \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m): Extracting archive\r\n"] -[44.55,"o"," - Installing \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] -[44.6,"o"," - Installing \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] -[44.65,"o"," - Installing \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m): Extracting archive\r\n"] -[44.7,"o"," - Installing \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[44.75,"o"," - Installing \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m): Extracting archive\r\n"] -[44.8,"o"," - Installing \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] -[44.85,"o"," - Installing \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] -[44.9,"o"," - Installing \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] -[44.95,"o"," - Installing \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[45,"o"," - Installing \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[45.05,"o"," - Installing \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m): Extracting archive\r\n"] -[45.1,"o"," - Installing \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] -[45.15,"o"," - Installing \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m): Extracting archive\r\n"] -[45.2,"o"," - Installing \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m): Extracting archive\r\n"] -[45.25,"o"," - Installing \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m): Extracting archive\r\n"] -[45.3,"o"," - Installing \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m): Extracting archive\r\n"] -[45.35,"o"," - Installing \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m): Extracting archive\r\n"] -[45.4,"o"," - Installing \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m): Extracting archive\r\n"] -[45.45,"o"," - Installing \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m): Extracting archive\r\n"] -[45.5,"o"," 0/187 [>---------------------------] 0%"] -[45.55,"o","\u001b[1G\u001b[2K 187/187 [============================] 100%\u001b[1G\u001b[2K"] -[45.6,"o","\u001b[32m27 package suggestions were added by new dependencies, use `composer suggest` to see details.\u001b[39m\r\n"] -[45.65,"o","\u001b[32mGenerating autoload files\u001b[39m\r\n"] -[45.7,"o","\u001b[32m110 packages you are using are looking for funding.\u001b[39m\r\n\u001b[32mUse the `composer fund` command to find out more!\u001b[39m\r\n"] -[45.75,"o","Scaffolding files for \u001b[33mdrupal/core\u001b[39m:\r\n - Skip \u001b[32m[web-root]/.htaccess\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[45.8,"o"," - Skip \u001b[32m[web-root]/README.md\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.csslintrc\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/robots.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/update.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[45.85,"o"," - Skip \u001b[32m[web-root]/INSTALL.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.eslintignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[45.9,"o"," - Skip \u001b[32m[web-root]/.eslintrc.json\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.ht.router.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[45.95,"o"," - Copy \u001b[32m[web-root]/sites/README.txt\u001b[39m from \u001b[32massets/scaffold/files/sites.README.txt\u001b[39m\r\n - Skip \u001b[32m[project-root]/.editorconfig\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/example.gitignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[46,"o"," - Copy \u001b[32m[web-root]/themes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/themes.README.txt\u001b[39m\r\n - Skip \u001b[32m[project-root]/.gitattributes\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[46.05,"o"," - Copy \u001b[32m[web-root]/modules/README.txt\u001b[39m from \u001b[32massets/scaffold/files/modules.README.txt\u001b[39m\r\n"] -[46.1,"o"," - Copy \u001b[32m[web-root]/profiles/README.txt\u001b[39m from \u001b[32massets/scaffold/files/profiles.README.txt\u001b[39m\r\n"] -[46.15,"o"," - Copy \u001b[32m[project-root]/recipes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/recipes.README.txt\u001b[39m\r\n - Skip \u001b[32m[web-root]/sites/example.sites.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[46.2,"o"," - Copy \u001b[32m[web-root]/sites/development.services.yml\u001b[39m from \u001b[32massets/scaffold/files/development.services.yml\u001b[39m\r\n - Skip \u001b[32m[web-root]/sites/example.settings.local.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[46.25,"o","PHP CodeSniffer Config \u001b[32minstalled_paths\u001b[39m \u001b[33mset to\u001b[39m \u001b[32m../../drevops/phpcs-standard/src,../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,../../phpcsstandards/phpcsutils,../../sirbrillig/phpcs-variable-analysis,../../slevomat/coding-standard\u001b[39m\r\n"] -[46.3,"o","\u001b[32mphpstan/extension-installer:\u001b[39m Extensions installed\r\n> \u001b[32mcomposer/pcre:\u001b[39m installed\r\n> \u001b[32mmglaman/phpstan-drupal:\u001b[39m installed\r\n> \u001b[32mphpstan/phpstan-deprecation-rules:\u001b[39m installed\r\n"] -[46.35,"o","\u001b[32mChangelogs summary:\u001b[39m\r\n\r\n - \u001b[32mpyrech/composer-changelogs\u001b[39m installed in version \u001b[33mv2.2.0\u001b[39m\r\n Release notes: https://github.com/pyrech/composer-changelogs/releases/tag/v2.2.0\r\n\r\n - \u001b[32msquizlabs/php_codesniffer\u001b[39m installed in version \u001b[33m4.0.4\u001b[39m\r\n Release notes: https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/tag/4.0.4\r\n\r\n - \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m installed in version \u001b[33mv1.2.1\u001b[39m\r\n Release notes: https://github.com/PHPCSStandards/composer-installer/releases/tag/v1.2.1\r\n\r\n - \u001b[32mmarc-mabe/php-enum\u001b[39m installed in version \u001b[33mv4.7.2\u001b[39m\r\n Release notes: https://github.com/marc-mabe/php-enum/releases/tag/v4.7.2\r\n\r\n - \u001b[32mjustinrainbow/json-schema\u001b[39m installed in version \u001b[33m6.8.2\u001b[39m\r\n Release notes: https://github.com/jsonrainbow/json-schema/releases/tag/6.8.2\r\n\r\n - \u001b[32mlocalheinz/diff\u001b[39m installed in version \u001b[33m1.3.0\u001b[39m\r\n Release notes: https://github.com/localheinz/diff/releases/tag/1.3.0\r\n\r\n - \u001b[32mergebnis/json-printer\u001b[39m installed in version \u001b[33m3.8.1\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-printer/releases/tag/3.8.1\r\n\r\n - \u001b[32mergebnis/json-pointer\u001b[39m installed in version \u001b[33m3.8.0\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-pointer/releases/tag/3.8.0\r\n\r\n - \u001b[32mergebnis/json\u001b[39m installed in version \u001b[33m1.6.0\u001b[39m\r\n Release notes: https://github.com/ergebnis/json/releases/tag/1.6.0\r\n\r\n - \u001b[32mergebnis/json-schema-validator\u001b[39m installed in version \u001b[33m4.5.1\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-schema-validator/releases/tag/4.5.1\r\n\r\n - \u001b[32mergebnis/json-normalizer\u001b[39m installed in version \u001b[33m4.10.1\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-normalizer/releases/tag/4.10.1\r\n\r\n - \u001b[32mergebnis/composer-normalize\u001b[39m installed in version \u001b[33m2.52.0\u001b[39m\r\n Release notes: https://github.com/ergebnis/composer-normalize/releases/tag/2.52.0\r\n\r\n - \u001b[32mphpstan/phpstan\u001b[39m installed in version \u001b[33m2.2.8\u001b[39m\r\n\r\n - \u001b[32mphpstan/extension-installer\u001b[39m installed in version \u001b[33m1.4.3\u001b[39m\r\n Release notes: https://github.com/phpstan/extension-installer/releases/tag/1.4.3\r\n\r\n - \u001b[32mpsr/log\u001b[39m installed in version \u001b[33m3.0.2\u001b[39m\r\n Release notes: https://github.com/php-fig/log/releases/tag/3.0.2\r\n\r\n - \u001b[32mcomposer/pcre\u001b[39m installed in version \u001b[33m3.4.0\u001b[39m\r\n Release notes: https://github.com/composer/pcre/releases/tag/3.4.0\r\n\r\n - \u001b[32mcomposer/xdebug-handler\u001b[39m installed in version \u001b[33m3.0.5\u001b[39m\r\n Release notes: https://github.com/composer/xdebug-handler/releases/tag/3.0.5\r\n\r\n - \u001b[32msymfony/polyfill-iconv\u001b[39m installed in version \u001b[33mv1.37.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-iconv/releases/tag/v1.37.0\r\n\r\n - \u001b[32msymfony/polyfill-mbstring\u001b[39m installed in version \u001b[33mv1.38.2\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-mbstring/releases/tag/v1.38.2\r\n\r\n - \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m installed in version \u001b[33mv1.38.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-intl-normalizer/releases/tag/v1.38.0\r\n\r\n - \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-intl-grapheme/releases/tag/v1.41.0\r\n\r\n - \u001b[32msymfony/polyfill-ctype\u001b[39m installed in version \u001b[33mv1.37.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-ctype/releases/tag/v1.37.0\r\n\r\n - \u001b[32msymfony/deprecation-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/deprecation-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/string\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/string/releases/tag/v7.4.15\r\n\r\n - \u001b[32mpsr/container\u001b[39m installed in version \u001b[33m2.0.2\u001b[39m\r\n Release notes: https://github.com/php-fig/container/releases/tag/2.0.2\r\n\r\n - \u001b[32msymfony/service-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/service-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/console\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/console/releases/tag/v7.4.16\r\n\r\n - \u001b[32mconsolidation/log\u001b[39m installed in version \u001b[33m3.1.2\u001b[39m\r\n Release notes: https://github.com/consolidation/log/releases/tag/3.1.2\r\n\r\n - \u001b[32msymfony/finder\u001b[39m installed in version \u001b[33mv7.4.14\u001b[39m\r\n Release notes: https://github.com/symfony/finder/releases/tag/v7.4.14\r\n\r\n - \u001b[32msymfony/filesystem\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/filesystem/releases/tag/v7.4.15\r\n\r\n - \u001b[32mdantleech/invoke\u001b[39m installed in version \u001b[33m2.0.0\u001b[39m\r\n Release notes: https://github.com/dantleech/invoke/releases/tag/2.0.0\r\n\r\n - \u001b[32mcucumber/messages\u001b[39m installed in version \u001b[33mv19.1.4\u001b[39m\r\n Release notes: https://github.com/cucumber/messages-php/releases/tag/v19.1.4\r\n\r\n - \u001b[32mcucumber/gherkin\u001b[39m installed in version \u001b[33mv24.1.0\u001b[39m\r\n Release notes: https://github.com/cucumber/gherkin-php/releases/tag/v24.1.0\r\n\r\n - \u001b[32mdantleech/gherkin-lint\u001b[39m installed in version \u001b[33m0.2.4\u001b[39m\r\n Release notes: https://github.com/dantleech/gherkin-lint-php/releases/tag/0.2.4\r\n\r\n - \u001b[32mdoctrine/instantiator\u001b[39m installed in version \u001b[33m2.1.0\u001b[39m\r\n Release notes: https://github.com/doctrine/instantiator/releases/tag/2.1.0\r\n\r\n - \u001b[32mpsr/cache\u001b[39m installed in version \u001b[33m3.0.0\u001b[39m\r\n Release notes: https://github.com/php-fig/cache/releases/tag/3.0.0\r\n\r\n - \u001b[32mdoctrine/event-manager\u001b[39m installed in version \u001b[33m2.1.1\u001b[39m\r\n Release notes: https://github.com/doctrine/event-manager/releases/tag/2.1.1\r\n\r\n - \u001b[32mdoctrine/deprecations\u001b[39m installed in version \u001b[33m1.1.6\u001b[39m\r\n Release notes: https://github.com/doctrine/deprecations/releases/tag/1.1.6\r\n\r\n - \u001b[32mdoctrine/persistence\u001b[39m installed in version \u001b[33m4.2.0\u001b[39m\r\n Release notes: https://github.com/doctrine/persistence/releases/tag/4.2.0\r\n\r\n - \u001b[32msymfony/yaml\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/yaml/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/translation-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/translation-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/translation\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/translation/releases/tag/v7.4.16\r\n\r\n - \u001b[32mpsr/event-dispatcher\u001b[39m installed in version \u001b[33m1.0.0\u001b[39m\r\n Release notes: https://github.com/php-fig/event-dispatcher/releases/tag/1.0.0\r\n\r\n - \u001b[32msymfony/event-dispatcher-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/event-dispatcher-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/event-dispatcher\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/event-dispatcher/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/var-exporter\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/var-exporter/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/dependency-injection\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/dependency-injection/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/config\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/config/releases/tag/v7.4.16\r\n\r\n - \u001b[32mnikic/php-parser\u001b[39m installed in version \u001b[33mv5.8.0\u001b[39m\r\n Release notes: https://github.com/nikic/PHP-Parser/releases/tag/v5.8.0\r\n\r\n - \u001b[32mbehat/gherkin\u001b[39m installed in version \u001b[33mv4.17.0\u001b[39m\r\n Release notes: https://github.com/Behat/Gherkin/releases/tag/v4.17.0\r\n\r\n - \u001b[32mbehat/behat\u001b[39m installed in version \u001b[33mv3.32.0\u001b[39m\r\n Release notes: https://github.com/Behat/Behat/releases/tag/v3.32.0\r\n\r\n - \u001b[32mdrevops/behat-format-progress-fail\u001b[39m installed in version \u001b[33m1.5.1\u001b[39m\r\n Release notes: https://github.com/drevops/behat-format-progress-fail/releases/tag/1.5.1\r\n\r\n - \u001b[32msymfony/polyfill-php83\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php83/releases/tag/v1.41.0\r\n\r\n - \u001b[32msymfony/http-client-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github."] -[46.4,"o","com/symfony/http-client-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/http-client\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/http-client/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/css-selector\u001b[39m installed in version \u001b[33mv7.4.9\u001b[39m\r\n Release notes: https://github.com/symfony/css-selector/releases/tag/v7.4.9\r\n\r\n - \u001b[32mbehat/mink\u001b[39m installed in version \u001b[33mv1.13.0\u001b[39m\r\n Release notes: https://github.com/minkphp/Mink/releases/tag/v1.13.0\r\n\r\n - \u001b[32mfriends-of-behat/mink-extension\u001b[39m installed in version \u001b[33mv2.7.5\u001b[39m\r\n Release notes: https://github.com/FriendsOfBehat/MinkExtension/releases/tag/v2.7.5\r\n\r\n - \u001b[32mdrevops/behat-screenshot\u001b[39m installed in version \u001b[33m2.6.0\u001b[39m\r\n Release notes: https://github.com/drevops/behat-screenshot/releases/tag/2.6.0\r\n\r\n - \u001b[32mdrevops/behat-steps\u001b[39m installed in version \u001b[33m3.14.1\u001b[39m\r\n Release notes: https://github.com/drevops/behat-steps/releases/tag/3.14.1\r\n\r\n - \u001b[32mdrevops/phpcs-standard\u001b[39m installed in version \u001b[33m1.0.0\u001b[39m\r\n Release notes: https://github.com/drevops/phpcs-standard/releases/tag/1.0.0\r\n\r\n - \u001b[32mdrevops/vortex-tooling\u001b[39m installed in version \u001b[33m1.4.0\u001b[39m\r\n Release notes: https://github.com/drevops/vortex-tooling/releases/tag/1.4.0\r\n\r\n - \u001b[32mtwig/twig\u001b[39m installed in version \u001b[33mv3.28.0\u001b[39m\r\n Release notes: https://github.com/twigphp/Twig/releases/tag/v3.28.0\r\n\r\n - \u001b[32msymfony/polyfill-intl-idn\u001b[39m installed in version \u001b[33mv1.38.1\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-intl-idn/releases/tag/v1.38.1\r\n\r\n - \u001b[32msymfony/mime\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/mime/releases/tag/v7.4.16\r\n\r\n - \u001b[32mtwig/html-extra\u001b[39m installed in version \u001b[33mv3.28.0\u001b[39m\r\n Release notes: https://github.com/twigphp/html-extra/releases/tag/v3.28.0\r\n\r\n - \u001b[32msymfony/validator\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/validator/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/polyfill-php84\u001b[39m installed in version \u001b[33mv1.38.1\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php84/releases/tag/v1.38.1\r\n\r\n - \u001b[32msymfony/serializer\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/serializer/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/routing\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/routing/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/http-foundation\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/http-foundation/releases/tag/v7.4.16\r\n\r\n - \u001b[32mpsr/http-message\u001b[39m installed in version \u001b[33m2.0\u001b[39m\r\n Release notes: https://github.com/php-fig/http-message/releases/tag/2.0\r\n\r\n - \u001b[32msymfony/psr-http-message-bridge\u001b[39m installed in version \u001b[33mv7.4.8\u001b[39m\r\n Release notes: https://github.com/symfony/psr-http-message-bridge/releases/tag/v7.4.8\r\n\r\n - \u001b[32msymfony/process\u001b[39m installed in version \u001b[33mv7.4.13\u001b[39m\r\n Release notes: https://github.com/symfony/process/releases/tag/v7.4.13\r\n\r\n - \u001b[32msymfony/polyfill-php86\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php86/releases/tag/v1.41.0\r\n\r\n - \u001b[32msymfony/polyfill-php85\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php85/releases/tag/v1.41.0\r\n\r\n - \u001b[32mdoctrine/lexer\u001b[39m installed in version \u001b[33m3.0.1\u001b[39m\r\n Release notes: https://github.com/doctrine/lexer/releases/tag/3.0.1\r\n\r\n - \u001b[32megulias/email-validator\u001b[39m installed in version \u001b[33m4.0.4\u001b[39m\r\n Release notes: https://github.com/egulias/EmailValidator/releases/tag/4.0.4\r\n\r\n - \u001b[32msymfony/mailer\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/mailer/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/var-dumper\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/var-dumper/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/error-handler\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/error-handler/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/http-kernel\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/http-kernel/releases/tag/v7.4.16\r\n\r\n - \u001b[32msebastian/diff\u001b[39m installed in version \u001b[33m6.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/diff/releases/tag/6.0.2\r\n\r\n - \u001b[32mrevolt/event-loop\u001b[39m installed in version \u001b[33mv1.0.9\u001b[39m\r\n Release notes: https://github.com/revoltphp/event-loop/releases/tag/v1.0.9\r\n\r\n - \u001b[32mphp-tuf/composer-stager\u001b[39m installed in version \u001b[33mv2.1.1\u001b[39m\r\n Release notes: https://github.com/php-tuf/composer-stager/releases/tag/v2.1.1\r\n\r\n - \u001b[32mpear/pear_exception\u001b[39m installed in version \u001b[33mv1.0.2\u001b[39m\r\n Release notes: https://github.com/pear/PEAR_Exception/releases/tag/v1.0.2\r\n\r\n - \u001b[32mpear/console_getopt\u001b[39m installed in version \u001b[33mv1.4.3\u001b[39m\r\n Release notes: https://github.com/pear/Console_Getopt/releases/tag/v1.4.3\r\n\r\n - \u001b[32mpear/pear-core-minimal\u001b[39m installed in version \u001b[33mv1.10.18\u001b[39m\r\n Release notes: https://github.com/pear/pear-core-minimal/releases/tag/v1.10.18\r\n\r\n - \u001b[32mpear/archive_tar\u001b[39m installed in version \u001b[33m1.6.1\u001b[39m\r\n Release notes: https://github.com/pear/Archive_Tar/releases/tag/1.6.1\r\n\r\n - \u001b[32mmck89/peast\u001b[39m installed in version \u001b[33mv1.17.7\u001b[39m\r\n Release notes: https://github.com/mck89/peast/releases/tag/v1.17.7\r\n\r\n - \u001b[32mmasterminds/html5\u001b[39m installed in version \u001b[33m2.10.1\u001b[39m\r\n Release notes: https://github.com/Masterminds/html5-php/releases/tag/2.10.1\r\n\r\n - \u001b[32msymfony/polyfill-php80\u001b[39m installed in version \u001b[33mv1.37.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php80/releases/tag/v1.37.0\r\n\r\n - \u001b[32mralouphie/getallheaders\u001b[39m installed in version \u001b[33m3.0.3\u001b[39m\r\n Release notes: https://github.com/ralouphie/getallheaders/releases/tag/3.0.3\r\n\r\n - \u001b[32mpsr/http-factory\u001b[39m installed in version \u001b[33m1.1.0\u001b[39m\r\n Release notes: https://github.com/php-fig/http-factory/releases/tag/1.1.0\r\n\r\n - \u001b[32mguzzlehttp/psr7\u001b[39m installed in version \u001b[33m2.13.0\u001b[39m\r\n Release notes: https://github.com/guzzle/psr7/releases/tag/2.13.0\r\n\r\n - \u001b[32mpsr/http-client\u001b[39m installed in version \u001b[33m1.0.3\u001b[39m\r\n Release notes: https://github.com/php-fig/http-client/releases/tag/1.0.3\r\n\r\n - \u001b[32mguzzlehttp/promises\u001b[39m installed in version \u001b[33m2.5.2\u001b[39m\r\n Release notes: https://github.com/guzzle/promises/releases/tag/2.5.2\r\n\r\n - \u001b[32mguzzlehttp/guzzle\u001b[39m installed in version \u001b[33m7.15.3\u001b[39m\r\n Release notes: https://github.com/guzzle/guzzle/releases/tag/7.15.3\r\n\r\n - \u001b[32mcomposer/semver\u001b[39m installed in version \u001b[33m3.4.4\u001b[39m\r\n Release notes: https://github.com/composer/semver/releases/tag/3.4.4\r\n\r\n - \u001b[32masm89/stack-cors\u001b[39m installed in version \u001b[33mv2.4.0\u001b[39m\r\n Release notes: https://github.com/asm89/stack-cors/releases/tag/v2.4.0\r\n\r\n - \u001b[32mdrupal/core\u001b[39m installed in version \u001b[33m11.4.5\u001b[39m\r\n Release notes: https://github.com/drupal/core/releases/tag/11.4.5\r\n\r\n - \u001b[32mdrupal/clamav\u001b[39m installed in version \u001b[33m2.1.0\u001b[39m\r\n\r\n - \u001b[32mphpstan/phpdoc-parser\u001b[39m installed in version \u001b[33m2.3.3\u001b[39m\r\n Release notes: https://github.com/phpstan/phpdoc-parser/releases/tag/2.3.3\r\n\r\n - \u001b[32mslevomat/coding-standard\u001b[39m installed in version \u001b[33m8.31.1\u001b[39m\r\n Release notes: https://github.com/slevomat/coding-standard/releases/tag/8.31.1\r\n\r\n - \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m installed in version \u001b[33mv2.13.0\u001b[39m\r\n Release notes: https://github.com/sirbrillig/phpcs-variable-analysis/releases/tag/v2.13.0\r\n\r\n - \u001b[32mdrupal/coder\u001b[39m installed in version \u001b[33m9.0.1\u001b[39m\r\n Release notes: https://github.com/pfrenssen/coder/releases/tag/9.0.1\r\n\r\n - \u001b[32mdrupal/coffee\u001b[39m installed in version \u001b[33m2.0.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/config_split\u001b[39m installed in version \u001b[33m2.0.2\u001b[39m\r\n\r\n - \u001b[32mdrupal/config_update\u001b[39m installed in version \u001b[33m2.0.0-alpha4\u001b[39m\r\n\r\n - \u001b[32mdrupal/core-recommended\u001b[39m installed in version \u001b[33m11.4.5\u001b[39m\r\n Release notes: https://github.com/drupal/core-recommended/releases/tag/11.4.5\r\n\r\n - \u001b[32mdoctrine/common\u001b[39m installed in version \u001b[33m3.5.0\u001b[39m\r\n Release notes: https://g"] -[46.45,"o","ithub.com/doctrine/common/releases/tag/3.5.0\r\n\r\n - \u001b[32mdrupal/devel\u001b[39m installed in version \u001b[33m5.5.0\u001b[39m\r\n\r\n - \u001b[32mwebflo/drupal-finder\u001b[39m installed in version \u001b[33m1.3.1\u001b[39m\r\n Release notes: https://github.com/webflo/drupal-finder/releases/tag/1.3.1\r\n\r\n - \u001b[32msymfony/dom-crawler\u001b[39m installed in version \u001b[33mv7.4.12\u001b[39m\r\n Release notes: https://github.com/symfony/dom-crawler/releases/tag/v7.4.12\r\n\r\n - \u001b[32mlullabot/php-webdriver\u001b[39m installed in version \u001b[33mv2.0.7\u001b[39m\r\n Release notes: https://github.com/Lullabot/php-webdriver/releases/tag/v2.0.7\r\n\r\n - \u001b[32mlullabot/mink-selenium2-driver\u001b[39m installed in version \u001b[33mv1.7.4\u001b[39m\r\n Release notes: https://github.com/Lullabot/MinkSelenium2Driver/releases/tag/v1.7.4\r\n\r\n - \u001b[32mdrupal/drupal-driver\u001b[39m installed in version \u001b[33mv3.3.1\u001b[39m\r\n Release notes: https://github.com/jhedstrom/DrupalDriver/releases/tag/v3.3.1\r\n\r\n - \u001b[32msymfony/browser-kit\u001b[39m installed in version \u001b[33mv8.1.1\u001b[39m\r\n Release notes: https://github.com/symfony/browser-kit/releases/tag/v8.1.1\r\n\r\n - \u001b[32mbehat/mink-browserkit-driver\u001b[39m installed in version \u001b[33mv2.3.0\u001b[39m\r\n Release notes: https://github.com/minkphp/MinkBrowserKitDriver/releases/tag/v2.3.0\r\n\r\n - \u001b[32mdrupal/drupal-extension\u001b[39m installed in version \u001b[33mv6.1.0\u001b[39m\r\n Release notes: https://github.com/jhedstrom/drupalextension/releases/tag/v6.1.0\r\n\r\n - \u001b[32mdrupal/drupal_helpers\u001b[39m installed in version \u001b[33m2.1.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/environment_indicator\u001b[39m installed in version \u001b[33m4.0.25\u001b[39m\r\n\r\n - \u001b[32mdrupal/generated_content\u001b[39m installed in version \u001b[33m2.1.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/navigation_extra_tools\u001b[39m installed in version \u001b[33m1.3.2\u001b[39m\r\n\r\n - \u001b[32mdrupal/token\u001b[39m installed in version \u001b[33m1.17.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/ctools\u001b[39m installed in version \u001b[33m4.1.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/pathauto\u001b[39m installed in version \u001b[33m1.15.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/redirect\u001b[39m installed in version \u001b[33m1.13.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/redis\u001b[39m installed in version \u001b[33m1.11.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/reroute_email\u001b[39m installed in version \u001b[33m2.3.0-rc2\u001b[39m\r\n\r\n - \u001b[32mdrupal/robotstxt\u001b[39m installed in version \u001b[33m1.6.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/sdc_devel\u001b[39m installed in version \u001b[33m1.0.3\u001b[39m\r\n\r\n - \u001b[32mhalaxa/json-machine\u001b[39m installed in version \u001b[33m1.2.6\u001b[39m\r\n Release notes: https://github.com/halaxa/json-machine/releases/tag/1.2.6\r\n\r\n - \u001b[32msolarium/solarium\u001b[39m installed in version \u001b[33m7.0.0\u001b[39m\r\n Release notes: https://github.com/solariumphp/solarium/releases/tag/7.0.0\r\n\r\n - \u001b[32mmaennchen/zipstream-php\u001b[39m installed in version \u001b[33m3.2.2\u001b[39m\r\n Release notes: https://github.com/maennchen/ZipStream-PHP/releases/tag/3.2.2\r\n\r\n - \u001b[32mlaminas/laminas-stdlib\u001b[39m installed in version \u001b[33m3.21.0\u001b[39m\r\n Release notes: https://github.com/laminas/laminas-stdlib/releases/tag/3.21.0\r\n\r\n - \u001b[32mdrupal/search_api\u001b[39m installed in version \u001b[33m1.41.0\u001b[39m\r\n\r\n - \u001b[32mdflydev/dot-access-data\u001b[39m installed in version \u001b[33mv3.0.3\u001b[39m\r\n Release notes: https://github.com/dflydev/dflydev-dot-access-data/releases/tag/v3.0.3\r\n\r\n - \u001b[32mconsolidation/output-formatters\u001b[39m installed in version \u001b[33m4.7.1\u001b[39m\r\n Release notes: https://github.com/consolidation/output-formatters/releases/tag/4.7.1\r\n\r\n - \u001b[32mconsolidation/annotated-command\u001b[39m installed in version \u001b[33m4.10.5\u001b[39m\r\n Release notes: https://github.com/consolidation/annotated-command/releases/tag/4.10.5\r\n\r\n - \u001b[32mdrupal/search_api_solr\u001b[39m installed in version \u001b[33m4.4.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/seckit\u001b[39m installed in version \u001b[33m2.0.3\u001b[39m\r\n\r\n - \u001b[32mdrupal/shield\u001b[39m installed in version \u001b[33m1.8.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/stage_file_proxy\u001b[39m installed in version \u001b[33m4.0.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/testmode\u001b[39m installed in version \u001b[33m2.7.2\u001b[39m\r\n\r\n - \u001b[32mdrupal/xmlsitemap\u001b[39m installed in version \u001b[33m2.0.0\u001b[39m\r\n\r\n - \u001b[32mpsy/psysh\u001b[39m installed in version \u001b[33mv0.12.24\u001b[39m\r\n Release notes: https://github.com/bobthecow/psysh/releases/tag/v0.12.24\r\n\r\n - \u001b[32mleague/container\u001b[39m installed in version \u001b[33m4.2.5\u001b[39m\r\n Release notes: https://github.com/thephpleague/container/releases/tag/4.2."] -[46.5,"o","5\r\n\r\n - \u001b[32mlaravel/prompts\u001b[39m installed in version \u001b[33mv0.3.23\u001b[39m\r\n Release notes: https://github.com/laravel/prompts/releases/tag/v0.3.23\r\n\r\n - \u001b[32mgrasmash/yaml-cli\u001b[39m installed in version \u001b[33m3.2.1\u001b[39m\r\n Release notes: https://github.com/grasmash/yaml-cli/releases/tag/3.2.1\r\n\r\n - \u001b[32mgrasmash/expander\u001b[39m installed in version \u001b[33m3.0.1\u001b[39m\r\n Release notes: https://github.com/grasmash/expander/releases/tag/3.0.1\r\n\r\n - \u001b[32mconsolidation/config\u001b[39m installed in version \u001b[33m3.2.1\u001b[39m\r\n Release notes: https://github.com/consolidation/config/releases/tag/3.2.1\r\n\r\n - \u001b[32mconsolidation/site-alias\u001b[39m installed in version \u001b[33m4.1.3\u001b[39m\r\n Release notes: https://github.com/consolidation/site-alias/releases/tag/4.1.3\r\n\r\n - \u001b[32mconsolidation/site-process\u001b[39m installed in version \u001b[33m6.1.0\u001b[39m\r\n Release notes: https://github.com/consolidation/site-process/releases/tag/6.1.0\r\n\r\n - \u001b[32msymfony/polyfill-php81\u001b[39m installed in version \u001b[33mv1.38.1\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php81/releases/tag/v1.38.1\r\n\r\n - \u001b[32mphootwork/lang\u001b[39m installed in version \u001b[33mv3.2.3\u001b[39m\r\n Release notes: https://github.com/phootwork/lang/releases/tag/v3.2.3\r\n\r\n - \u001b[32mphootwork/collection\u001b[39m installed in version \u001b[33mv3.2.3\u001b[39m\r\n Release notes: https://github.com/phootwork/collection/releases/tag/v3.2.3\r\n\r\n - \u001b[32mphpowermove/docblock\u001b[39m installed in version \u001b[33mv4.0\u001b[39m\r\n Release notes: https://github.com/phpowermove/docblock/releases/tag/v4.0\r\n\r\n - \u001b[32mconsolidation/robo\u001b[39m installed in version \u001b[33m5.1.1\u001b[39m\r\n Release notes: https://github.com/consolidation/robo/releases/tag/5.1.1\r\n\r\n - \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m installed in version \u001b[33m2.0.3\u001b[39m\r\n Release notes: https://github.com/consolidation/filter-via-dot-access-data/releases/tag/2.0.3\r\n\r\n - \u001b[32mchi-teck/drupal-code-generator\u001b[39m installed in version \u001b[33m4.2.0\u001b[39m\r\n Release notes: https://github.com/Chi-teck/drupal-code-generator/releases/tag/4.2.0\r\n\r\n - \u001b[32mdrush/drush\u001b[39m installed in version \u001b[33m13.7.6\u001b[39m\r\n Release notes: https://github.com/drush-ops/drush/releases/tag/13.7.6\r\n\r\n - \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m installed in version \u001b[33m2.0.5\u001b[39m\r\n Release notes: https://github.com/phpstan/phpstan-deprecation-rules/releases/tag/2.0.5\r\n\r\n - \u001b[32mmglaman/phpstan-drupal\u001b[39m installed in version \u001b[33m2.1.2\u001b[39m\r\n Release notes: https://github.com/mglaman/phpstan-drupal/releases/tag/2.1.2\r\n\r\n - \u001b[32mmikey179/vfsstream\u001b[39m installed in version \u001b[33mv1.6.12\u001b[39m\r\n Release notes: https://github.com/bovigo/vfsStream/releases/tag/v1.6.12\r\n\r\n - \u001b[32mrector/rector\u001b[39m installed in version \u001b[33m2.6.3\u001b[39m\r\n Release notes: https://github.com/rectorphp/rector/releases/tag/2.6.3\r\n\r\n - \u001b[32mpalantirnet/drupal-rector\u001b[39m installed in version \u001b[33m1.1.2\u001b[39m\r\n Release notes: https://github.com/palantirnet/drupal-rector/releases/tag/1.1.2\r\n\r\n - \u001b[32mphpcsstandards/phpcsutils\u001b[39m installed in version \u001b[33m1.2.3\u001b[39m\r\n Release notes: https://github.com/PHPCSStandards/PHPCSUtils/releases/tag/1.2.3\r\n\r\n - \u001b[32mphpcompatibility/php-compatibility\u001b[39m installed in version \u001b[33m10.0.0-alpha2\u001b[39m\r\n Release notes: https://github.com/PHPCompatibility/PHPCompatibility/releases/tag/10.0.0-alpha2\r\n\r\n - \u001b[32mwebmozart/assert\u001b[39m installed in version \u001b[33m2.4.1\u001b[39m\r\n Release notes: https://github.com/webmozarts/assert/releases/tag/2.4.1\r\n\r\n - \u001b[32mphpdocumentor/reflection-common\u001b[39m installed in version \u001b[33m2.2.0\u001b[39m\r\n Release notes: https://github.com/phpDocumentor/ReflectionCommon/releases/tag/2.2.0\r\n\r\n - \u001b[32mphpdocumentor/type-resolver\u001b[39m installed in version \u001b[33m2.0.0\u001b[39m\r\n Release notes: https://github.com/phpDocumentor/TypeResolver/releases/tag/2.0.0\r\n\r\n - \u001b[32mphpdocumentor/reflection-docblock\u001b[39m installed in version \u001b[33m6.0.3\u001b[39m\r\n Release notes: https://github.com/phpDocumentor/ReflectionDocBlock/releases/tag/6.0.3\r\n\r\n - \u001b[32mstaabm/side-effects-detector\u001b[39m installed in version \u001b[33m1.0.5\u001b[39m\r\n Release notes: https://github.com/staabm/side-effects-detector/releases/tag/1.0.5\r\n\r\n - \u001b[32msebastian/version\u001b[39m installed in version \u001b[33m5.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/version/releases/tag/5.0.2\r\n\r\n - \u001b[32msebastian/type\u001b[39m installed in version \u001b[33m5.1.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/type/releases/tag/5.1.3\r\n\r\n - \u001b[32msebastian/recursion-context\u001b[39m installed in version \u001b[33m6.0.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/recursion-context/releases/tag/6.0.3\r\n\r\n - \u001b[32msebastian/object-reflector\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/object-reflector/releases/tag/4.0.1\r\n\r\n - \u001b[32msebastian/object-enumerator\u001b[39m installed in version \u001b[33m6.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/object-enumerator/releases/tag/6.0.1\r\n\r\n - \u001b[32msebastian/global-state\u001b[39m installed in version \u001b[33m7.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/global-state/releases/tag/7.0.2\r\n\r\n - \u001b[32msebastian/exporter\u001b[39m installed in version \u001b[33m6.3.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/exporter/releases/tag/6.3.2\r\n\r\n - \u001b[32msebastian/environment\u001b[39m installed in version \u001b[33m7.2.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/environment/releases/tag/7.2.1\r\n\r\n - \u001b[32msebastian/comparator\u001b[39m installed in version \u001b[33m6.3.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/comparator/releases/tag/6.3.3\r\n\r\n - \u001b[32msebastian/code-unit\u001b[39m installed in version \u001b[33m3.0.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/code-unit/releases/tag/3.0.3\r\n\r\n - \u001b[32msebastian/cli-parser\u001b[39m installed in version \u001b[33m3.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/cli-parser/releases/tag/3.0.2\r\n\r\n - \u001b[32mphpunit/php-timer\u001b[39m installed in version \u001b[33m7.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-timer/releases/tag/7.0.1\r\n\r\n - \u001b[32mphpunit/php-text-template\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-text-template/releases/tag/4.0.1\r\n\r\n - \u001b[32mphpunit/php-invoker\u001b[39m installed in version \u001b[33m5.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-invoker/releases/tag/5.0.1\r\n\r\n - \u001b[32mphpunit/php-file-iterator\u001b[39m installed in version \u001b[33m5.1.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-file-iterator/releases/tag/5.1.1\r\n\r\n - \u001b[32mtheseer/tokenizer\u001b[39m installed in version \u001b[33m1.3.1\u001b[39m\r\n Release notes: https://github.com/theseer/tokenizer/releases/tag/1.3.1\r\n\r\n - \u001b[32msebastian/lines-of-code\u001b[39m installed in version \u001b[33m3.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/lines-of-code/releases/tag/3.0.1\r\n\r\n - \u001b[32msebastian/complexity\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/complexity/releases/tag/4.0.1\r\n\r\n - \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/code-unit-reverse-lookup/releases/tag/4.0.1\r\n\r\n - \u001b[32mphpunit/php-code-coverage\u001b[39m installed in version \u001b[33m11.0.12\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-code-coverage/releases/tag/11.0.12\r\n\r\n - \u001b[32mphar-io/version\u001b[39m installed in version \u001b[33m3.2.1\u001b[39m\r\n Release notes: https://github.com/phar-io/version/releases/tag/3.2.1\r\n\r\n - \u001b[32mphar-io/manifest\u001b[39m installed in version \u001b[33m2.0.4\u001b[39m\r\n Release notes: https://github.com/phar-io/manifest/releases/tag/2.0.4\r\n\r\n - \u001b[32mmyclabs/deep-copy\u001b[39m installed in version \u001b[33m1.14.0\u001b[39m\r\n Release notes: https://github.com/myclabs/DeepCopy/releases/tag/1.14.0\r\n\r\n - \u001b[32mphpunit/phpunit\u001b[39m installed in version \u001b[33m11.5.56\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.56\r\n\r\n - \u001b[32mphpspec/prophecy\u001b[39m installed in version \u001b[33mv1.26.1\u001b[39m\r\n Release notes: https://github.com/phpspec/prophecy/releases/tag/v1.26.1\r\n\r\n - \u001b[32mphpspec/prophecy-phpunit\u001b[39m installed in version \u001b[33mv2.5.0\u001b[39m\r\n Release notes: https://github.com/phpspec/prophecy-phpunit/releases/tag/v2.5.0\r\n\r\n - \u001b[32msoftcreatr/jsonp"] -[46.55,"o","npm warn deprecated whatwg-encoding@2.0.0: Use @exodus/bytes instead for a more spec-conformant and faster implementation\r\n"] -[46.6,"o","npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] -[46.65,"o","npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\r\n"] -[46.7,"o","npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me\r\n"] -[46.75,"o","npm warn deprecated abab@2.0.6: Use your platform's native atob() and btoa() methods instead\r\n"] -[46.8,"o","npm warn deprecated domexception@4.0.0: Use your platform's native DOMException instead\r\n"] -[46.85,"o","npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] -[46.9,"o","npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] -[46.95,"o","npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.\r\n"] -[47,"o","ath\u001b[39m installed in version \u001b[33m0.10.0\u001b[39m\r\n Release notes: https://github.com/SoftCreatR/JSONPath/releases/tag/0.10.0\r\n\r\n - \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m installed in version \u001b[33m4.0.2\u001b[39m\r\n Release notes: https://github.com/VincentLanglet/Twig-CS-Fixer/releases/tag/4.0.2\r\n\r\n\r\nadded 611 packages, and audited 612 packages in [TIME]\r\n\r\n171 packages are looking for funding\r\n"] -[47.05,"o"," run `npm fund` for details\r\n"] -[47.1,"o","\r\nfound 0 vulnerabilities\r\n"] -[47.15,"o","npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\r\n"] -[47.2,"o","npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] -[47.25,"o","npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] -[47.3,"o","npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me\r\n"] -[47.35,"o","npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported\r\n"] -[47.4,"o","npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] -[47.45,"o","npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.\r\n"] -[47.5,"o","\r\n> star_wars@1.0.0 postinstall\r\n> patch-package\r\n\r\n"] -[47.55,"o","No patch files found\r\npatch-package 6.5.1\r\nApplying patches...\r\n"] -[47.6,"o","\r\nadded 475 packages, and audited 476 packages in [TIME]\r\n\r\n169 packages are looking for funding\r\n run `npm fund` for details\r\n"] -[47.65,"o","\r\n2 vulnerabilities (1 low, 1 high)\r\n\r\nTo address all issues (including breaking changes), run:\r\n npm audit fix --force\r\n\r\nRun `npm audit` for details.\r\n"] -[47.7,"o","\r\n> star_wars@1.0.0 build\r\n> npm run clean && mkdir -p build/js && npm run concat && npm run uglify && npm run sass:prod && npm run postcss:prod && npm run copy\r\n\r\n"] -[47.75,"o","\r\n> star_wars@1.0.0 clean\r\n> rm -rf build\r\n\r\n"] -[47.8,"o","\r\n> star_wars@1.0.0 concat\r\n> find js -name '*.js' ! -name '*.min.js' -exec cat {} + > build/js/star_wars.min.js\r\n\r\n"] -[47.85,"o","\r\n> star_wars@1.0.0 uglify\r\n> terser build/js/star_wars.min.js -o build/js/star_wars.min.js -c drop_console=true -m reserved=['jQuery','Drupal'] 2>/dev/null || true\r\n\r\n"] -[47.9,"o","\r\n> star_wars@1.0.0 sass:prod\r\n> sass scss/styles.scss build/css/star_wars.min.css --no-source-map --style=compressed\r\n\r\n"] -[47.95,"o","\r\n> star_wars@1.0.0 postcss:prod\r\n> postcss build/css/star_wars.min.css -o build/css/star_wars.min.css --no-map\r\n\r\n"] -[48,"o","\r\n> star_wars@1.0.0 copy\r\n> npm run copy:images && npm run copy:fonts\r\n\r\n"] -[48.05,"o","\r\n> star_wars@1.0.0 copy:images\r\n> mkdir -p build/images && cp -r images/* build/images/ 2>/dev/null || true\r\n\r\n"] -[48.1,"o","\r\n> star_wars@1.0.0 copy:fonts\r\n> mkdir -p build/fonts && cp -r fonts/* build/fonts/ 2>/dev/null || true\r\n\r\n"] -[48.15,"o","\u001b[36m[INFO] Started site provisioning.\u001b[0m\r\n"] -[48.2,"o","\r\n Drupal core version : 11.4.5\r\n Drush version : 13.7.6.0\r\n\r\n Web root path : /app/web\r\n Public files path : sites/default/files\r\n Private files path : sites/default/files/private\r\n Temporary files path : /tmp\r\n Config files path : /app/config/default\r\n"] -[48.25,"o"," DB dump file path : /app/.data/db.sql (present)\r\n\r\n Profile : standard\r\n"] -[48.3,"o"," Configuration files present : No\r\n"] -[48.35,"o"," Existing site found : No\r\n\r\n Provision type : database\r\n Fallback to profile : No\r\n Overwrite existing DB : Yes\r\n Skip DB sanitization : No\r\n Skip post-provision operations : No\r\n Verify config after update : No\r\n Use maintenance mode : Yes\r\n\r\n\u001b[36m[INFO] Provisioning site from the database dump file.\u001b[0m\r\n Dump file path: /app/.data/db.sql\r\n Existing site was not found.\r\n Fresh site content will be imported from the database dump file.\r\n"] -[48.4,"o","\u001b[36m[INFO] Started database file import.\u001b[0m\r\n"] -[48.45,"o","\r\n"] -[48.5,"o"," // Do you really want to drop all tables in the database drupal?: yes. \r\n\r\n"] -[48.55,"o"," Imported database from the dump file.\r\n"] -[48.6,"o","\u001b[32m[ OK ] Finished database file import.\u001b[0m\r\n"] -[48.65,"o","\r\n"] -[48.7,"o","\u001b[36m[INFO] Current Drupal environment: local\u001b[0m\r\n\r\n"] -[48.75,"o","\u001b[34m[TASK] Enabling maintenance mode.\u001b[0m\r\n"] -[48.8,"o","\u001b[32m[ OK ] Enabled maintenance mode. ([TIME])\u001b[0m\r\n\r\n"] -[48.85,"o","\u001b[34m[TASK] Running database updates.\u001b[0m\r\n"] -[48.9,"o"," [success] No pending updates.\r\n"] -[48.95,"o","\u001b[32m[ OK ] Completed running database updates. ([TIME])\u001b[0m\r\n\r\n\u001b[34m[TASK] Clearing cache after database updates.\u001b[0m\r\n"] -[49,"o"," [success] Cache rebuild complete.\r\n"] -[49.05,"o","\u001b[32m[ OK ] Cache was cleared. ([TIME])\u001b[0m\r\n\r\n"] -[49.1,"o","\u001b[34m[TASK] Rebuilding cache.\u001b[0m\r\n"] -[49.15,"o"," [success] Cache rebuild complete.\r\n"] -[49.2,"o","\u001b[32m[ OK ] Cache was rebuilt. ([TIME])\u001b[0m\r\n\r\n"] -[49.25,"o","\u001b[34m[TASK] Running deployment hooks.\u001b[0m\r\n"] -[49.3,"o"," [success] No pending deploy hooks.\r\n"] -[49.35,"o","\u001b[32m[ OK ] Completed deployment hooks. ([TIME])\u001b[0m\r\n\r\n"] -[49.4,"o","\u001b[36m[INFO] Sanitizing database.\u001b[0m\r\n"] -[49.45,"o"," [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserTableCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeCommentsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserFieldsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n"] -[49.5,"o"," [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeSessionsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\nThe following operations will be performed:\r\n"] -[49.55,"o"," * Sanitize user passwords.\r\n * Sanitize user emails.\r\n * Preserve user emails and passwords for the specified roles.\r\n * Sanitize text fields associated with users.\r\n\r\n"] -[49.6,"o"," // Do you want to sanitize the current database?: yes. \r\n\r\n"] -[49.65,"o"," [success] User passwords sanitized.\r\n [success] User emails sanitized.\r\n"] -[49.7,"o","\u001b[32m[ OK ] Sanitized database using drush sql:sanitize.\u001b[0m\r\n"] -[49.75,"o","\r\n"] -[49.8,"o","\u001b[32m[ OK ] Applied custom sanitization commands from file.\u001b[0m\r\n"] -[49.85,"o","\r\n"] -[49.9,"o","\r\n"] -[49.95,"o","\u001b[32m[ OK ] Reset user 0 username and email.\u001b[0m\r\n\r\n"] -[50,"o","\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\".\u001b[0m\r\n\r\n"] -[50.05,"o"," ==> Started demo modules operations.\r\n"] -[50.1,"o"," Environment: local\r\n"] -[50.15,"o"," > Creating the content model.\r\n"] -[50.2,"o","0/2 [\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591]\r\nApplying recipe\r\n"] -[50.25,"o","\r\n2/2 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593]\r\nApplied Basic page recipe.\r\n\r\n"] -[50.3,"o"," [OK] Basic page applied successfully \r\n\r\n"] -[50.35,"o"," < Created the content model.\r\n > Setting site name.\r\n"] -[50.4,"o"," < Set site name.\r\n > Setting up the administration navigation.\r\n"] -[50.45,"o"," [notice] Already installed: navigation\r\n"] -[50.5,"o"," < Set up the administration navigation.\r\n > Installing contrib modules.\r\n"] -[50.55,"o","The following module(s) will be installed: coffee, config_split, config_update, media, environment_indicator, navigation_extra_tools, pathauto, redirect, reroute_email, robotstxt, shield, stage_file_proxy, xmlsitemap, token\r\n"] -[50.6,"o","\r\n"] -[50.65,"o"," // Do you want to continue?: yes. \r\n\r\n"] -[50.7,"o"," [success] Module coffee has been installed. (Permissions - Configure)\r\n"] -[50.75,"o"," [success] Module config_split has been installed. (Permissions - Configure)\r\n"] -[50.8,"o"," [success] Module config_update has been installed.\r\n"] -[50.85,"o"," [success] Module media has been installed. (Permissions - Configure)\r\n"] -[50.9,"o"," [success] Module environment_indicator has been installed. (Permissions - Configure)\r\n"] -[50.95,"o"," [success] Module navigation_extra_tools has been installed. (Permissions)\r\n"] -[51,"o"," [success] Module pathauto has been installed. (Permissions - Configure)\r\n"] -[51.05,"o"," [success] Module redirect has been installed. (Permissions - Configure)\r\n"] -[51.1,"o"," [success] Module reroute_email has been installed. (Permissions - Configure)\r\n"] -[51.15,"o"," [success] Module robotstxt has been installed. (Permissions - Configure)\r\n"] -[51.2,"o"," [success] Module shield has been installed. (Permissions - Configure)\r\n"] -[51.25,"o"," [success] Module stage_file_proxy has been installed. (Permissions - Configure)\r\n"] -[51.3,"o"," [success] Module xmlsitemap has been installed. (Permissions - Configure)\r\n"] -[51.35,"o"," [success] Module token has been installed.\r\n"] -[51.4,"o"," < Installed contrib modules.\r\n > Installing Redis module.\r\n"] -[51.45,"o"," [success] Module redis has been installed. (Permissions - Configure)\r\n"] -[51.5,"o"," < Installed Redis module.\r\n > Installing and configuring ClamAV.\r\n"] -[51.55,"o"," [success] Module clamav has been installed. (Permissions - Configure)\r\n"] -[51.6,"o","\r\n"] -[51.65,"o"," // Do you want to update mode_daemon_tcpip.hostname key in clamav.settings \r\n // config?: yes. \r\n\r\n"] -[51.7,"o"," < Installed and configured ClamAV.\r\n > Installing Solr search modules.\r\n"] -[51.75,"o","The following module(s) will be installed: search_api, search_api_solr, language\r\n"] -[51.8,"o","\r\n"] -[51.85,"o"," // Do you want to continue?: yes. \r\n\r\n"] -[51.9,"o"," [success] Module search_api has been installed. (Permissions - Configure)\r\n"] -[51.95,"o"," [success] Module search_api_solr has been installed.\r\n"] -[52,"o"," [success] Module language has been installed. (Permissions - Configure)\r\n"] -[52.05,"o"," < Installed Solr search modules.\r\n > Installing custom site modules.\r\n"] -[52.1,"o"," [success] Module sw_base has been installed.\r\n"] -[52.15,"o","The following module(s) will be installed: sw_search, workflows, content_moderation\r\n"] -[52.2,"o","\r\n"] -[52.25,"o"," // Do you want to continue?: yes. \r\n\r\n"] -[52.3,"o"," [success] Module sw_search has been installed.\r\n"] -[52.35,"o"," [success] Module workflows has been installed. (Permissions - Configure)\r\n"] -[52.4,"o"," [success] Module content_moderation has been installed. (Permissions - Configure)\r\n"] -[52.45,"o","The following module(s) will be installed: sw_demo, drupal_helpers, testmode\r\n"] -[52.5,"o","\r\n"] -[52.55,"o"," // Do you want to continue?: yes. \r\n\r\n"] -[52.6,"o"," [success] Module sw_demo has been installed.\r\n"] -[52.65,"o"," [success] Module drupal_helpers has been installed.\r\n"] -[52.7,"o"," [success] Module testmode has been installed. (Configure)\r\n"] -[52.75,"o"," < Installed custom site modules.\r\n > Running deployment hooks.\r\n"] -[52.8,"o"," ----------- ------------------------ ---------------------------------------- \r\n Module Hook Description \r\n ----------- ------------------------ ---------------------------------------- \r\n sw_base install_active_theme Installs default and custom theme. \r\n @codeCoverageIgnore \r\n sw_demo configure_testmode Configure testmode to filter the pages \r\n view. Registers the 'sw_demo_pages' \r\n view with testmode so that only \r\n content matching the [TEST] prefix \r\n appears during test runs. \r\n @codeCoverageIgnore \r\n sw_demo create_pages_menu_link Create \"Pages\" menu link in the main \r\n navigation. Demonstrates using the \r\n drupal_helpers module to manage menu \r\n links within deploy hooks. \r\n @codeCoverageIgnore \r\n sw_demo place_counter_block Place counter block in the \"content\" \r\n region. @codeCoverageIgnore \r\n sw_search add_editorial_workflow Attach editorial workflow to the page \r\n content type. Computed base fields \r\n like 'moderation_state' are only \r\n available when a workflow is attached \r\n to the content type. \r\n @codeCoverageIgnore \r\n ----------- ------------------------ ---------------------------------------- \r\n\r\n\r\n"] -[52.85,"o"," // Do you wish to run the specified pending deploy hooks?: yes. \r\n\r\n"] -[52.9,"o","> [notice] Deploy hook started: sw_base_deploy_install_active_theme\r\n"] -[52.95,"o","> [notice] Performed: sw_base_deploy_install_active_theme\r\n"] -[53,"o","> [notice] Deploy hook started: sw_demo_deploy_configure_testmode\r\n"] -[53.05,"o","> [notice] Configured testmode to filter the pages view.\r\n> [notice] Performed: sw_demo_deploy_configure_testmode\r\n"] -[53.1,"o","> [notice] Deploy hook started: sw_demo_deploy_create_pages_menu_link\r\n"] -[53.15,"o","> [notice] Created \"Pages\" menu link in main navigation.\r\n> [notice] Performed: sw_demo_deploy_create_pages_menu_link\r\n"] -[53.2,"o","> [notice] Deploy hook started: sw_demo_deploy_place_counter_block\r\n"] -[53.25,"o","> [notice] Counter block placed in the \"content\" region.\r\n> [notice] Performed: sw_demo_deploy_place_counter_block\r\n"] -[53.3,"o","> [notice] Deploy hook started: sw_search_deploy_add_editorial_workflow\r\n"] -[53.35,"o","> [notice] Attached editorial workflow to page content type.\r\n> [notice] Performed: sw_search_deploy_add_editorial_workflow\r\n"] -[53.4,"o"," [success] Finished performing deploy hooks.\r\n"] -[53.45,"o"," < Ran deployment hooks.\r\n ==> Finished demo modules operations.\r\n"] -[53.5,"o","\r\n"] -[53.55,"o","\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\". ([TIME])\u001b[0m\r\n\r\n"] -[53.6,"o","\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\".\u001b[0m\r\n\r\n"] -[53.65,"o"," ==> Started development modules operations.\r\n"] -[53.7,"o"," Environment: local\r\n"] -[53.75,"o"," > Installing Single Directory Component development tools.\r\n"] -[53.8,"o"," [success] Module sdc_devel has been installed.\r\n"] -[53.85,"o"," < Installed Single Directory Component development tools.\r\n > Installing Devel module.\r\n"] -[53.9,"o"," [success] Module devel has been installed. (Permissions - Configure)\r\n"] -[53.95,"o"," < Installed Devel module.\r\n > Installing Testmode module.\r\n"] -[54,"o"," [notice] Already installed: testmode\r\n"] -[54.05,"o"," < Installed Testmode module.\r\n > Installing Generated content module.\r\n"] -[54.1,"o","Started creation of generated content from modules: sw_demo, generated_content.\r\n"] -[54.15,"o","Created \"page\" node \"Demo page 1 accusamusanimide\" [ID: 2]\r\n"] -[54.2,"o","Created \"page\" node \"Demo page 2 asperioresatquem\" [ID: 3]\r\n"] -[54.25,"o","Created \"page\" node \"Demo page 3 debitisdelectuse\" [ID: 4]\r\n"] -[54.3,"o","Created \"page\" node \"Demo page 4 inmolestiaeoccae\" [ID: 5]\r\n"] -[54.35,"o","Created \"page\" node \"Demo page 5 doloribusiustoof\" [ID: 6]\r\n"] -[54.4,"o","Created \"page\" node \"Demo page 6 dolorumevenietli\" [ID: 7]\r\n"] -[54.45,"o","Created \"page\" node \"Demo page 7 facereidmaximeni\" [ID: 8]\r\n"] -[54.5,"o","Created \"page\" node \"Demo page 8 mollitianonsunta\" [ID: 9]\r\n"] -[54.55,"o","Created \"page\" node \"Demo page 9 distinctioharump\" [ID: 10]\r\n"] -[54.6,"o","Created \"page\" node \"Demo page 10 idimpeditmaximem\" [ID: 11]\r\n"] -[54.65,"o","Created \"page\" node \"Demo page 11 culpadebitisnobi\" [ID: 12]\r\n"] -[54.7,"o","Created \"page\" node \"Demo page 12 eosiustooptioqui\" [ID: 13]\r\n"] -[54.75,"o","Created \"page\" node \"Demo page 13 etitaqueproviden\" [ID: 14]\r\n"] -[54.8,"o","Created \"page\" node \"Demo page 14 animiautculpamai\" [ID: 15]\r\n"] -[54.85,"o","Created \"page\" node \"Demo page 15 maioresmolestiae\" [ID: 16]\r\n"] -[54.9,"o","Created \"page\" node \"Demo page 16 occaecatiperfere\" [ID: 17]\r\n"] -[54.95,"o","Created \"page\" node \"Demo page 17 fugaidimpeditnec\" [ID: 18]\r\n"] -[55,"o","Created \"page\" node \"Demo page 18 estiustomaximequ\" [ID: 19]\r\n"] -[55.05,"o","Created \"page\" node \"Demo page 19 consequaturdeser\" [ID: 20]\r\n"] -[55.1,"o","Created \"page\" node \"Demo page 20 doloreseosmaxime\" [ID: 21]\r\n"] -[55.15,"o","Created generated content entities \"node\" with bundle \"page\".\r\n"] -[55.2,"o","Created all generated content.\r\n"] -[55.25,"o","Finished creation of generated content.\r\n"] -[55.3,"o"," [success] Module generated_content has been installed. (Permissions)\r\n"] -[55.35,"o"," < Installed Generated content module.\r\n ==> Finished development modules operations.\r\n\r\n"] -[55.4,"o","\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\". ([TIME])\u001b[0m\r\n\r\n"] -[55.45,"o","\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-30-search-index.sh\".\u001b[0m\r\n\r\n"] -[55.5,"o"," ==> Started search indexing operations.\r\n"] -[55.55,"o"," Environment: local\r\n Search indexing skip: 0\r\n\r\n"] -[55.6,"o"," > Resetting search index tracker.\r\n"] -[55.65,"o"," [success] Content was successfully scheduled for reindexing.\r\n"] -[55.7,"o"," < Reset search index tracker.\r\n > Running search indexing.\r\n"] -[55.75,"o"," [success] Found 21 items to index for Content. Indexing all items.\r\n [success] Indexing a maximum number of 21 items (50 items per batch run) for the index 'Content'.\r\n"] -[55.8,"o","> [notice] Successfully indexed 21 items on Content.\r\n"] -[55.85,"o","> [notice] Message: Successfully indexed 21 items.\r\n> \r\n"] -[55.9,"o"," < Completed search indexing.\r\n ==> Finished search indexing operations.\r\n"] -[55.95,"o","\r\n"] -[56,"o","\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-30-search-index.sh\". ([TIME])\u001b[0m\r\n\r\n"] -[56.05,"o","\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-40-example.sh\".\u001b[0m\r\n\r\n"] -[56.1,"o"," ==> Started example operations.\r\n"] -[56.15,"o"," Environment: local\r\n Running example operations in non-production environment.\r\n > Performing an example operation.\r\n Replace this with your own commands.\r\n < Performed an example operation.\r\n Fresh database detected. Performing additional example operations.\r\n ==> Finished example operations.\r\n\r\n"] -[56.2,"o","\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-40-example.sh\". ([TIME])\u001b[0m\r\n\r\n"] -[56.25,"o","\u001b[34m[TASK] Disabling maintenance mode.\u001b[0m\r\n"] -[56.3,"o","\u001b[32m[ OK ] Disabled maintenance mode. ([TIME])\u001b[0m\r\n\r\n"] -[56.35,"o","\u001b[32m[ OK ] Finished site provisioning ([TIME]).\u001b[0m\r\n"] -[56.4,"o","\u001b[36m[INFO] Project information:\u001b[0m\r\n\r\n Project name : star_wars\r\n Docker Compose project name : vortex_videos\r\n Site local URL : http://vortex_videos.docker.amazee.io\r\n"] -[56.45,"o"," Path to web root : /app/web\r\n DB host : database\r\n DB username : drupal\r\n DB password : drupal\r\n"] -[56.5,"o"," DB port : 3306\r\n DB port on host : [PORT] ('ahoy db' to start SequelAce)\r\n"] -[56.55,"o"," Solr URL on host : http://127.0.0.1:[PORT]\r\n Selenium VNC URL on host : http://localhost:[PORT]/?autoconnect=1&password=secret\r\n Mailhog URL : http://mailhog.docker.amazee.io/\r\n"] -[56.6,"o"," Xdebug : Disabled ('ahoy debug' to enable)\r\n Site login link : "] -[56.65,"o","http://vortex_videos.docker.amazee.io/user/reset/1/[TIME]/[REDACTED]/login\r\n"] -[56.7,"o","\r\n"] -[59.7,"o",""] +{"version":2,"width":80,"height":42,"timestamp":1787192504,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy build'","title":"Vortex ahoy build Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.075677, "o", "$ "] +[0.57719, "o", "a"] +[0.632224, "o", "h"] +[0.682842, "o", "o"] +[0.736374, "o", "y"] +[0.791657, "o", " "] +[0.844991, "o", "b"] +[0.900971, "o", "u"] +[0.955143, "o", "i"] +[1.010099, "o", "l"] +[1.065091, "o", "d"] +[1.5226, "o", "\r\n"] +[1.99796, "o", "\u001b[36m[INFO] Started Vortex tooling installation.\u001b[0m\r\n"] +[5.937194, "o", "\u001b[32m[ OK ] Finished Vortex tooling installation.\u001b[0m\r\n"] +[6.40193, "o", "\u001b[36m[INFO] Started reset.\u001b[0m\r\n"] +[6.458982, "o", "\u001b[32m[ OK ] Finished reset.\u001b[0m\r\n"] +[6.785772, "o", "#1 [internal] load local bake definitions\r\n"] +[6.936372, "o", "#1 reading from stdin 4.03kB done\r\n#1 DONE 0.0s\r\n"] +[7.605225, "o", "\r\n#2 [php internal] load build definition from php.dockerfile\r\n#2 transferring dockerfile: 526B done\r\n#2 DONE 0.0s\r\n\r\n#3 [nginx internal] load build definition from nginx-drupal.dockerfile\r\n#3 transferring dockerfile: 675B done\r\n#3 DONE 0.0s\r\n\r\n#4 [solr internal] load build definition from solr.dockerfile\r\n#4 transferring dockerfile: 1.46kB done\r\n#4 DONE 0.0s\r\n\r\n#5 [cli internal] load build definition from cli.dockerfile\r\n#5 transferring dockerfile: 4.18kB done\r\n"] +[7.605332, "o", "#5 DONE 0.0s\r\n\r\n#6 [database internal] load build definition from database.dockerfile\r\n#6 transferring dockerfile: 816B done\r\n#6 WARN: SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV \"MYSQL_PASSWORD\") (line 18)\r\n#6 DONE 0.0s\r\n\r\n#7 [cli internal] load metadata for docker.io/uselagoon/php-8.4-cli-drupal:26.8.0\r\n#7 DONE 0.0s\r\n\r\n#8 [clamav internal] load build definition from clamav.dockerfile\r\n#8 transferring dockerfile: 1.45kB done\r\n#8 DONE 0.0s\r\n\r\n#9 [database internal] load metadata for docker.io/uselagoon/mysql-8.4:26.8.0\r\n#9 DONE 0.0s\r\n\r\n#10 [cli internal] load .dockerignore\r\n#10 transferring context: 1.23kB done\r\n"] +[7.60534, "o", "#10 DONE 0.0s\r\n\r\n#11 [database 1/3] FROM docker.io/uselagoon/mysql-8.4:26.8.0\r\n#11 DONE 0.0s\r\n\r\n#12 [database internal] load build context\r\n#12 transferring context: 564B done\r\n#12 DONE 0.0s\r\n\r\n#13 [database 2/3] COPY ./.docker/config/database/my.cnf /etc/mysql/conf.d/server.cnf\r\n#13 CACHED\r\n\r\n#14 [database 3/3] RUN fix-permissions /etc/mysql/conf.d/\r\n#14 CACHED\r\n\r\n#15 [database] exporting to image\r\n#15 exporting layers done\r\n#15 writing image sha256:8a8c78a93a7832368d9390e73639ac1215c4ca4bfa61063d6a74e40f61693a27 done\r\n#15 naming to docker.io/library/vortex_videos-database done\r\n#15 DONE 0.0s\r\n\r\n#16 [database] resolving provenance for metadata file\r\n#16 DONE 0.0s\r\n\r\n#17 [nginx internal] load metadata for docker.io/uselagoon/nginx-drupal:26.8.0\r\n"] +[8.369904, "o", "#17 ...\r\n\r\n#18 [auth] uselagoon/php-8.4-fpm:pull token for registry-1.docker.io\r\n#18 DONE 0.0s\r\n\r\n#19 [auth] uselagoon/commons:pull token for registry-1.docker.io\r\n#19 DONE 0.0s\r\n\r\n#20 [auth] uselagoon/nginx-drupal:pull token for registry-1.docker.io\r\n#20 DONE 0.0s\r\n\r\n#21 [auth] uselagoon/solr-9-drupal:pull token for registry-1.docker.io\r\n#21 DONE 0.0s\r\n\r\n#22 [auth] clamav/clamav-debian:pull token for registry-1.docker.io\r\n#22 DONE 0.0s\r\n"] +[8.520364, "o", "\r\n#23 [php internal] load metadata for docker.io/uselagoon/php-8.4-fpm:26.8.0\r\n"] +[8.86111, "o", "#23 ...\r\n\r\n#17 [nginx internal] load metadata for docker.io/uselagoon/nginx-drupal:26.8.0\r\n#17 DONE 1.4s\r\n"] +[8.964283, "o", "\r\n#10 [solr internal] load .dockerignore\r\n#10 transferring context: 1.23kB done\r\n#10 DONE 0.0s\r\n\r\n#24 [nginx stage-1 1/5] FROM docker.io/uselagoon/nginx-drupal:26.8.0@sha256:56ad1a69dc2c752cdd0061a269dcf0723825911bae380565951d7814c701fecf\r\n#24 DONE 0.0s\r\n\r\n#23 [php internal] load metadata for docker.io/uselagoon/php-8.4-fpm:26.8.0\r\n#23 DONE 1.5s\r\n\r\n#25 [php stage-1 1/3] FROM docker.io/uselagoon/php-8.4-fpm:26.8.0@sha256:cafd9304ab495d6f102fc5ec27f770a4ef33139a89c64bc94db467ccb23ba411\r\n#25 DONE 0.0s\r\n\r\n#26 [nginx internal] load build context\r\n"] +[8.964292, "o", "#26 transferring context: 254B 0.0s done\r\n#26 DONE 0.0s\r\n\r\n#27 [php stage-0 1/10] FROM docker.io/uselagoon/php-8.4-cli-drupal:26.8.0\r\n#27 DONE 0.0s\r\n\r\n#28 [clamav internal] load metadata for docker.io/uselagoon/commons:26.8.0\r\n#28 DONE 1.5s\r\n\r\n#29 [clamav internal] load metadata for docker.io/clamav/clamav-debian:1.5.4\r\n#29 DONE 1.5s\r\n\r\n#30 [solr internal] load metadata for docker.io/uselagoon/solr-9-drupal:26.8.0\r\n#30 DONE 1.5s\r\n\r\n#31 [clamav stage-1 1/7] FROM docker.io/clamav/clamav-debian:1.5.4@sha256:2bb8cd7dfe3e87f86e969a2c415f7698583175e46dc2234672be9210c982c144\r\n#31 DONE 0.0s\r\n\r\n#32 [clamav commons 1/1] FROM docker.io/uselagoon/commons:26.8.0@sha256:0af1b1ed0e4b76a035415637d910290f8ecd75fb46a05be8ca8bfec24f2a84e6\r\n#32 DONE 0.0s\r\n\r\n"] +[8.964295, "o", "#33 [solr 1/3] FROM docker.io/uselagoon/solr-9-drupal:26.8.0@sha256:de7bb5e9758fe8caf4bc2fb726a9e544e10cfa59c78e319592fed6102f804683\r\n#33 DONE 0.0s\r\n\r\n#34 [clamav internal] load build context\r\n"] +[8.964316, "o", "#34 transferring context: 285B done\r\n#34 DONE 0.0s\r\n"] +[8.964323, "o", "\r\n"] +[8.964326, "o", "#35 [clamav stage-1 2/7] COPY --from=commons /lagoon /lagoon\r\n#35 CACHED\r\n\r\n"] +[8.96441, "o", "#36 [clamav stage-1 4/7] RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata && apt-get clean && rm -rf /var/lib/apt/lists/*\r\n#36 CACHED\r\n\r\n#37 [clamav stage-1 3/7] COPY --from=commons /bin/fix-permissions /bin/ep /bin/docker-sleep /bin/wait-for /bin/\r\n#37 CACHED\r\n\r\n#38 [clamav stage-1 6/7] RUN cat /tmp/clamav.conf >> /etc/clamav/clamd.conf && rm /tmp/clamav.conf && sed -i \"s/^LogFile /# LogFile /g\" /etc/clamav/clamd.conf && sed -i \"s/^#LogSyslog /LogSyslog /g\" /etc/clamav/clamd.conf && sed -i \"s/^UpdateLogFile /# UpdateLogFile /g\" /etc/clamav/freshclam.conf && sed -i \"s/^#LogSyslog /LogSyslog /g\" /etc/clamav/freshclam.conf\r\n#38 CACHED\r\n\r\n#39 [clamav stage-1 5/7] COPY .docker/config/clamav/clamav.conf /tmp/clamav.conf\r\n#39 CACHED\r\n\r\n#40 [clamav stage-1 7/7] RUN fix-permissions /var/lib/clamav\r\n#40 CACHED\r\n\r\n#41 [nginx internal] load build context\r\n#41 transferring context: 2.74MB 0.1s done\r\n#41 DONE 0.1s\r\n\r\n#42 [clamav] exporti"] +[8.96443, "o", "ng to image\r\n#42 exporting layers done\r\n#42 writing image sha256:7ac7c6ac3f13de064a3cfc25b0cb3c1c735436a8b0d2a2391b82a29e945f7658 done\r\n#42 naming to docker.io/library/vortex_videos-clamav done\r\n#42 DONE 0.0s\r\n\r\n#43 [solr internal] load build context\r\n#43 transferring context: 1.54MB 0.0s done\r\n"] +[9.077369, "o", "#43 DONE 0.0s\r\n\r\n#44 [clamav] resolving provenance for metadata file\r\n#44 DONE 0.0s\r\n\r\n#45 [solr 2/3] COPY .docker/config/solr/config-set /solr-conf/conf/\r\n#45 CACHED\r\n\r\n#46 [solr 3/3] RUN sed -i -e \"s#${solr.data.dir:}#/var/solr/${solr.core.name}#g\" /solr-conf/conf/solrconfig.xml && sed -i -e \"s#solr.lock.type:native#solr.lock.type:none#g\" /solr-conf/conf/solrconfig.xml && sed -i -e \"s#solr.autoSoftCommit.MaxTime=5000#solr.autoSoftCommit.MaxTime=-1#g\" /solr-conf/conf/solrcore.properties\r\n#46 CACHED\r\n\r\n#47 [cli stage-0 2/10] RUN apk add --no-cache ncurses pv tzdata autoconf g++ make && pecl install pcov && docker-php-ext-enable pcov && docker-php-ext-install pcntl && apk del g++ make autoconf\r\n#47 CACHED\r\n\r\n#48 [cli stage-0 3/10] COPY patches /app/patches\r\n#48 CACHED\r\n\r\n#49 [cli stage-0 4/10] COPY scripts /app/scripts\r\n#49 CACHED\r\n\r\n#50 [solr] exporting to image\r\n#50 exporting layers done\r\n#50 writing image sha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660"] +[9.077436, "o", "fd05e2d58bcaf 0.0s done\r\n#50 naming to docker.io/library/vortex_videos-solr done\r\n#50 DONE 0.1s\r\n\r\n#51 [php stage-0 5/10] COPY composer.json composer.* patches.lock.* .env* auth* /app/\r\n"] +[9.247912, "o", "#51 DONE 0.1s\r\n\r\n#52 [solr] resolving provenance for metadata file\r\n#52 DONE 0.0s\r\n\r\n#53 [php stage-0 6/10] RUN --mount=type=secret,id=package_token token=$(if [ -s /run/secrets/package_token ]; then cat /run/secrets/package_token; else echo \"XXXXX\"; fi) && if [ -n \"${token}\" ]; then export COMPOSER_AUTH=\"{\"github-oauth\": {\"github.com\": \"${token}\"}}\"; fi && COMPOSER_MEMORY_LIMIT=-1 composer install -n --no-dev --ansi --prefer-dist --optimize-autoloader\r\n"] +[9.294744, "o", "#53 0.260 \u001b[30;43mNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information.\u001b[39;49m\r\n"] +[9.445505, "o", "#53 0.261 \u001b[32mLoading composer repositories with package information\u001b[39m\r\n"] +[29.508568, "o", "#53 20.48 \u001b[32mUpdating dependencies\u001b[39m\r\n"] +[29.938006, "o", "#53 20.74 \u001b[32mLock file operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n#53 20.74 - Locking \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0"] +[29.938015, "o", ".3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m)"] +[29.938039, "o", "\r\n#53 20.74 - Locking \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoc"] +[29.938061, "o", "trine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/core-composer-scaff"] +[29.938084, "o", "old\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[3"] +[29.938099, "o", "3m1.6.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m)\r\n#53 20.74 - Locking \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32merg"] +[29.938108, "o", "ebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlocalhei"] +[29.938143, "o", "nz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/pear-core-minimal\u001b["] +[29.93817, "o", "39m (\u001b[33mv1.10.18\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n#53 20.74 - Lo"] +[29.938191, "o", "cking \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n#53 20.74 - Locki"] +[29.938201, "o", "ng \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] +[29.938246, "o", "#53 20.74 - Locking \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#"] +[29.938271, "o", "53 20.74 - Locking \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33"] +[29.938277, "o", "mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony"] +[29.938348, "o", "/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/psr-http-message-b"] +[29.938378, "o", "ridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m)"] +[29.938389, "o", "\r\n#53 20.74 - Locking \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n#53 20.75 \u001b[32mWriting lock file\u001b[39m\r\n#53 20.75 \u001b[32mInstalling dependencies from lock file\u001b[39m\r\n#53 20.75 \u001b[32mPackage operations: 124 installs, 0 updates, 0 removals\u001b[39m\r\n#53 20.75 - Downloading \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] +[30.511872, "o", "#53 21.48 - Installing \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[30.680232, "o", "#53 21.50 - Downloading \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] +[31.30157, "o", "#53 22.09 - Installing \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n#53 22.10 - Downloading \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/se"] +[31.30158, "o", "rvice-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)"] +[31.301652, "o", "\r\n#53 22.10 - Downloading \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7"] +[31.301687, "o", ".1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n"] +[31.301748, "o", "#53 22.11 - Downloading \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - "] +[31.301789, "o", "Downloading \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/polyfil"] +[31.301819, "o", "l-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdoctrine"] +[31.301846, "o", "/common\u001b[39m (\u001b[33m3.5.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 22.11 - Download"] +[31.30185, "o", "ing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m)\r\n#5"] +[31.301879, "o", "3 22.11 - Downloading \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b"] +[31.301912, "o", "[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n#53 "] +[31.301917, "o", "22.12 - Downloading \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n"] +[31.689051, "o", "#53 22.50 0/121 [>---------------------------] 0%"] +[32.735952, "o", "\u001b[1G\u001b[2K 12/121 [==>-------------------------] 9%"] +[32.88661, "o", "\u001b[1G\u001b[2K 19/121 [====>-----------------------] 15%"] +[33.304941, "o", "\u001b[1G\u001b[2K 28/121 [======>---------------------] 23%"] +[33.998941, "o", "\u001b[1G\u001b[2K 37/121 [========>-------------------] 30%"] +[34.632275, "o", "\u001b[1G\u001b[2K 52/121 [============>---------------] 42%"] +[34.978369, "o", "\u001b[1G\u001b[2K 61/121 [==============>-------------] 50%"] +[35.283345, "o", "\u001b[1G\u001b[2K 84/121 [===================>--------] 69%\u001b[1G\u001b[2K 90/121 [====================>-------] 74%"] +[36.035593, "o", "\u001b[1G\u001b[2K 102/121 [=======================>----] 84%"] +[36.49565, "o", "\u001b[1G"] +[36.646759, "o", "\u001b[2K 112/121 [=========================>--] 92%"] +[37.041451, "o", "\u001b[1G\u001b[2K 121/121 [============================] 100%\u001b[1G\u001b[2K"] +[37.230566, "o", "\u001b[30;43mpatches.lock.json does not exist. Creating a new patches.lock.json.\u001b[39;49m\r\n#53 28.01 - \u001b[32mResolving patches from dependencies.\u001b[39m\r\n#53 28.01 - Installing \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n#53 28.02 - Installing \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[3"] +[37.23067, "o", "3mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b"] +[37.230812, "o", "[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/routing\u001b["] +[37.230872, "o", "39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive"] +[37.2309, "o", "\r\n#53 28.05 - Installing \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b["] +[37.230936, "o", "39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mralouphie/geta"] +[37.230963, "o", "llheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2"] +[37.230993, "o", "\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 28.06 - Installing \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1."] +[37.231021, "o", "15.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdflydev/dot-access-data\u001b[39"] +[37.231047, "o", "m (\u001b[33mv3.0.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[3"] +[37.332934, "o", "9m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m"] +[37.333015, "o", "): Extracting archive\r\n#53 28.07 - Installing \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/filter"] +[37.333127, "o", "-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n#53 28.08 0/118 [>---------------------------] 0%\u001b[1G\u001b[2K 40/118 [=========>------------------] 33%\u001b[1G\u001b[2K 64/118 [===============>------------] 54%"] +[37.568804, "o", "\u001b[1G\u001b[2K 84/118 [===================>--------] 71%\u001b[1G\u001b[2K 97/118 [=======================>----] 82%"] +[37.829429, "o", "\u001b[1G\u001b[2K 110/118 [==========================>-] 93%"] +[38.817002, "o", "\u001b[1G\u001b[2K 118/118 [============================] 100%\u001b[1G\u001b[2K"] +[39.288218, "o", "\u001b[32m34 package suggestions were added by new dependencies, use `composer suggest` to see details.\u001b[39m\r\n"] +[39.448582, "o", "#53 30.26 \u001b[32mGenerating optimized autoload files\u001b[39m\r\n"] +[40.185412, "o", "#53 31.15 \u001b[32m57 packages you are using are looking for funding.\u001b[39m\r\n#53 31.15 \u001b[32mUse the `composer fund` command to find out more!\u001b[39m\r\n"] +[40.338074, "o", "#53 31.15 Scaffolding files for \u001b[33mdrupal/core\u001b[39m:\r\n#53 31.15 - Skip \u001b[32m[web-root]/.htaccess\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.15 - Skip \u001b[32m[web-root]/README.md\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/index.php\u001b[39m from \u001b[32massets/scaffold/files/index.php\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.csslintrc\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/robots.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/update.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/INSTALL.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.eslintignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.eslintrc.json\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.ht.router.php\u001b[39m: "] +[40.338086, "o", "overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/README.txt\u001b[39m from \u001b[32massets/scaffold/files/sites.README.txt\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[project-root]/.editorconfig\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/example.gitignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/themes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/themes.README.txt\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[project-root]/.gitattributes\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/modules/README.txt\u001b[39m from \u001b[32massets/scaffold/files/modules.README.txt\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/profiles/README.txt\u001b[39m from \u001b[32massets/scaffold/files/profiles.README.txt\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[project-root]/recipes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/recipes.README.txt\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/sites/example.sites.php\u001b[39m: overr"] +[40.338123, "o", "idden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/development.services.yml\u001b[39m from \u001b[32massets/scaffold/files/development.services.yml\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/sites/example.settings.local.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/default/default.services.yml\u001b[39m from \u001b[32massets/scaffold/files/default.services.yml\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/default/default.settings.php\u001b[39m from \u001b[32massets/scaffold/files/default.settings.php\u001b[39m\r\n"] +[40.687275, "o", "#53 DONE 31.5s\r\n\r\n#54 [nginx stage-0 7/10] COPY . /app\r\n#54 DONE 0.1s\r\n\r\n#55 [php stage-0 8/10] RUN mkdir -p -m 2775 \"/app/web/sites/default/files\" \"/app/web/sites/default/files/private\" \"/tmp\"\r\n"] +[40.840008, "o", "#55 DONE 0.2s\r\n\r\n#56 [cli stage-0 9/10] RUN if [ \"0\" != \"1\" ]; then theme_path=\"/app/web/themes/custom/star_wars\"; npm --prefix=\"${theme_path}\" ci --no-progress --no-audit --no-fund && npm --prefix=\"${theme_path}\" run build && npm cache clean --force; fi\r\n"] +[42.075021, "o", "#56 1.432 npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] +[42.61691, "o", "#56 1.756 npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\r\n#56 1.821 npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me\r\n"] +[42.752129, "o", "#56 2.110 npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] +[42.913605, "o", "#56 2.119 npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] +[42.999055, "o", "#56 2.357 npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported\r\n"] +[43.7131, "o", "#56 3.071 npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.\r\n"] +[44.50803, "o", "#56 3.654 \r\n#56 3.654 > star_wars@1.0.0 postinstall\r\n#56 3.654 > patch-package\r\n#56 3.654 \r\n#56 3.738 patch-package 6.5.1\r\n#56 3.738 Applying patches...\r\n#56 3.739 No patch files found\r\n#56 3.753 \r\n#56 3.753 added 475 packages in 3s\r\n#56 3.866 \r\n#56 3.866 > star_wars@1.0.0 build\r\n#56 3.866 > npm run clean && mkdir -p build/js && npm run concat && npm run uglify && npm run sass:prod && npm run postcss:prod && npm run copy\r\n#56 3.866 \r\n"] +[44.690503, "o", "#56 3.954 \r\n#56 3.954 > star_wars@1.0.0 clean\r\n#56 3.954 > rm -rf build\r\n#56 3.954 \r\n#56 4.049 \r\n#56 4.049 > star_wars@1.0.0 concat\r\n#56 4.049 > find js -name '*.js' ! -name '*.min.js' -exec cat {} + > build/js/star_wars.min.js\r\n#56 4.049 \r\n"] +[44.935623, "o", "#56 4.143 \r\n#56 4.143 > star_wars@1.0.0 uglify\r\n#56 4.143 > terser build/js/star_wars.min.js -o build/js/star_wars.min.js -c drop_console=true -m reserved=['jQuery','Drupal'] 2>/dev/null || true\r\n#56 4.143 \r\n"] +[44.963687, "o", "#56 4.322 \r\n#56 4.322 > star_wars@1.0.0 sass:prod\r\n#56 4.322 > sass scss/styles.scss build/css/star_wars.min.css --no-source-map --style=compressed\r\n#56 4.322 \r\n"] +[45.41425, "o", "#56 4.621 \r\n#56 4.621 > star_wars@1.0.0 postcss:prod\r\n#56 4.621 > postcss build/css/star_wars.min.css -o build/css/star_wars.min.css --no-map\r\n#56 4.621 \r\n"] +[45.546244, "o", "#56 4.903 \r\n#56 4.903 > star_wars@1.0.0 copy\r\n#56 4.903 > npm run copy:images && npm run copy:fonts\r\n#56 4.903 \r\n"] +[45.726931, "o", "#56 4.991 \r\n#56 4.991 > star_wars@1.0.0 copy:images\r\n#56 4.991 > mkdir -p build/images && cp -r images/* build/images/ 2>/dev/null || true\r\n#56 4.991 \r\n"] +[45.95082, "o", "#56 5.079 \r\n#56 5.079 > star_wars@1.0.0 copy:fonts\r\n#56 5.079 > mkdir -p build/fonts && cp -r fonts/* build/fonts/ 2>/dev/null || true\r\n#56 5.079 \r\n#56 5.157 npm warn using --force Recommended protections disabled.\r\n"] +[46.269836, "o", "#56 DONE 5.5s\r\n\r\n#57 [php stage-0 10/10] WORKDIR /app\r\n#57 DONE 0.0s\r\n\r\n#58 [cli] exporting to image\r\n#58 exporting layers\r\n"] +[48.09721, "o", "#58 exporting layers 2.0s done\r\n"] +[48.341366, "o", "#58 writing image sha256:e5bc1226bb03f6bd5d7c9faa49347169fd2c080cf00e7e6b6bbe3703f4e3557c done\r\n#58 naming to docker.io/library/vortex_videos done\r\n#58 DONE 2.0s\r\n\r\n#59 [nginx stage-1 2/5] RUN apk add --no-cache tzdata\r\n#59 CACHED\r\n\r\n#60 [nginx stage-1 3/5] COPY ./.docker/config/nginx/redirects-map.conf /etc/nginx/redirects-map.conf\r\n#60 CACHED\r\n\r\n#61 [nginx stage-1 4/5] RUN fix-permissions /etc/nginx\r\n#61 CACHED\r\n\r\n#62 [php stage-1 2/3] RUN apk add --no-cache tzdata\r\n#62 CACHED\r\n\r\n#63 [cli] resolving provenance for metadata file\r\n#63 DONE 0.0s\r\n\r\n#64 [php stage-1 3/3] COPY --from=cli /app /app\r\n"] +[51.168532, "o", "#64 DONE 3.0s\r\n\r\n#65 [nginx stage-1 5/5] COPY --from=cli /app /app\r\n"] +[51.32943, "o", "#65 DONE 3.0s\r\n\r\n#66 [nginx] exporting to image\r\n"] +[53.509658, "o", "#66 exporting layers 2.2s done\r\n#66 writing image sha256:c30ce198ed9988c1a91e2d3e84c92e42e76aa6bb515b2e4ac48eb88de5a38625 done\r\n#66 naming to docker.io/library/vortex_videos-nginx done\r\n#66 DONE 2.3s\r\n\r\n#67 [php] exporting to image\r\n#67 exporting layers 2.2s done\r\n"] +[53.509667, "o", "#67 writing image sha256:5bcfc19ac83ecf7f42168b526a175fd876eb85b3f22800120b02e63c0a41d0cb done\r\n#67 naming to docker.io/library/vortex_videos-php done\r\n#67 DONE 2.3s\r\n\r\n#68 [php] resolving provenance for metadata file\r\n#68 DONE 0.0s\r\n\r\n#69 [nginx] resolving provenance for metadata file\r\n#69 DONE 0.0s\r\n"] +[53.611886, "o", "\u001b[?25l\u001b[0G[+] up 8/12\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[53.611895, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[53.611898, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[53.611901, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[53.611903, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-clamav-1 Creating \u001b[34m 0.1s\u001b[0m\r\n"] +[53.611907, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-redis-1 Creating \u001b[34m 0.1s\u001b[0m\r\n"] +[53.61191, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-solr-1 Creating \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-database-1 Creating \u001b[34m 0.1s\u001b[0m\r\n"] +[53.611912, "o", "\u001b[?25h"] +[53.711587, "o", "\u001b[?25l\u001b[13A\u001b[0G[+] up 10/12\r\n"] +[53.711602, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[53.711607, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[53.71161, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[53.711613, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[53.711617, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[53.711622, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[53.711647, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[53.711654, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-solr-1 Creating \u001b[34m 0.2s\u001b[0m\r\n"] +[53.711657, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-database-1 Creating \u001b[34m 0.2s\u001b[0m\r\n"] +[53.711666, "o", "\u001b[?25h"] +[53.811873, "o", "\u001b[?25l\u001b[13A\u001b[0G[+] up 12/13\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[53.811883, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Creating \u001b[34m 0.0s\u001b[0m\r\n"] +[53.811885, "o", "\u001b[?25h"] +[53.918462, "o", "\u001b[?25l\u001b[14A\u001b[0G[+] up 13/14\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b["] +[53.918553, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-cli-1 Creating \u001b[34m 0.0s\u001b[0m\r\n\u001b[?25h"] +[54.021401, "o", "\u001b[?25l\u001b[15A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b["] +[54.02162, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-php-1 Creating \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-nginx-1 Creating \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-chrome-1 Creating \u001b[34m 0.0s\u001b[0m\r\n\u001b[?25h"] +[54.111267, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n"] +[54.11128, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[54.111283, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[54.111287, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[54.111363, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[54.111439, "o", "ortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-nginx-1 Creating \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-chrome-1 Creating \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[54.211573, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n"] +[54.211589, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[54.211591, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[54.211594, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[54.211597, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[54.211661, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 0.7s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 0.7s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 0.7s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 0.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 "] +[54.211733, "o", " \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[54.312178, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[33"] +[54.312331, "o", "m⠹\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[54.411498, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[33"] +[54.411685, "o", "m⠸\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[54.514075, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[54.514274, "o", "0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[54.612071, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[54.612194, "o", "0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[54.714054, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[54.714304, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[54.812977, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[54.813073, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[54.81315, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[54.911893, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[54.912365, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[55.012321, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[55.012534, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[55.11205, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[55.112063, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[55.11207, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[55.112074, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[55.112076, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.3s\u001b[0m\r\n"] +[55.112111, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[55.212145, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[55.212411, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[55.312051, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[55.312056, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.5s\u001b[0m\r\n"] +[55.312057, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[55.312066, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[55.312068, "o", "\u001b[?25h"] +[55.416992, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[55.417337, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[55.512492, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[55.512569, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[55.618153, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[55.621372, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[55.713519, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[55.713583, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[55.713594, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[55.713636, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[55.811218, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[55.811227, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[55.81123, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[55.811232, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[55.811234, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[55.811255, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[55.913108, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[55.913188, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[55.913195, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[55.913199, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[55.913202, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[55.913206, "o", "\u001b[?25h"] +[56.012135, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[56.012364, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[56.112115, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[56.112372, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[56.21311, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[56.213414, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[56.312642, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[56.312744, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[56.411964, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[56.411973, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[56.411975, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[56.411976, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[56.411977, "o", " \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.6s\u001b[0m\r\n"] +[56.411978, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[56.411979, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[56.411981, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[56.411982, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[56.411983, "o", "\u001b[?25h"] +[56.512127, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[56.51221, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[56.612147, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[56.612399, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[56.712039, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[56.712126, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[56.712205, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[56.812075, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[56.812091, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[56.812095, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[56.812193, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[56.81228, "o", "eos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[56.912123, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[56.91227, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[57.01154, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[57.01155, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.2s\u001b[0m\r\n"] +[57.011554, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[57.112036, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[57.112048, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[57.112054, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[57.112057, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.112059, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.11206, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.112061, "o", "\u001b[?25h"] +[57.212487, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[57.212921, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[57.312047, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[57.312055, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[57.312057, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[57.312058, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[57.312059, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[57.312061, "o", " \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.5s\u001b[0m\r\n"] +[57.312062, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.312063, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.312066, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.312068, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.312069, "o", "\u001b[?25h"] +[57.41207, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[57.412173, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[57.51205, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[57.51207, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[57.512118, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[57.512152, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.512157, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.512159, "o", "\u001b[?25h"] +[57.613687, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[57.613962, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[57.712385, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[57.712396, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[57.712399, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[57.712401, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[57.712402, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[57.712403, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.9s\u001b[0m\r\n"] +[57.712405, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.712406, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.712407, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.712408, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.71241, "o", "\u001b[?25h"] +[57.811957, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[57.811968, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[57.811997, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[57.812, "o", "\u001b[?25h"] +[57.912075, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[57.912181, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[58.012017, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[58.012028, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[58.01203, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[58.012033, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[58.012034, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[58.012035, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[58.012037, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[58.012086, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[58.112854, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[58.113519, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[58.211959, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[58.211965, "o", "0m\r\n"] +[58.211991, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[58.312332, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[58.312433, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.5s\u001b[0m\r\n"] +[58.312518, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[58.41218, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[58.412422, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[58.511265, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[58.511275, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[58.511278, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[58.51128, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[58.511284, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.7s\u001b[0m\r\n"] +[58.511287, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[58.511357, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[58.611932, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[58.611939, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.8s\u001b[0m\r\n"] +[58.611944, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[58.611946, "o", "\u001b[?25h"] +[58.712017, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[58.712098, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[58.712176, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[58.812034, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[58.812047, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[58.81205, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[58.812054, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[58.812121, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container v"] +[58.81218, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[58.911891, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[58.911901, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[58.911925, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[59.011964, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[59.011975, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.011977, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.011979, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.011981, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.011984, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.011987, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.01199, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[59.011992, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[59.011995, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[59.012001, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[59.012003, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[59.012005, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[59.012034, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[59.111359, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[59.111367, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.11137, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.111372, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.111374, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.111403, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[59.11146, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[59.211914, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[59.211921, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.211969, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[59.211994, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[59.212019, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[59.312007, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[59.312016, "o", "0m\r\n"] +[59.312098, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[59.411937, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[59.411994, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[59.411998, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[59.412028, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[59.412072, "o", "\u001b[?25h"] +[59.511964, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[59.511975, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.511978, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.512019, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container v"] +[59.512026, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.7s\u001b[0m\r\n"] +[59.512028, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[59.512063, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[59.611965, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[59.611984, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[59.611987, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[59.711953, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.711959, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.71198, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[59.712001, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[59.712003, "o", "\u001b[?25h"] +[59.812038, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[59.812045, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[59.812046, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[59.812047, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[59.812061, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[59.911927, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[59.911936, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[59.911939, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[59.911941, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[59.911942, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[59.911968, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[60.011945, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.011952, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.011996, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[60.011998, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[60.012, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[60.012001, "o", "\u001b[?25h"] +[60.111925, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[60.111934, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.111936, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.111937, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.111965, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[60.111991, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[60.212241, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[60.212284, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.212294, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[60.212297, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[60.212301, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[60.212303, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[60.212307, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[60.212318, "o", " \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[60.21232, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[60.212322, "o", "\u001b[?25h"] +[60.311963, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[60.312694, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[60.312751, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[60.312774, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[60.412057, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[60.412076, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.412079, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.412083, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.412086, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[60.412089, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[60.412092, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[60.412148, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[60.511784, "o", "\u001b[?25l\u001b[18A\u001b[0G"] +[60.511795, "o", "[+] up 16/17\r\n"] +[60.511886, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[60.511954, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[60.611172, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[60.611189, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.611192, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.611195, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.611198, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.611251, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[60.611321, "o", "eos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[60.711844, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[60.711859, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.711863, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.711865, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.711871, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[60.711874, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[60.711935, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[60.81171, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[60.811835, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[60.91199, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[60.911998, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[60.912, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[60.912002, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[60.912004, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[60.912004, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[60.912005, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[60.912007, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[60.912019, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[61.01197, "o", "\u001b[?25l\u001b[18A\u001b[0G"] +[61.0121, "o", "[+] up 16/17\r\n"] +[61.012152, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.012156, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.012162, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[61.01219, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[61.012193, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[61.012232, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[61.012263, "o", "\u001b[?25h"] +[61.111364, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[61.111379, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.111382, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.111386, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.111449, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container v"] +[61.111513, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[61.212006, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[61.212013, "o", "0m\r\n"] +[61.212016, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[61.212018, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[61.212019, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[61.212054, "o", " \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[61.310943, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[61.310952, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.311003, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[61.31103, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[61.311087, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[61.411968, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[61.411982, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[61.411984, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[61.411986, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[61.412004, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[61.511831, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.511842, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[61.511879, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[61.611955, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[61.612004, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[61.612011, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[61.612013, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[61.612017, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[61.612018, "o", "\u001b[?25h"] +[61.711956, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.711962, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.711964, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[61.711965, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[61.711967, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[61.712001, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[61.811471, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[61.811478, "o", "0m\r\n"] +[61.811511, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[61.912282, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[61.912526, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[62.011539, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[62.011554, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[62.011627, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[62.011714, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[62.111961, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[62.111968, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[62.111969, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[62.111971, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[62.111973, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[62.112006, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[62.112013, "o", "eos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[62.112045, "o", "\u001b[?25h"] +[62.212103, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[62.21231, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[62.312059, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[62.312186, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[62.411962, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[62.411988, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[62.412063, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[62.412085, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[62.511015, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[62.511057, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[62.511065, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[62.511067, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[62.511068, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[62.511069, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[62.511071, "o", "\u001b[?25h"] +[62.611222, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[62.611356, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[62.611365, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[62.61142, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[62.712978, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[62.713877, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[62.814766, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[62.814802, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[62.814819, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[62.814865, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[62.915543, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[62.916426, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[63.012103, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[63.012114, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[63.012168, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[63.012234, "o", "eos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[63.11153, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[63.111535, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[63.111536, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[63.111537, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[63.111538, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[63.111539, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[63.11154, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[63.111543, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[63.111545, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[63.111547, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[63.111548, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[63.111549, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[63.111576, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[63.111578, "o", "\u001b[?25h"] +[63.212174, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[63.212377, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[63.311691, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[63.311704, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[63.311707, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[63.311772, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[63.412758, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[63.41288, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[63.512479, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[63.512678, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[63.619379, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[63.619568, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[63.71201, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[63.712023, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[63.712027, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[63.71203, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[63.712077, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[63.811904, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[63.811911, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[63.811913, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[63.811916, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[63.811918, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[63.811919, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.0s\u001b[0m\r\n"] +[63.811922, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[63.811968, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[63.911316, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[63.911524, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[64.011977, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[64.012232, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[64.112094, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[64.112113, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[64.112116, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[64.112119, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[64.112177, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[64.211922, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[64.212, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[64.212021, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.212029, "o", "\u001b[?25h"] +[64.311996, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[64.312003, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[64.312054, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[64.41102, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[64.411029, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[64.41103, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[64.411031, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[64.411096, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container v"] +[64.411106, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.6s\u001b[0m\r\n"] +[64.411119, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.411127, "o", "\u001b[?25h"] +[64.511952, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[64.511961, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[64.511962, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[64.511964, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[64.511981, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[64.613573, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[64.613975, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[64.711774, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[64.711784, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[64.711791, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[64.711793, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.9s\u001b[0m\r\n"] +[64.711795, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.711796, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.711797, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.711798, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.711799, "o", "\u001b[?25h"] +[64.811937, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[64.811974, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[64.811982, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[64.811984, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[64.811986, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.0s\u001b[0m\r\n"] +[64.81199, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.811992, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.811995, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.811997, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.811999, "o", "\u001b[?25h"] +[64.911971, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[64.911983, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[64.911988, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[64.911991, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[64.911993, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[64.911996, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.1s\u001b[0m\r\n"] +[64.911999, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.912001, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[64.912026, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[65.011944, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[65.011951, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[65.011953, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.011955, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.011968, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[65.111332, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[65.111345, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[65.111347, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[65.111349, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[65.111351, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[65.111352, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[65.111353, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.111355, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[65.111356, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.111358, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.111359, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.3s\u001b[0m\r\n"] +[65.11136, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[65.111361, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[65.111363, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[65.111366, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[65.111367, "o", "\u001b[?25h"] +[65.212038, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[65.212047, "o", "0m\r\n"] +[65.212067, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[65.212068, "o", "\u001b[?25h"] +[65.311943, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[65.311994, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[65.312002, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[65.312041, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[65.411406, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[65.411413, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[65.411437, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container v"] +[65.41146, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[65.511938, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[65.512014, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[65.512047, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[65.512079, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[65.512082, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[65.512085, "o", "\u001b[?25h"] +[65.611948, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[65.611958, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[65.61196, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[65.611962, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[65.611964, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.611965, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[65.611966, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.611968, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.611969, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n"] +[65.612009, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m11.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[65.711633, "o", "\u001b[?25l\u001b[18A\u001b[0G"] +[65.711638, "o", "[+] up 16/17\r\n"] +[65.711673, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[65.711675, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[65.71169, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[65.711691, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[65.711692, "o", "\u001b[?25h"] +[65.81209, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[65.812207, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m11.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[65.911958, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[65.911968, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.911974, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[65.911975, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n"] +[65.911977, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n"] +[65.911979, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m11.9s\u001b[0m\r\n"] +[65.911983, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m11.9s\u001b[0m\r\n"] +[65.911984, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m11.9s\u001b[0m\r\n"] +[65.911986, "o", "\u001b[?25h"] +[66.011935, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] +[66.011943, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[66.011979, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[66.011984, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[66.012002, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.0s\u001b[0m\r\n"] +[66.012006, "o", "\u001b[?25h"] +[66.111416, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] +[66.111423, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[66.111424, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[66.111426, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[66.111427, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[66.111429, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[66.111431, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[66.111432, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[66.111433, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[66.111435, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[66.111436, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[66.111437, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[66.111439, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[66.111469, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.1s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.1s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.1s\u001b[0m\r\n\u001b[?25h"] +[66.212972, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[66.213431, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.1s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.2s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.2s\u001b[0m\r\n\u001b[?25h"] +[66.312035, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] +[66.312052, "o", "0m\r\n"] +[66.312095, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.1s\u001b[0m\r\n"] +[66.312099, "o", " \u001b[33m⠦\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.3s\u001b[0m\r\n"] +[66.312115, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.3s\u001b[0m\r\n\u001b[?25h"] +[66.383269, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 17/17\r\n"] +[66.383354, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] +[66.383359, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] +[66.383385, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mStarted\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.3s\u001b[0m\r\n\u001b[?25h"] +[67.052833, "o", "\u001b[30;43mNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information.\u001b[39;49m\r\n\u001b[32mLoading composer repositories with package information\u001b[39m\r\n"] +[76.665592, "o", "\u001b[32mUpdating dependencies\u001b[39m\r\n"] +[76.944949, "o", "\u001b[32mLock file operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n"] +[76.945447, "o", " - Locking \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m)\r\n - Locking \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n - Locking \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n - Locking \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n - Locking \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n - Locking \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n - Locking \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n - Locking \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n"] +[76.946333, "o", " - Locking \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m)\r\n - Locking \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n - Locking \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m)\r\n - Locking \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n - Locking \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n - Locking \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m)\r\n - Locking \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m)\r\n - Locking \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n - Locking \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m)\r\n - Locking \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m)\r\n - Locking \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n - Locking \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n - Locking \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n - Locking \u001b[32mdantleech/"] +[76.946346, "o", "invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n - Locking \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m)\r\n - Locking \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m)\r\n - Locking \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m)\r\n - Locking \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n - Locking \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n - Locking \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Locking \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n - Locking \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n - Locking \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n - Locking \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n - Locking \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n - Locking \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n"] +[76.946396, "o", " - Locking \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n - Locking \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m)\r\n - Locking \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n - Locking \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n - Locking \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n"] +[76.946484, "o", " - Locking \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n"] +[76.946754, "o", " - Locking \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n"] +[76.948312, "o", " - Locking \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m)\r\n - Locking \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m)\r\n - Locking \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m)\r\n - Locking \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n - Locking \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n - Locking \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m)\r\n - Locking \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b"] +[76.94832, "o", "[39m)\r\n - Locking \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m)\r\n - Locking \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n - Locking \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n - Locking \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n - Locking \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n - Locking \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Locking \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n - Locking \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m)\r\n - Locking \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n - Locking \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m)\r\n - Locking \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m)\r\n - Locking \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m)\r\n - Locki"] +[76.948333, "o", "ng \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m)\r\n - Locking \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m)\r\n - Locking \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m)\r\n - Locking \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n - Locking \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n - Locking \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n - Locking \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m)\r\n - Locking \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m)\r\n - Locking \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m)\r\n - Locking \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m)\r\n - Locking \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n - Locking \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n - Locking \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n - Locking \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m)\r\n - Locking \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n - Locking \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m)\r\n - Locking \u001b[32mpear/console_getopt\u001b[39m (\u001b["] +[76.948359, "o", "33mv1.4.3\u001b[39m)\r\n - Locking \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m)\r\n - Locking \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m)\r\n - Locking \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n - Locking \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n - Locking \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n - Locking \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n - Locking \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m)\r\n - Locking \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n - Locking \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n - Locking \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n - Locking \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n - Locking \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m)\r\n - Locking \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n - Locking \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n - Locking \u001b[32mphps"] +[76.948375, "o", "tan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n - Locking \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n - Locking \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n - Locking \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n - Locking \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m)\r\n - Locking \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n - Locking \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n - Locking \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n - Locking \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m)\r\n - Locking \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m)\r\n - Locking \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n - Locking"] +[76.948387, "o", " \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m)\r\n - Locking \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n - Locking \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n - Locking \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n - Locking \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m)\r\n - Locking \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n - Locking \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] +[76.949255, "o", " - Locking \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n - Locking \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m)\r\n - Locking \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n - Locking \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n - Locking \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n - Locking \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n - Locking \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n - Locking \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n - Locking \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n - Locking \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n - Locking \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0."] +[76.94927, "o", "10.0\u001b[39m)\r\n - Locking \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m)\r\n - Locking \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n - Locking \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n - Locking \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n - Locking \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n - Locking \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n - Locking \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n - Locking \u001b[32msymfony/http-client\u001b"] +[76.949306, "o", "[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m)"] +[76.949328, "o", "\r\n - Locking \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n"] +[76.949447, "o", " - Locking \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n"] +[76.950286, "o", " - Locking \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n - Locking \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m)\r\n - Locking \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n - Locking \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n - Locking \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n - Locking \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n - Locking \u001b[32mvincentlanglet/twig"] +[76.950314, "o", "-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n - Locking \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n - Locking \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n"] +[76.955824, "o", "\u001b[32mWriting lock file\u001b[39m\r\n\u001b[32mInstalling dependencies from lock file (including require-dev)\u001b[39m\r\n"] +[76.966052, "o", "\u001b[32mPackage operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n"] +[76.977046, "o", " - Installing \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[77.026581, "o", " - Installing \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[77.1039, "o", " - Downloading \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n"] +[77.104962, "o", " - Downloading \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n"] +[77.105843, "o", " - Downloading \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n"] +[77.112897, "o", " - Downloading \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n"] +[77.114338, "o", " - Downloading \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n"] +[77.115523, "o", " - Downloading \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n"] +[77.11626, "o", " - Downloading \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n"] +[77.11705, "o", " - Downloading \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n"] +[77.117711, "o", " - Downloading \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n"] +[77.118416, "o", " - Downloading \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n"] +[77.119544, "o", " - Downloading \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n"] +[77.120351, "o", " - Downloading \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n"] +[77.124307, "o", " - Downloading \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n"] +[77.124873, "o", " - Downloading \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n"] +[77.163145, "o", " - Downloading \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] +[77.163877, "o", " - Downloading \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n"] +[77.164378, "o", " - Downloading \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n"] +[77.164835, "o", " - Downloading \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n"] +[77.165481, "o", " - Downloading \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n"] +[77.182605, "o", " - Downloading \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] +[77.197088, "o", " - Downloading \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] +[77.205619, "o", " - Downloading \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n"] +[77.206385, "o", " - Downloading \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n"] +[77.207282, "o", " - Downloading \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n"] +[77.210317, "o", " - Downloading \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n"] +[77.210884, "o", " - Downloading \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] +[77.211426, "o", " - Downloading \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n"] +[77.21176, "o", " - Downloading \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n"] +[77.212493, "o", " - Downloading \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n"] +[77.212976, "o", " - Downloading \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n"] +[77.213423, "o", " - Downloading \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n"] +[77.213803, "o", " - Downloading \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n"] +[77.385573, "o", " - Downloading \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n"] +[77.386309, "o", " - Downloading \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n"] +[77.387407, "o", " - Downloading \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n"] +[77.388163, "o", " - Downloading \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n"] +[77.412434, "o", " - Downloading \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n"] +[77.413093, "o", " - Downloading \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n"] +[77.413619, "o", " - Downloading \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n"] +[77.414008, "o", " - Downloading \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n"] +[77.41438, "o", " - Downloading \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n"] +[77.414745, "o", " - Downloading \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n"] +[77.415237, "o", " - Downloading \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n"] +[77.606862, "o", " - Downloading \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n"] +[77.607491, "o", " - Downloading \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n"] +[77.608258, "o", " - Downloading \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n"] +[77.608938, "o", " - Downloading \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n"] +[77.610051, "o", " - Downloading \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n"] +[77.610942, "o", " - Downloading \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n"] +[77.612218, "o", " - Downloading \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n"] +[77.612977, "o", " - Downloading \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n"] +[77.613825, "o", " - Downloading \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n"] +[77.614346, "o", " - Downloading \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] +[77.614845, "o", " - Downloading \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n"] +[77.615554, "o", " - Downloading \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n"] +[77.616197, "o", " - Downloading \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n"] +[77.616714, "o", " - Downloading \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n"] +[77.617262, "o", " - Downloading \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n"] +[77.618553, "o", " - Downloading \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] +[77.619286, "o", " - Downloading \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n"] +[77.62006, "o", " - Downloading \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n"] +[77.621266, "o", " - Downloading \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n"] +[77.622319, "o", " - Downloading \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n"] +[77.62302, "o", " - Downloading \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n"] +[77.623656, "o", " - Downloading \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] +[77.624313, "o", " - Downloading \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n"] +[77.625218, "o", " - Downloading \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n"] +[77.625864, "o", " - Downloading \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] +[77.626453, "o", " - Downloading \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n"] +[77.627096, "o", " - Downloading \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n"] +[77.628056, "o", " - Downloading \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n"] +[77.628896, "o", " - Downloading \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n"] +[77.629804, "o", " - Downloading \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] +[77.630312, "o", " - Downloading \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] +[77.631011, "o", " - Downloading \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n"] +[77.631793, "o", " - Downloading \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n"] +[77.632455, "o", " - Downloading \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n"] +[77.633272, "o", " - Downloading \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n"] +[77.634035, "o", " - Downloading \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n"] +[77.635185, "o", " - Downloading \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n"] +[77.636086, "o", " - Downloading \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n"] +[77.637113, "o", " - Downloading \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m)\r\n"] +[77.63817, "o", " - Downloading \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n"] +[77.644001, "o", " 0/83 [>---------------------------] 0%"] +[78.505018, "o", "\u001b[1G\u001b[2K 10/83 [===>------------------------] 12%"] +[79.010285, "o", "\u001b[1G\u001b[2K 17/83 [=====>----------------------] 20%"] +[79.602732, "o", "\u001b[1G\u001b[2K 26/83 [========>-------------------] 31%"] +[79.91189, "o", "\u001b[1G\u001b[2K 34/83 [===========>----------------] 40%"] +[80.402506, "o", "\u001b[1G\u001b[2K 45/83 [===============>------------] 54%"] +[80.936282, "o", "\u001b[1G\u001b[2K 50/83 [================>-----------] 60%"] +[81.495535, "o", "\u001b[1G\u001b[2K 60/83 [====================>-------] 72%"] +[81.619842, "o", "\u001b[1G\u001b[2K 67/83 [======================>-----] 80%"] +[82.416967, "o", "\u001b[1G\u001b[2K 76/83 [=========================>--] 91%"] +[82.670003, "o", "\u001b[1G\u001b[2K 83/83 [============================] 100%\u001b[1G\u001b[2K"] +[82.670695, "o", "\u001b[30;43mpatches.lock.json does not exist. Creating a new patches.lock.json.\u001b[39;49m\r\n"] +[82.679123, "o", " - \u001b[32mResolving patches from dependencies.\u001b[39m\r\n"] +[82.681697, "o", " - Installing \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] +[82.763675, "o", " - Installing \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] +[82.804234, "o", " - Installing \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] +[82.851302, "o", " - Installing \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m): Extracting archive\r\n"] +[82.957767, "o", " - Installing \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] +[83.416903, "o", " - Installing \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m): Extracting archive\r\n"] +[83.437931, "o", " - Installing \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m): Extracting archive\r\n"] +[83.439919, "o", " - Installing \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m): Extracting archive\r\n"] +[83.441503, "o", " - Installing \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m): Extracting archive\r\n"] +[83.443391, "o", " - Installing \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m): Extracting archive\r\n"] +[83.445228, "o", " - Installing \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m): Extracting archive\r\n"] +[83.447468, "o", " - Installing \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] +[83.449919, "o", " - Installing \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m): Extracting archive\r\n"] +[83.453124, "o", " - Installing \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m): Extracting archive\r\n"] +[83.456793, "o", " 0/8 [>---------------------------] 0%"] +[83.560835, "o", "\u001b[1G\u001b[2K 7/8 [========================>---] 87%"] +[83.631437, "o", "\u001b[1G\u001b[2K 8/8 [============================] 100%\u001b[1G\u001b[2K"] +[83.632008, "o", " - Installing \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m): Extracting archive\r\n"] +[83.668965, "o", " - Installing \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m): Extracting archive\r\n"] +[84.168653, "o", " - Installing \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m): Extracting archive\r\n"] +[84.187271, "o", " - Installing \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] +[84.188273, "o", " - Installing \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m): Extracting archive\r\n"] +[84.189503, "o", " - Installing \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m): Extracting archive\r\n"] +[84.190848, "o", " - Installing \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] +[84.193116, "o", " - Installing \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m): Extracting archive\r\n"] +[84.195477, "o", " - Installing \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m): Extracting archive\r\n"] +[84.198139, "o", " - Installing \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] +[84.201208, "o", " - Installing \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] +[84.203997, "o", " - Installing \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[84.20827, "o", " - Installing \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[84.211501, "o", " - Installing \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] +[84.214587, "o", " - Installing \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[84.218203, "o", " - Installing \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.221967, "o", " - Installing \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m): Extracting archive\r\n"] +[84.225684, "o", " - Installing \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] +[84.229425, "o", " - Installing \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[84.232662, "o", " - Installing \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[84.236651, "o", " - Installing \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m): Extracting archive\r\n"] +[84.239067, "o", " - Installing \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m): Extracting archive\r\n"] +[84.241854, "o", " - Installing \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m): Extracting archive\r\n"] +[84.244477, "o", " - Installing \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] +[84.247511, "o", " - Installing \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m): Extracting archive\r\n"] +[84.249734, "o", " - Installing \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] +[84.251603, "o", " - Installing \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m): Extracting archive\r\n"] +[84.253734, "o", " - Installing \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] +[84.256119, "o", " - Installing \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[84.258288, "o", " - Installing \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[84.259889, "o", " - Installing \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.261803, "o", " - Installing \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] +[84.263513, "o", " - Installing \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[84.26543, "o", " - Installing \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[84.266882, "o", " - Installing \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.268166, "o", " - Installing \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.269482, "o", " - Installing \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.271161, "o", " - Installing \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m): Extracting archive\r\n"] +[84.272974, "o", " - Installing \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m): Extracting archive\r\n"] +[84.274243, "o", " - Installing \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m): Extracting archive\r\n"] +[84.276115, "o", " - Installing \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m): Extracting archive\r\n"] +[84.277906, "o", " - Installing \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] +[84.279751, "o", " - Installing \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[84.281136, "o", " - Installing \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.282393, "o", " - Installing \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m): Extracting archive\r\n"] +[84.283231, "o", " - Installing \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m): Extracting archive\r\n"] +[84.284201, "o", " - Installing \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m): Extracting archive\r\n"] +[84.28534, "o", " - Installing \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m): Extracting archive\r\n"] +[84.286494, "o", " - Installing \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m): Extracting archive\r\n"] +[84.288823, "o", " - Installing \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] +[84.290098, "o", " - Installing \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m): Extracting archive\r\n"] +[84.291858, "o", " - Installing \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] +[84.293013, "o", " - Installing \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] +[84.294127, "o", " - Installing \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.295837, "o", " - Installing \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] +[84.297004, "o", " - Installing \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.297969, "o", " - Installing \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] +[84.299474, "o", " - Installing \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.300599, "o", " - Installing \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[84.302228, "o", " - Installing \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.303802, "o", " - Installing \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m): Extracting archive\r\n"] +[84.304714, "o", " - Installing \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m): Extracting archive\r\n"] +[84.305863, "o", " - Installing \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m): Extracting archive\r\n"] +[84.307131, "o", " - Installing \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] +[84.308125, "o", " - Installing \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] +[84.30917, "o", " - Installing \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] +[84.311047, "o", " - Installing \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] +[84.31295, "o", " - Installing \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[84.314865, "o", " - Installing \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[84.316319, "o", " - Installing \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[84.317752, "o", " - Installing \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[84.318936, "o", " - Installing \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m): Extracting archive\r\n"] +[84.320205, "o", " - Installing \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m): Extracting archive\r\n"] +[84.322278, "o", " - Installing \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m): Extracting archive\r\n"] +[84.323732, "o", " - Installing \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m): Extracting archive\r\n"] +[84.324979, "o", " - Installing \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m): Extracting archive\r\n"] +[84.325971, "o", " - Installing \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m): Extracting archive\r\n"] +[84.327167, "o", " - Installing \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m): Extracting archive\r\n"] +[84.328713, "o", " - Installing \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m): Extracting archive\r\n"] +[84.329819, "o", " - Installing \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m): Extracting archive\r\n"] +[84.330734, "o", " - Installing \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] +[84.331653, "o", " - Installing \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] +[84.332611, "o", " - Installing \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m): Extracting archive\r\n"] +[84.333855, "o", " - Installing \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m): Extracting archive\r\n"] +[84.335051, "o", " - Installing \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] +[84.336244, "o", " - Installing \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m): Extracting archive\r\n"] +[84.337285, "o", " - Installing \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m): Extracting archive\r\n"] +[84.338451, "o", " - Installing \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m): Extracting archive\r\n"] +[84.339434, "o", " - Installing \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m): Extracting archive\r\n"] +[84.342228, "o", " - Installing \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] +[84.343441, "o", " - Installing \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] +[84.344745, "o", " - Installing \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m): Extracting archive\r\n"] +[84.345833, "o", " - Installing \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m): Extracting archive\r\n"] +[84.346829, "o", " - Installing \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m): Extracting archive\r\n"] +[84.348003, "o", " - Installing \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m): Extracting archive\r\n"] +[84.349124, "o", " - Installing \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m): Extracting archive\r\n"] +[84.350422, "o", " - Installing \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] +[84.35167, "o", " - Installing \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m): Extracting archive\r\n"] +[84.353697, "o", " - Installing \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n"] +[84.355688, "o", " - Installing \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m): Extracting archive\r\n"] +[84.356704, "o", " - Installing \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m): Extracting archive\r\n"] +[84.35768, "o", " - Installing \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] +[84.3586, "o", " - Installing \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m): Extracting archive\r\n"] +[84.359231, "o", " - Installing \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m): Extracting archive\r\n"] +[84.35986, "o", " - Installing \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m): Extracting archive\r\n"] +[84.360544, "o", " - Installing \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m): Extracting archive\r\n"] +[84.361146, "o", " - Installing \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m): Extracting archive\r\n"] +[84.361868, "o", " - Installing \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] +[84.36255, "o", " - Installing \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m): Extracting archive\r\n"] +[84.363812, "o", " - Installing \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] +[84.365026, "o", " - Installing \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m): Extracting archive\r\n"] +[84.366452, "o", " - Installing \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] +[84.368123, "o", " - Installing \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m): Extracting archive\r\n"] +[84.369832, "o", " - Installing \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m): Extracting archive\r\n"] +[84.371188, "o", " - Installing \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m): Extracting archive\r\n"] +[84.37238, "o", " - Installing \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m): Extracting archive\r\n"] +[84.373654, "o", " - Installing \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m): Extracting archive\r\n"] +[84.374815, "o", " - Installing \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m): Extracting archive\r\n"] +[84.376293, "o", " - Installing \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m): Extracting archive\r\n"] +[84.377601, "o", " - Installing \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] +[84.378991, "o", " - Installing \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] +[84.38091, "o", " - Installing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m): Extracting archive\r\n"] +[84.381813, "o", " - Installing \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m): Extracting archive\r\n"] +[84.382661, "o", " - Installing \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m): Extracting archive\r\n"] +[84.383435, "o", " - Installing \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m): Extracting archive\r\n"] +[84.384664, "o", " - Installing \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m): Extracting archive\r\n"] +[84.386005, "o", " - Installing \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m): Extracting archive\r\n"] +[84.386966, "o", " - Installing \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m): Extracting archive\r\n"] +[84.387758, "o", " - Installing \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m): Extracting archive\r\n"] +[84.388648, "o", " - Installing \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m): Extracting archive\r\n"] +[84.390292, "o", " - Installing \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] +[84.391866, "o", " - Installing \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m): Extracting archive\r\n"] +[84.39333, "o", " - Installing \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m): Extracting archive\r\n"] +[84.394595, "o", " - Installing \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m): Extracting archive\r\n"] +[84.395936, "o", " - Installing \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[84.397182, "o", " - Installing \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m): Extracting archive\r\n"] +[84.398091, "o", " - Installing \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m): Extracting archive\r\n"] +[84.398966, "o", " - Installing \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m): Extracting archive\r\n"] +[84.399793, "o", " - Installing \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] +[84.400786, "o", " - Installing \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] +[84.402704, "o", " - Installing \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] +[84.404787, "o", " - Installing \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m): Extracting archive\r\n"] +[84.406186, "o", " - Installing \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m): Extracting archive\r\n"] +[84.407324, "o", " - Installing \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] +[84.408509, "o", " - Installing \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] +[84.409557, "o", " - Installing \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] +[84.410379, "o", " - Installing \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m): Extracting archive\r\n"] +[84.411425, "o", " - Installing \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] +[84.412385, "o", " - Installing \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] +[84.413459, "o", " - Installing \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] +[84.414639, "o", " - Installing \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m): Extracting archive\r\n"] +[84.415683, "o", " - Installing \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m): Extracting archive\r\n"] +[84.416612, "o", " - Installing \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m): Extracting archive\r\n"] +[84.417788, "o", " - Installing \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m): Extracting archive\r\n"] +[84.418772, "o", " - Installing \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m): Extracting archive\r\n"] +[84.419611, "o", " - Installing \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m): Extracting archive\r\n"] +[84.420366, "o", " - Installing \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m): Extracting archive\r\n"] +[84.421077, "o", " - Installing \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m): Extracting archive\r\n"] +[84.421843, "o", " - Installing \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m): Extracting archive\r\n"] +[84.422731, "o", " - Installing \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m): Extracting archive\r\n"] +[84.423741, "o", " - Installing \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[84.42458, "o", " - Installing \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] +[84.425345, "o", " - Installing \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m): Extracting archive\r\n"] +[84.42622, "o", " - Installing \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m): Extracting archive\r\n"] +[84.427195, "o", " - Installing \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m): Extracting archive\r\n"] +[84.428012, "o", " - Installing \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] +[84.428749, "o", " - Installing \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] +[84.429519, "o", " - Installing \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m): Extracting archive\r\n"] +[84.430487, "o", " - Installing \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m): Extracting archive\r\n"] +[84.431371, "o", " - Installing \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m): Extracting archive\r\n"] +[84.432175, "o", " - Installing \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m): Extracting archive\r\n"] +[84.432911, "o", " - Installing \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m): Extracting archive\r\n"] +[84.43402, "o", " - Installing \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] +[84.43506, "o", " - Installing \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] +[84.435996, "o", " - Installing \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m): Extracting archive\r\n"] +[84.436866, "o", " - Installing \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] +[84.43762, "o", " - Installing \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m): Extracting archive\r\n"] +[84.438444, "o", " - Installing \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] +[84.439326, "o", " - Installing \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] +[84.440158, "o", " - Installing \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] +[84.440987, "o", " - Installing \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] +[84.441923, "o", " - Installing \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] +[84.442734, "o", " - Installing \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m): Extracting archive\r\n"] +[84.443415, "o", " - Installing \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] +[84.444427, "o", " - Installing \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m): Extracting archive\r\n"] +[84.445373, "o", " - Installing \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m): Extracting archive\r\n"] +[84.446318, "o", " - Installing \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m): Extracting archive\r\n"] +[84.44729, "o", " - Installing \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m): Extracting archive\r\n"] +[84.448624, "o", " - Installing \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m): Extracting archive\r\n"] +[84.449481, "o", " - Installing \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m): Extracting archive\r\n"] +[84.450286, "o", " - Installing \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m): Extracting archive\r\n"] +[84.473519, "o", " 0/187 [>---------------------------] 0%"] +[84.960561, "o", "\u001b[1G\u001b[2K 25/187 [===>------------------------] 13%"] +[85.490972, "o", "\u001b[1G"] +[85.491424, "o", "\u001b[2K 40/187 [=====>----------------------] 21%"] +[86.091363, "o", "\u001b[1G\u001b[2K 57/187 [========>-------------------] 30%"] +[86.797171, "o", "\u001b[1G\u001b[2K 79/187 [===========>----------------] 42%"] +[87.308793, "o", "\u001b[1G\u001b[2K 95/187 [==============>-------------] 50%"] +[88.096501, "o", "\u001b[1G\u001b[2K 114/187 [=================>----------] 60%"] +[88.950192, "o", "\u001b[1G\u001b[2K"] +[88.95023, "o", " 133/187 [===================>--------] 71%"] +[89.988987, "o", "\u001b[1G\u001b[2K 143/187 [=====================>------] 76%"] +[90.726717, "o", "\u001b[1G\u001b[2K 152/187 [======================>-----] 81%"] +[91.554151, "o", "\u001b[1G\u001b[2K 175/187 [==========================>-] 93%"] +[92.620195, "o", "\u001b[1G\u001b[2K 183/187 [===========================>] 97%"] +[93.620456, "o", "\u001b[1G\u001b[2K 184/187 [===========================>] 98%"] +[94.720518, "o", "\u001b[1G\u001b[2K 185/187 [===========================>] 98%"] +[97.229025, "o", "\u001b[1G\u001b[2K 186/187 [===========================>] 99%"] +[112.511404, "o", "\u001b[1G\u001b[2K 187/187 [============================] 100%\u001b[1G\u001b[2K"] +[113.082563, "o", "\u001b[32m27 package suggestions were added by new dependencies, use `composer suggest` to see details.\u001b[39m\r\n"] +[113.087088, "o", "\u001b[32mGenerating autoload files\u001b[39m\r\n"] +[114.079426, "o", "\u001b[32m110 packages you are using are looking for funding.\u001b[39m\r\n\u001b[32mUse the `composer fund` command to find out more!\u001b[39m\r\n"] +[114.091011, "o", "Scaffolding files for \u001b[33mdrupal/core\u001b[39m:\r\n - Skip \u001b[32m[web-root]/.htaccess\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] +[114.091428, "o", " - Skip \u001b[32m[web-root]/README.md\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.csslintrc\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/robots.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/update.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] +[114.09154, "o", " - Skip \u001b[32m[web-root]/INSTALL.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.eslintignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] +[114.091686, "o", " - Skip \u001b[32m[web-root]/.eslintrc.json\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.ht.router.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] +[114.09241, "o", " - Copy \u001b[32m[web-root]/sites/README.txt\u001b[39m from \u001b[32massets/scaffold/files/sites.README.txt\u001b[39m\r\n - Skip \u001b[32m[project-root]/.editorconfig\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/example.gitignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] +[114.093262, "o", " - Copy \u001b[32m[web-root]/themes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/themes.README.txt\u001b[39m\r\n - Skip \u001b[32m[project-root]/.gitattributes\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] +[114.093944, "o", " - Copy \u001b[32m[web-root]/modules/README.txt\u001b[39m from \u001b[32massets/scaffold/files/modules.README.txt\u001b[39m\r\n"] +[114.094909, "o", " - Copy \u001b[32m[web-root]/profiles/README.txt\u001b[39m from \u001b[32massets/scaffold/files/profiles.README.txt\u001b[39m\r\n"] +[114.095682, "o", " - Copy \u001b[32m[project-root]/recipes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/recipes.README.txt\u001b[39m\r\n - Skip \u001b[32m[web-root]/sites/example.sites.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] +[114.096303, "o", " - Copy \u001b[32m[web-root]/sites/development.services.yml\u001b[39m from \u001b[32massets/scaffold/files/development.services.yml\u001b[39m\r\n - Skip \u001b[32m[web-root]/sites/example.settings.local.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] +[114.497821, "o", "PHP CodeSniffer Config \u001b[32minstalled_paths\u001b[39m \u001b[33mset to\u001b[39m \u001b[32m../../drevops/phpcs-standard/src,../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,../../phpcsstandards/phpcsutils,../../sirbrillig/phpcs-variable-analysis,../../slevomat/coding-standard\u001b[39m\r\n"] +[114.499817, "o", "\u001b[32mphpstan/extension-installer:\u001b[39m Extensions installed\r\n> \u001b[32mcomposer/pcre:\u001b[39m installed\r\n> \u001b[32mmglaman/phpstan-drupal:\u001b[39m installed\r\n> \u001b[32mphpstan/phpstan-deprecation-rules:\u001b[39m installed\r\n"] +[114.507021, "o", "\u001b[32mChangelogs summary:\u001b[39m\r\n\r\n - \u001b[32mpyrech/composer-changelogs\u001b[39m installed in version \u001b[33mv2.2.0\u001b[39m\r\n Release notes: https://github.com/pyrech/composer-changelogs/releases/tag/v2.2.0\r\n\r\n - \u001b[32msquizlabs/php_codesniffer\u001b[39m installed in version \u001b[33m4.0.4\u001b[39m\r\n Release notes: https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/tag/4.0.4\r\n\r\n - \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m installed in version \u001b[33mv1.2.1\u001b[39m\r\n Release notes: https://github.com/PHPCSStandards/composer-installer/releases/tag/v1.2.1\r\n\r\n - \u001b[32mmarc-mabe/php-enum\u001b[39m installed in version \u001b[33mv4.7.2\u001b[39m\r\n Release notes: https://github.com/marc-mabe/php-enum/releases/tag/v4.7.2\r\n\r\n - \u001b[32mjustinrainbow/json-schema\u001b[39m installed in version \u001b[33m6.8.2\u001b[39m\r\n Release notes: https://github.com/jsonrainbow/json-schema/releases/tag/6.8.2\r\n\r\n - \u001b[32mlocalheinz/diff\u001b[39m installed in version \u001b[33m1.3.0\u001b[39m\r\n Release notes: https://github.com/localheinz/diff/releases/tag/1.3.0\r\n\r\n - \u001b[32mergeb"] +[114.507034, "o", "nis/json-printer\u001b[39m installed in version \u001b[33m3.8.1\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-printer/releases/tag/3.8.1\r\n\r\n - \u001b[32mergebnis/json-pointer\u001b[39m installed in version \u001b[33m3.8.0\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-pointer/releases/tag/3.8.0\r\n\r\n - \u001b[32mergebnis/json\u001b[39m installed in version \u001b[33m1.6.0\u001b[39m\r\n Release notes: https://github.com/ergebnis/json/releases/tag/1.6.0\r\n\r\n - \u001b[32mergebnis/json-schema-validator\u001b[39m installed in version \u001b[33m4.5.1\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-schema-validator/releases/tag/4.5.1\r\n\r\n - \u001b[32mergebnis/json-normalizer\u001b[39m installed in version \u001b[33m4.10.1\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-normalizer/releases/tag/4.10.1\r\n\r\n - \u001b[32mergebnis/composer-normalize\u001b[39m installed in version \u001b[33m2.52.0\u001b[39m\r\n Release notes: https://github.com/ergebnis/composer-normalize/releases/tag/2.52.0\r\n\r\n - \u001b[32mphpstan/phpstan\u001b[39m installed in version \u001b[33m2.2.8\u001b[39m\r\n\r\n - \u001b[32mphpstan/exte"] +[114.507073, "o", "nsion-installer\u001b[39m installed in version \u001b[33m1.4.3\u001b[39m\r\n Release notes: https://github.com/phpstan/extension-installer/releases/tag/1.4.3\r\n\r\n - \u001b[32mpsr/log\u001b[39m installed in version \u001b[33m3.0.2\u001b[39m\r\n Release notes: https://github.com/php-fig/log/releases/tag/3.0.2\r\n\r\n - \u001b[32mcomposer/pcre\u001b[39m installed in version \u001b[33m3.4.0\u001b[39m\r\n Release notes: https://github.com/composer/pcre/releases/tag/3.4.0\r\n\r\n - \u001b[32mcomposer/xdebug-handler\u001b[39m installed in version \u001b[33m3.0.5\u001b[39m\r\n Release notes: https://github.com/composer/xdebug-handler/releases/tag/3.0.5\r\n\r\n - \u001b[32msymfony/polyfill-iconv\u001b[39m installed in version \u001b[33mv1.37.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-iconv/releases/tag/v1.37.0\r\n\r\n - \u001b[32msymfony/polyfill-mbstring\u001b[39m installed in version \u001b[33mv1.38.2\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-mbstring/releases/tag/v1.38.2\r\n\r\n - \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m installed in version \u001b[33mv1.38.0\u001b[39m\r\n Release notes: https://github.com/sym"] +[114.50713, "o", "fony/polyfill-intl-normalizer/releases/tag/v1.38.0\r\n\r\n - \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-intl-grapheme/releases/tag/v1.41.0\r\n\r\n - \u001b[32msymfony/polyfill-ctype\u001b[39m installed in version \u001b[33mv1.37.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-ctype/releases/tag/v1.37.0\r\n\r\n - \u001b[32msymfony/deprecation-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/deprecation-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/string\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/string/releases/tag/v7.4.15\r\n\r\n - \u001b[32mpsr/container\u001b[39m installed in version \u001b[33m2.0.2\u001b[39m\r\n Release notes: https://github.com/php-fig/container/releases/tag/2.0.2\r\n\r\n - \u001b[32msymfony/service-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/service-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymf"] +[114.507153, "o", "ony/console\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/console/releases/tag/v7.4.16\r\n\r\n - \u001b[32mconsolidation/log\u001b[39m installed in version \u001b[33m3.1.2\u001b[39m\r\n Release notes: https://github.com/consolidation/log/releases/tag/3.1.2\r\n\r\n - \u001b[32msymfony/finder\u001b[39m installed in version \u001b[33mv7.4.14\u001b[39m\r\n Release notes: https://github.com/symfony/finder/releases/tag/v7.4.14\r\n\r\n - \u001b[32msymfony/filesystem\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/filesystem/releases/tag/v7.4.15\r\n\r\n - \u001b[32mdantleech/invoke\u001b[39m installed in version \u001b[33m2.0.0\u001b[39m\r\n Release notes: https://github.com/dantleech/invoke/releases/tag/2.0.0\r\n\r\n - \u001b[32mcucumber/messages\u001b[39m installed in version \u001b[33mv19.1.4\u001b[39m\r\n Release notes: https://github.com/cucumber/messages-php/releases/tag/v19.1.4\r\n\r\n - \u001b[32mcucumber/gherkin\u001b[39m installed in version \u001b[33mv24.1.0\u001b[39m\r\n Release notes: https://github.com/cucumber/gherkin-php/releases/tag/v24.1.0\r\n"] +[114.507168, "o", "\r\n - \u001b[32mdantleech/gherkin-lint\u001b[39m installed in version \u001b[33m0.2.4\u001b[39m\r\n Release notes: https://github.com/dantleech/gherkin-lint-php/releases/tag/0.2.4\r\n\r\n - \u001b[32mdoctrine/instantiator\u001b[39m installed in version \u001b[33m2.1.0\u001b[39m\r\n Release notes: https://github.com/doctrine/instantiator/releases/tag/2.1.0\r\n\r\n - \u001b[32mpsr/cache\u001b[39m installed in version \u001b[33m3.0.0\u001b[39m\r\n Release notes: https://github.com/php-fig/cache/releases/tag/3.0.0\r\n\r\n - \u001b[32mdoctrine/event-manager\u001b[39m installed in version \u001b[33m2.1.1\u001b[39m\r\n Release notes: https://github.com/doctrine/event-manager/releases/tag/2.1.1\r\n\r\n - \u001b[32mdoctrine/deprecations\u001b[39m installed in version \u001b[33m1.1.6\u001b[39m\r\n Release notes: https://github.com/doctrine/deprecations/releases/tag/1.1.6\r\n\r\n - \u001b[32mdoctrine/persistence\u001b[39m installed in version \u001b[33m4.2.0\u001b[39m\r\n Release notes: https://github.com/doctrine/persistence/releases/tag/4.2.0\r\n\r\n - \u001b[32msymfony/yaml\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/y"] +[114.507182, "o", "aml/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/translation-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/translation-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/translation\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/translation/releases/tag/v7.4.16\r\n\r\n - \u001b[32mpsr/event-dispatcher\u001b[39m installed in version \u001b[33m1.0.0\u001b[39m\r\n Release notes: https://github.com/php-fig/event-dispatcher/releases/tag/1.0.0\r\n\r\n - \u001b[32msymfony/event-dispatcher-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/event-dispatcher-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/event-dispatcher\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/event-dispatcher/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/var-exporter\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/var-exporter/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymf"] +[114.507196, "o", "ony/dependency-injection\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/dependency-injection/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/config\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/config/releases/tag/v7.4.16\r\n\r\n - \u001b[32mnikic/php-parser\u001b[39m installed in version \u001b[33mv5.8.0\u001b[39m\r\n Release notes: https://github.com/nikic/PHP-Parser/releases/tag/v5.8.0\r\n\r\n - \u001b[32mbehat/gherkin\u001b[39m installed in version \u001b[33mv4.17.0\u001b[39m\r\n Release notes: https://github.com/Behat/Gherkin/releases/tag/v4.17.0\r\n\r\n - \u001b[32mbehat/behat\u001b[39m installed in version \u001b[33mv3.32.0\u001b[39m\r\n Release notes: https://github.com/Behat/Behat/releases/tag/v3.32.0\r\n\r\n - \u001b[32mdrevops/behat-format-progress-fail\u001b[39m installed in version \u001b[33m1.5.1\u001b[39m\r\n Release notes: https://github.com/drevops/behat-format-progress-fail/releases/tag/1.5.1\r\n\r\n - \u001b[32msymfony/polyfill-php83\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/s"] +[114.507199, "o", "ymfony/polyfill-php83/releases/tag/v1.41.0\r\n\r\n - \u001b[32msymfony/http-client-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github."] +[114.507214, "o", "com/symfony/http-client-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/http-client\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/http-client/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/css-selector\u001b[39m installed in version \u001b[33mv7.4.9\u001b[39m\r\n Release notes: https://github.com/symfony/css-selector/releases/tag/v7.4.9\r\n\r\n - \u001b[32mbehat/mink\u001b[39m installed in version \u001b[33mv1.13.0\u001b[39m\r\n Release notes: https://github.com/minkphp/Mink/releases/tag/v1.13.0\r\n\r\n - \u001b[32mfriends-of-behat/mink-extension\u001b[39m installed in version \u001b[33mv2.7.5\u001b[39m\r\n Release notes: https://github.com/FriendsOfBehat/MinkExtension/releases/tag/v2.7.5\r\n\r\n - \u001b[32mdrevops/behat-screenshot\u001b[39m installed in version \u001b[33m2.6.0\u001b[39m\r\n Release notes: https://github.com/drevops/behat-screenshot/releases/tag/2.6.0\r\n\r\n - \u001b[32mdrevops/behat-steps\u001b[39m installed in version \u001b[33m3.14.1\u001b[39m\r\n Release notes: https://github.com/drevops/behat-steps/releases/tag/3.14.1\r\n\r\n - \u001b[32mdrevops/phpcs-standard\u001b[39m "] +[114.507251, "o", "installed in version \u001b[33m1.0.0\u001b[39m\r\n Release notes: https://github.com/drevops/phpcs-standard/releases/tag/1.0.0\r\n\r\n - \u001b[32mdrevops/vortex-tooling\u001b[39m installed in version \u001b[33m1.4.0\u001b[39m\r\n Release notes: https://github.com/drevops/vortex-tooling/releases/tag/1.4.0\r\n\r\n - \u001b[32mtwig/twig\u001b[39m installed in version \u001b[33mv3.28.0\u001b[39m\r\n Release notes: https://github.com/twigphp/Twig/releases/tag/v3.28.0\r\n\r\n - \u001b[32msymfony/polyfill-intl-idn\u001b[39m installed in version \u001b[33mv1.38.1\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-intl-idn/releases/tag/v1.38.1\r\n\r\n - \u001b[32msymfony/mime\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/mime/releases/tag/v7.4.16\r\n\r\n - \u001b[32mtwig/html-extra\u001b[39m installed in version \u001b[33mv3.28.0\u001b[39m\r\n Release notes: https://github.com/twigphp/html-extra/releases/tag/v3.28.0\r\n\r\n - \u001b[32msymfony/validator\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/validator/releases/tag/v7.4.16\r\n\r\n - \u001b[3"] +[114.507284, "o", "2msymfony/polyfill-php84\u001b[39m installed in version \u001b[33mv1.38.1\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php84/releases/tag/v1.38.1\r\n\r\n - \u001b[32msymfony/serializer\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/serializer/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/routing\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/routing/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/http-foundation\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/http-foundation/releases/tag/v7.4.16\r\n\r\n - \u001b[32mpsr/http-message\u001b[39m installed in version \u001b[33m2.0\u001b[39m\r\n Release notes: https://github.com/php-fig/http-message/releases/tag/2.0\r\n\r\n - \u001b[32msymfony/psr-http-message-bridge\u001b[39m installed in version \u001b[33mv7.4.8\u001b[39m\r\n Release notes: https://github.com/symfony/psr-http-message-bridge/releases/tag/v7.4.8\r\n\r\n - \u001b[32msymfony/process\u001b[39m installed in version \u001b[33mv7.4.13\u001b[39m\r\n Release notes: htt"] +[114.507316, "o", "ps://github.com/symfony/process/releases/tag/v7.4.13\r\n\r\n - \u001b[32msymfony/polyfill-php86\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php86/releases/tag/v1.41.0\r\n\r\n - \u001b[32msymfony/polyfill-php85\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php85/releases/tag/v1.41.0\r\n\r\n - \u001b[32mdoctrine/lexer\u001b[39m installed in version \u001b[33m3.0.1\u001b[39m\r\n Release notes: https://github.com/doctrine/lexer/releases/tag/3.0.1\r\n\r\n - \u001b[32megulias/email-validator\u001b[39m installed in version \u001b[33m4.0.4\u001b[39m\r\n Release notes: https://github.com/egulias/EmailValidator/releases/tag/4.0.4\r\n\r\n - \u001b[32msymfony/mailer\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/mailer/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/var-dumper\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/var-dumper/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/error-handler\u001b[39m installed in version"] +[114.507338, "o", " \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/error-handler/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/http-kernel\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/http-kernel/releases/tag/v7.4.16\r\n\r\n - \u001b[32msebastian/diff\u001b[39m installed in version \u001b[33m6.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/diff/releases/tag/6.0.2\r\n\r\n - \u001b[32mrevolt/event-loop\u001b[39m installed in version \u001b[33mv1.0.9\u001b[39m\r\n Release notes: https://github.com/revoltphp/event-loop/releases/tag/v1.0.9\r\n\r\n - \u001b[32mphp-tuf/composer-stager\u001b[39m installed in version \u001b[33mv2.1.1\u001b[39m\r\n Release notes: https://github.com/php-tuf/composer-stager/releases/tag/v2.1.1\r\n\r\n - \u001b[32mpear/pear_exception\u001b[39m installed in version \u001b[33mv1.0.2\u001b[39m\r\n Release notes: https://github.com/pear/PEAR_Exception/releases/tag/v1.0.2\r\n\r\n - \u001b[32mpear/console_getopt\u001b[39m installed in version \u001b[33mv1.4.3\u001b[39m\r\n Release notes: https://github.com/pear/Console_Getopt/releases/tag/v1.4.3\r\n\r\n - \u001b"] +[114.507412, "o", "[32mpear/pear-core-minimal\u001b[39m installed in version \u001b[33mv1.10.18\u001b[39m\r\n Release notes: https://github.com/pear/pear-core-minimal/releases/tag/v1.10.18\r\n\r\n - \u001b[32mpear/archive_tar\u001b[39m installed in version \u001b[33m1.6.1\u001b[39m\r\n Release notes: https://github.com/pear/Archive_Tar/releases/tag/1.6.1\r\n\r\n - \u001b[32mmck89/peast\u001b[39m installed in version \u001b[33mv1.17.7\u001b[39m\r\n Release notes: https://github.com/mck89/peast/releases/tag/v1.17.7\r\n\r\n - \u001b[32mmasterminds/html5\u001b[39m installed in version \u001b[33m2.10.1\u001b[39m\r\n Release notes: https://github.com/Masterminds/html5-php/releases/tag/2.10.1\r\n\r\n - \u001b[32msymfony/polyfill-php80\u001b[39m installed in version \u001b[33mv1.37.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php80/releases/tag/v1.37.0\r\n\r\n - \u001b[32mralouphie/getallheaders\u001b[39m installed in version \u001b[33m3.0.3\u001b[39m\r\n Release notes: https://github.com/ralouphie/getallheaders/releases/tag/3.0.3\r\n\r\n - \u001b[32mpsr/http-factory\u001b[39m installed in version \u001b[33m1.1.0\u001b[39m\r\n Release notes: https://github.com/php-fig/h"] +[114.507427, "o", "ttp-factory/releases/tag/1.1.0\r\n\r\n - \u001b[32mguzzlehttp/psr7\u001b[39m installed in version \u001b[33m2.13.0\u001b[39m\r\n Release notes: https://github.com/guzzle/psr7/releases/tag/2.13.0\r\n\r\n - \u001b[32mpsr/http-client\u001b[39m installed in version \u001b[33m1.0.3\u001b[39m\r\n Release notes: https://github.com/php-fig/http-client/releases/tag/1.0.3\r\n\r\n - \u001b[32mguzzlehttp/promises\u001b[39m installed in version \u001b[33m2.5.2\u001b[39m\r\n Release notes: https://github.com/guzzle/promises/releases/tag/2.5.2\r\n\r\n - \u001b[32mguzzlehttp/guzzle\u001b[39m installed in version \u001b[33m7.15.3\u001b[39m\r\n Release notes: https://github.com/guzzle/guzzle/releases/tag/7.15.3\r\n\r\n - \u001b[32mcomposer/semver\u001b[39m installed in version \u001b[33m3.4.4\u001b[39m\r\n Release notes: https://github.com/composer/semver/releases/tag/3.4.4\r\n\r\n - \u001b[32masm89/stack-cors\u001b[39m installed in version \u001b[33mv2.4.0\u001b[39m\r\n Release notes: https://github.com/asm89/stack-cors/releases/tag/v2.4.0\r\n\r\n - \u001b[32mdrupal/core\u001b[39m installed in version \u001b[33m11.4.5\u001b[39m\r\n Release notes: https://github.com/drupal/core/releases/tag/"] +[114.50744, "o", "11.4.5\r\n\r\n - \u001b[32mdrupal/clamav\u001b[39m installed in version \u001b[33m2.1.0\u001b[39m\r\n\r\n - \u001b[32mphpstan/phpdoc-parser\u001b[39m installed in version \u001b[33m2.3.3\u001b[39m\r\n Release notes: https://github.com/phpstan/phpdoc-parser/releases/tag/2.3.3\r\n\r\n - \u001b[32mslevomat/coding-standard\u001b[39m installed in version \u001b[33m8.31.1\u001b[39m\r\n Release notes: https://github.com/slevomat/coding-standard/releases/tag/8.31.1\r\n\r\n - \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m installed in version \u001b[33mv2.13.0\u001b[39m\r\n Release notes: https://github.com/sirbrillig/phpcs-variable-analysis/releases/tag/v2.13.0\r\n\r\n - \u001b[32mdrupal/coder\u001b[39m installed in version \u001b[33m9.0.1\u001b[39m\r\n Release notes: https://github.com/pfrenssen/coder/releases/tag/9.0.1\r\n\r\n - \u001b[32mdrupal/coffee\u001b[39m installed in version \u001b[33m2.0.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/config_split\u001b[39m installed in version \u001b[33m2.0.2\u001b[39m\r\n\r\n - \u001b[32mdrupal/config_update\u001b[39m installed in version \u001b[33m2.0.0-alpha4\u001b[39m\r\n\r\n - \u001b[32mdrupal/core-recommended\u001b[39m installed in version \u001b[33m11.4.5\u001b[39m\r\n Release "] +[114.507445, "o", "notes: https://github.com/drupal/core-recommended/releases/tag/11.4.5\r\n\r\n - \u001b[32mdoctrine/common\u001b[39m installed in version \u001b[33m3.5.0\u001b[39m\r\n Release notes: https://g"] +[114.507463, "o", "ithub.com/doctrine/common/releases/tag/3.5.0\r\n\r\n - \u001b[32mdrupal/devel\u001b[39m installed in version \u001b[33m5.5.0\u001b[39m\r\n\r\n - \u001b[32mwebflo/drupal-finder\u001b[39m installed in version \u001b[33m1.3.1\u001b[39m\r\n Release notes: https://github.com/webflo/drupal-finder/releases/tag/1.3.1\r\n\r\n - \u001b[32msymfony/dom-crawler\u001b[39m installed in version \u001b[33mv7.4.12\u001b[39m\r\n Release notes: https://github.com/symfony/dom-crawler/releases/tag/v7.4.12\r\n\r\n - \u001b[32mlullabot/php-webdriver\u001b[39m installed in version \u001b[33mv2.0.7\u001b[39m\r\n Release notes: https://github.com/Lullabot/php-webdriver/releases/tag/v2.0.7\r\n\r\n - \u001b[32mlullabot/mink-selenium2-driver\u001b[39m installed in version \u001b[33mv1.7.4\u001b[39m\r\n Release notes: https://github.com/Lullabot/MinkSelenium2Driver/releases/tag/v1.7.4\r\n\r\n - \u001b[32mdrupal/drupal-driver\u001b[39m installed in version \u001b[33mv3.3.1\u001b[39m\r\n Release notes: https://github.com/jhedstrom/DrupalDriver/releases/tag/v3.3.1\r\n\r\n - \u001b[32msymfony/browser-kit\u001b[39m installed in version \u001b[33mv8.1.1\u001b[39m\r\n Release notes: https://github.com/symfony/b"] +[114.507499, "o", "rowser-kit/releases/tag/v8.1.1\r\n\r\n - \u001b[32mbehat/mink-browserkit-driver\u001b[39m installed in version \u001b[33mv2.3.0\u001b[39m\r\n Release notes: https://github.com/minkphp/MinkBrowserKitDriver/releases/tag/v2.3.0\r\n\r\n - \u001b[32mdrupal/drupal-extension\u001b[39m installed in version \u001b[33mv6.1.0\u001b[39m\r\n Release notes: https://github.com/jhedstrom/drupalextension/releases/tag/v6.1.0\r\n\r\n - \u001b[32mdrupal/drupal_helpers\u001b[39m installed in version \u001b[33m2.1.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/environment_indicator\u001b[39m installed in version \u001b[33m4.0.25\u001b[39m\r\n\r\n - \u001b[32mdrupal/generated_content\u001b[39m installed in version \u001b[33m2.1.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/navigation_extra_tools\u001b[39m installed in version \u001b[33m1.3.2\u001b[39m\r\n\r\n - \u001b[32mdrupal/token\u001b[39m installed in version \u001b[33m1.17.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/ctools\u001b[39m installed in version \u001b[33m4.1.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/pathauto\u001b[39m installed in version \u001b[33m1.15.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/redirect\u001b[39m installed in version \u001b[33m1.13.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/redis\u001b[39m installed in version \u001b[33m1.11.0\u001b[39m\r\n"] +[114.507547, "o", "\r\n - \u001b[32mdrupal/reroute_email\u001b[39m installed in version \u001b[33m2.3.0-rc2\u001b[39m\r\n\r\n - \u001b[32mdrupal/robotstxt\u001b[39m installed in version \u001b[33m1.6.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/sdc_devel\u001b[39m installed in version \u001b[33m1.0.3\u001b[39m\r\n\r\n - \u001b[32mhalaxa/json-machine\u001b[39m installed in version \u001b[33m1.2.6\u001b[39m\r\n Release notes: https://github.com/halaxa/json-machine/releases/tag/1.2.6\r\n\r\n - \u001b[32msolarium/solarium\u001b[39m installed in version \u001b[33m7.0.0\u001b[39m\r\n Release notes: https://github.com/solariumphp/solarium/releases/tag/7.0.0\r\n\r\n - \u001b[32mmaennchen/zipstream-php\u001b[39m installed in version \u001b[33m3.2.2\u001b[39m\r\n Release notes: https://github.com/maennchen/ZipStream-PHP/releases/tag/3.2.2\r\n\r\n - \u001b[32mlaminas/laminas-stdlib\u001b[39m installed in version \u001b[33m3.21.0\u001b[39m\r\n Release notes: https://github.com/laminas/laminas-stdlib/releases/tag/3.21.0\r\n\r\n - \u001b[32mdrupal/search_api\u001b[39m installed in version \u001b[33m1.41.0\u001b[39m\r\n\r\n - \u001b[32mdflydev/dot-access-data\u001b[39m installed in version \u001b[33mv3.0.3\u001b[39m\r\n Release notes: https://github.com/dfly"] +[114.507574, "o", "dev/dflydev-dot-access-data/releases/tag/v3.0.3\r\n\r\n - \u001b[32mconsolidation/output-formatters\u001b[39m installed in version \u001b[33m4.7.1\u001b[39m\r\n Release notes: https://github.com/consolidation/output-formatters/releases/tag/4.7.1\r\n\r\n - \u001b[32mconsolidation/annotated-command\u001b[39m installed in version \u001b[33m4.10.5\u001b[39m\r\n Release notes: https://github.com/consolidation/annotated-command/releases/tag/4.10.5\r\n\r\n - \u001b[32mdrupal/search_api_solr\u001b[39m installed in version \u001b[33m4.4.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/seckit\u001b[39m installed in version \u001b[33m2.0.3\u001b[39m\r\n\r\n - \u001b[32mdrupal/shield\u001b[39m installed in version \u001b[33m1.8.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/stage_file_proxy\u001b[39m installed in version \u001b[33m4.0.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/testmode\u001b[39m installed in version \u001b[33m2.7.2\u001b[39m\r\n\r\n - \u001b[32mdrupal/xmlsitemap\u001b[39m installed in version \u001b[33m2.0.0\u001b[39m\r\n\r\n - \u001b[32mpsy/psysh\u001b[39m installed in version \u001b[33mv0.12.24\u001b[39m\r\n Release notes: https://github.com/bobthecow/psysh/releases/tag/v0.12.24\r\n\r\n - \u001b[32mleague/container\u001b[39m installed in version \u001b[3"] +[114.507599, "o", "3m4.2.5\u001b[39m\r\n Release notes: https://github.com/thephpleague/container/releases/tag/4.2."] +[114.507631, "o", "5\r\n\r\n - \u001b[32mlaravel/prompts\u001b[39m installed in version \u001b[33mv0.3.23\u001b[39m\r\n Release notes: https://github.com/laravel/prompts/releases/tag/v0.3.23\r\n\r\n - \u001b[32mgrasmash/yaml-cli\u001b[39m installed in version \u001b[33m3.2.1\u001b[39m\r\n Release notes: https://github.com/grasmash/yaml-cli/releases/tag/3.2.1\r\n\r\n - \u001b[32mgrasmash/expander\u001b[39m installed in version \u001b[33m3.0.1\u001b[39m\r\n Release notes: https://github.com/grasmash/expander/releases/tag/3.0.1\r\n\r\n - \u001b[32mconsolidation/config\u001b[39m installed in version \u001b[33m3.2.1\u001b[39m\r\n Release notes: https://github.com/consolidation/config/releases/tag/3.2.1\r\n\r\n - \u001b[32mconsolidation/site-alias\u001b[39m installed in version \u001b[33m4.1.3\u001b[39m\r\n Release notes: https://github.com/consolidation/site-alias/releases/tag/4.1.3\r\n\r\n - \u001b[32mconsolidation/site-process\u001b[39m installed in version \u001b[33m6.1.0\u001b[39m\r\n Release notes: https://github.com/consolidation/site-process/releases/tag/6.1.0\r\n\r\n - \u001b[32msymfony/polyfill-php81\u001b[39m installed in version \u001b[33mv1.38.1\u001b[39m\r\n Release notes: https://git"] +[114.507671, "o", "hub.com/symfony/polyfill-php81/releases/tag/v1.38.1\r\n\r\n - \u001b[32mphootwork/lang\u001b[39m installed in version \u001b[33mv3.2.3\u001b[39m\r\n Release notes: https://github.com/phootwork/lang/releases/tag/v3.2.3\r\n\r\n - \u001b[32mphootwork/collection\u001b[39m installed in version \u001b[33mv3.2.3\u001b[39m\r\n Release notes: https://github.com/phootwork/collection/releases/tag/v3.2.3\r\n\r\n - \u001b[32mphpowermove/docblock\u001b[39m installed in version \u001b[33mv4.0\u001b[39m\r\n Release notes: https://github.com/phpowermove/docblock/releases/tag/v4.0\r\n\r\n - \u001b[32mconsolidation/robo\u001b[39m installed in version \u001b[33m5.1.1\u001b[39m\r\n Release notes: https://github.com/consolidation/robo/releases/tag/5.1.1\r\n\r\n - \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m installed in version \u001b[33m2.0.3\u001b[39m\r\n Release notes: https://github.com/consolidation/filter-via-dot-access-data/releases/tag/2.0.3\r\n\r\n - \u001b[32mchi-teck/drupal-code-generator\u001b[39m installed in version \u001b[33m4.2.0\u001b[39m\r\n Release notes: https://github.com/Chi-teck/drupal-code-generator/releases/tag/4.2.0\r\n\r\n - \u001b[32mdru"] +[114.507695, "o", "sh/drush\u001b[39m installed in version \u001b[33m13.7.6\u001b[39m\r\n Release notes: https://github.com/drush-ops/drush/releases/tag/13.7.6\r\n\r\n - \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m installed in version \u001b[33m2.0.5\u001b[39m\r\n Release notes: https://github.com/phpstan/phpstan-deprecation-rules/releases/tag/2.0.5\r\n\r\n - \u001b[32mmglaman/phpstan-drupal\u001b[39m installed in version \u001b[33m2.1.2\u001b[39m\r\n Release notes: https://github.com/mglaman/phpstan-drupal/releases/tag/2.1.2\r\n\r\n - \u001b[32mmikey179/vfsstream\u001b[39m installed in version \u001b[33mv1.6.12\u001b[39m\r\n Release notes: https://github.com/bovigo/vfsStream/releases/tag/v1.6.12\r\n\r\n - \u001b[32mrector/rector\u001b[39m installed in version \u001b[33m2.6.3\u001b[39m\r\n Release notes: https://github.com/rectorphp/rector/releases/tag/2.6.3\r\n\r\n - \u001b[32mpalantirnet/drupal-rector\u001b[39m installed in version \u001b[33m1.1.2\u001b[39m\r\n Release notes: https://github.com/palantirnet/drupal-rector/releases/tag/1.1.2\r\n\r\n - \u001b[32mphpcsstandards/phpcsutils\u001b[39m installed in version \u001b[33m1.2.3\u001b[39m\r\n Release notes: https://githu"] +[114.507737, "o", "b.com/PHPCSStandards/PHPCSUtils/releases/tag/1.2.3\r\n\r\n - \u001b[32mphpcompatibility/php-compatibility\u001b[39m installed in version \u001b[33m10.0.0-alpha2\u001b[39m\r\n Release notes: https://github.com/PHPCompatibility/PHPCompatibility/releases/tag/10.0.0-alpha2\r\n\r\n - \u001b[32mwebmozart/assert\u001b[39m installed in version \u001b[33m2.4.1\u001b[39m\r\n Release notes: https://github.com/webmozarts/assert/releases/tag/2.4.1\r\n\r\n - \u001b[32mphpdocumentor/reflection-common\u001b[39m installed in version \u001b[33m2.2.0\u001b[39m\r\n Release notes: https://github.com/phpDocumentor/ReflectionCommon/releases/tag/2.2.0\r\n\r\n - \u001b[32mphpdocumentor/type-resolver\u001b[39m installed in version \u001b[33m2.0.0\u001b[39m\r\n Release notes: https://github.com/phpDocumentor/TypeResolver/releases/tag/2.0.0\r\n\r\n - \u001b[32mphpdocumentor/reflection-docblock\u001b[39m installed in version \u001b[33m6.0.3\u001b[39m\r\n Release notes: https://github.com/phpDocumentor/ReflectionDocBlock/releases/tag/6.0.3\r\n\r\n - \u001b[32mstaabm/side-effects-detector\u001b[39m installed in version \u001b[33m1.0.5\u001b[39m\r\n Release notes: https://github.co"] +[114.507771, "o", "m/staabm/side-effects-detector/releases/tag/1.0.5\r\n\r\n - \u001b[32msebastian/version\u001b[39m installed in version \u001b[33m5.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/version/releases/tag/5.0.2\r\n\r\n - \u001b[32msebastian/type\u001b[39m installed in version \u001b[33m5.1.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/type/releases/tag/5.1.3\r\n\r\n - \u001b[32msebastian/recursion-context\u001b[39m installed in version \u001b[33m6.0.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/recursion-context/releases/tag/6.0.3\r\n\r\n - \u001b[32msebastian/object-reflector\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/object-reflector/releases/tag/4.0.1\r\n\r\n - \u001b[32msebastian/object-enumerator\u001b[39m installed in version \u001b[33m6.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/object-enumerator/releases/tag/6.0.1\r\n\r\n - \u001b[32msebastian/global-state\u001b[39m installed in version \u001b[33m7.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/global-state/release"] +[114.507809, "o", "s/tag/7.0.2\r\n\r\n - \u001b[32msebastian/exporter\u001b[39m installed in version \u001b[33m6.3.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/exporter/releases/tag/6.3.2\r\n\r\n - \u001b[32msebastian/environment\u001b[39m installed in version \u001b[33m7.2.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/environment/releases/tag/7.2.1\r\n\r\n - \u001b[32msebastian/comparator\u001b[39m installed in version \u001b[33m6.3.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/comparator/releases/tag/6.3.3\r\n\r\n - \u001b[32msebastian/code-unit\u001b[39m installed in version \u001b[33m3.0.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/code-unit/releases/tag/3.0.3\r\n\r\n - \u001b[32msebastian/cli-parser\u001b[39m installed in version \u001b[33m3.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/cli-parser/releases/tag/3.0.2\r\n\r\n - \u001b[32mphpunit/php-timer\u001b[39m installed in version \u001b[33m7.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-timer/releases/tag/7.0.1\r\n\r\n - \u001b[32mphpunit/php-text-template\u001b[39m installed in versi"] +[114.507862, "o", "on \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-text-template/releases/tag/4.0.1\r\n\r\n - \u001b[32mphpunit/php-invoker\u001b[39m installed in version \u001b[33m5.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-invoker/releases/tag/5.0.1\r\n\r\n - \u001b[32mphpunit/php-file-iterator\u001b[39m installed in version \u001b[33m5.1.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-file-iterator/releases/tag/5.1.1\r\n\r\n - \u001b[32mtheseer/tokenizer\u001b[39m installed in version \u001b[33m1.3.1\u001b[39m\r\n Release notes: https://github.com/theseer/tokenizer/releases/tag/1.3.1\r\n\r\n - \u001b[32msebastian/lines-of-code\u001b[39m installed in version \u001b[33m3.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/lines-of-code/releases/tag/3.0.1\r\n\r\n - \u001b[32msebastian/complexity\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/complexity/releases/tag/4.0.1\r\n\r\n - \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: h"] +[114.507907, "o", "ttps://github.com/sebastianbergmann/code-unit-reverse-lookup/releases/tag/4.0.1\r\n\r\n - \u001b[32mphpunit/php-code-coverage\u001b[39m installed in version \u001b[33m11.0.12\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-code-coverage/releases/tag/11.0.12\r\n\r\n - \u001b[32mphar-io/version\u001b[39m installed in version \u001b[33m3.2.1\u001b[39m\r\n Release notes: https://github.com/phar-io/version/releases/tag/3.2.1\r\n\r\n - \u001b[32mphar-io/manifest\u001b[39m installed in version \u001b[33m2.0.4\u001b[39m\r\n Release notes: https://github.com/phar-io/manifest/releases/tag/2.0.4\r\n\r\n - \u001b[32mmyclabs/deep-copy\u001b[39m installed in version \u001b[33m1.14.0\u001b[39m\r\n Release notes: https://github.com/myclabs/DeepCopy/releases/tag/1.14.0\r\n\r\n - \u001b[32mphpunit/phpunit\u001b[39m installed in version \u001b[33m11.5.56\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.56\r\n\r\n - \u001b[32mphpspec/prophecy\u001b[39m installed in version \u001b[33mv1.26.1\u001b[39m\r\n Release notes: https://github.com/phpspec/prophecy/releases/tag/v1.26.1\r\n\r\n - \u001b[32mphpspec/prophecy-php"] +[114.507928, "o", "unit\u001b[39m installed in version \u001b[33mv2.5.0\u001b[39m\r\n Release notes: https://github.com/phpspec/prophecy-phpunit/releases/tag/v2.5.0\r\n\r\n - \u001b[32msoftcreatr/jsonp"] +[116.286158, "o", "npm warn deprecated whatwg-encoding@2.0.0: Use @exodus/bytes instead for a more spec-conformant and faster implementation\r\n"] +[116.552242, "o", "npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] +[117.002547, "o", "npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\r\n"] +[117.178709, "o", "npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me\r\n"] +[117.568498, "o", "npm warn deprecated abab@2.0.6: Use your platform's native atob() and btoa() methods instead\r\n"] +[117.664232, "o", "npm warn deprecated domexception@4.0.0: Use your platform's native DOMException instead\r\n"] +[117.666453, "o", "npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] +[117.764056, "o", "npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] +[120.36231, "o", "npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.\r\n"] +[121.569223, "o", "ath\u001b[39m installed in version \u001b[33m0.10.0\u001b[39m\r\n Release notes: https://github.com/SoftCreatR/JSONPath/releases/tag/0.10.0\r\n\r\n - \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m installed in version \u001b[33m4.0.2\u001b[39m\r\n Release notes: https://github.com/VincentLanglet/Twig-CS-Fixer/releases/tag/4.0.2\r\n\r\n\r\nadded 611 packages, and audited 612 packages in 7s\r\n\r\n171 packages are looking for funding\r\n"] +[121.56952, "o", " run `npm fund` for details\r\n"] +[121.5702, "o", "\r\nfound 0 vulnerabilities\r\n"] +[123.446925, "o", "npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\r\n"] +[123.666594, "o", "npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] +[123.679409, "o", "npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] +[123.883556, "o", "npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me\r\n"] +[124.109962, "o", "npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported\r\n"] +[124.114326, "o", "npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] +[126.499591, "o", "npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.\r\n"] +[127.466294, "o", "\r\n> star_wars@1.0.0 postinstall\r\n> patch-package\r\n\r\n"] +[127.619081, "o", "No patch files found\r\npatch-package 6.5.1\r\nApplying patches...\r\n"] +[127.631743, "o", "\r\nadded 475 packages, and audited 476 packages in 6s\r\n\r\n169 packages are looking for funding\r\n run `npm fund` for details\r\n"] +[127.633928, "o", "\r\n2 vulnerabilities (1 low, 1 high)\r\n\r\nTo address all issues (including breaking changes), run:\r\n npm audit fix --force\r\n\r\nRun `npm audit` for details.\r\n"] +[127.96054, "o", "\r\n> star_wars@1.0.0 build\r\n> npm run clean && mkdir -p build/js && npm run concat && npm run uglify && npm run sass:prod && npm run postcss:prod && npm run copy\r\n\r\n"] +[128.045099, "o", "\r\n> star_wars@1.0.0 clean\r\n> rm -rf build\r\n\r\n"] +[128.135899, "o", "\r\n> star_wars@1.0.0 concat\r\n> find js -name '*.js' ! -name '*.min.js' -exec cat {} + > build/js/star_wars.min.js\r\n\r\n"] +[128.225823, "o", "\r\n> star_wars@1.0.0 uglify\r\n> terser build/js/star_wars.min.js -o build/js/star_wars.min.js -c drop_console=true -m reserved=['jQuery','Drupal'] 2>/dev/null || true\r\n\r\n"] +[128.394858, "o", "\r\n> star_wars@1.0.0 sass:prod\r\n> sass scss/styles.scss build/css/star_wars.min.css --no-source-map --style=compressed\r\n\r\n"] +[128.696347, "o", "\r\n> star_wars@1.0.0 postcss:prod\r\n> postcss build/css/star_wars.min.css -o build/css/star_wars.min.css --no-map\r\n\r\n"] +[129.140753, "o", "\r\n> star_wars@1.0.0 copy\r\n> npm run copy:images && npm run copy:fonts\r\n\r\n"] +[129.221722, "o", "\r\n> star_wars@1.0.0 copy:images\r\n> mkdir -p build/images && cp -r images/* build/images/ 2>/dev/null || true\r\n\r\n"] +[129.308458, "o", "\r\n> star_wars@1.0.0 copy:fonts\r\n> mkdir -p build/fonts && cp -r fonts/* build/fonts/ 2>/dev/null || true\r\n\r\n"] +[129.61232, "o", "\u001b[36m[INFO] Started site provisioning.\u001b[0m\r\n"] +[130.517173, "o", "\r\n Drupal core version : 11.4.5\r\n Drush version : 13.7.6.0\r\n\r\n Web root path : /app/web\r\n Public files path : sites/default/files\r\n Private files path : sites/default/files/private\r\n Temporary files path : /tmp\r\n Config files path : /app/config/default\r\n"] +[130.517623, "o", " DB dump file path : /app/.data/db.sql (present)\r\n\r\n Profile : standard\r\n"] +[130.517787, "o", " Configuration files present : No\r\n"] +[130.525826, "o", " Existing site found : No\r\n\r\n Provision type : database\r\n Fallback to profile : No\r\n Overwrite existing DB : Yes\r\n Skip DB sanitization : No\r\n Skip post-provision operations : No\r\n Verify config after update : No\r\n Use maintenance mode : Yes\r\n\r\n\u001b[36m[INFO] Provisioning site from the database dump file.\u001b[0m\r\n Dump file path: /app/.data/db.sql\r\n Existing site was not found.\r\n Fresh site content will be imported from the database dump file.\r\n"] +[130.531656, "o", "\u001b[36m[INFO] Started database file import.\u001b[0m\r\n"] +[130.730217, "o", "\r\n"] +[130.734895, "o", " // Do you really want to drop all tables in the database drupal?: yes. \r\n\r\n"] +[131.728177, "o", " Imported database from the dump file.\r\n"] +[131.728593, "o", "\u001b[32m[ OK ] Finished database file import.\u001b[0m\r\n"] +[131.728925, "o", "\r\n"] +[133.969869, "o", "\u001b[36m[INFO] Current Drupal environment: local\u001b[0m\r\n\r\n"] +[133.97147, "o", "\u001b[34m[TASK] Enabling maintenance mode.\u001b[0m\r\n"] +[134.349562, "o", "\u001b[32m[ OK ] Enabled maintenance mode. (1s)\u001b[0m\r\n\r\n"] +[134.351186, "o", "\u001b[34m[TASK] Running database updates.\u001b[0m\r\n"] +[136.938796, "o", " [success] No pending updates.\r\n"] +[136.956357, "o", "\u001b[32m[ OK ] Completed running database updates. (2s)\u001b[0m\r\n\r\n\u001b[34m[TASK] Clearing cache after database updates.\u001b[0m\r\n"] +[138.530005, "o", " [success] Cache rebuild complete.\r\n"] +[138.538576, "o", "\u001b[32m[ OK ] Cache was cleared. (2s)\u001b[0m\r\n\r\n"] +[138.54013, "o", "\u001b[34m[TASK] Rebuilding cache.\u001b[0m\r\n"] +[140.0523, "o", " [success] Cache rebuild complete.\r\n"] +[140.060681, "o", "\u001b[32m[ OK ] Cache was rebuilt. (1s)\u001b[0m\r\n\r\n"] +[140.062075, "o", "\u001b[34m[TASK] Running deployment hooks.\u001b[0m\r\n"] +[140.561635, "o", " [success] No pending deploy hooks.\r\n"] +[140.572229, "o", "\u001b[32m[ OK ] Completed deployment hooks. (1s)\u001b[0m\r\n\r\n"] +[140.587594, "o", "\u001b[36m[INFO] Sanitizing database.\u001b[0m\r\n"] +[141.028379, "o", " [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserTableCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeCommentsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserFieldsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n"] +[141.029045, "o", " [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeSessionsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\nThe following operations will be performed:\r\n"] +[141.030869, "o", " * Sanitize user passwords.\r\n * Sanitize user emails.\r\n * Preserve user emails and passwords for the specified roles.\r\n * Sanitize text fields associated with users.\r\n\r\n"] +[141.033224, "o", " // Do you want to sanitize the current database?: yes. \r\n\r\n"] +[141.303718, "o", " [success] User passwords sanitized.\r\n [success] User emails sanitized.\r\n"] +[141.345997, "o", "\u001b[32m[ OK ] Sanitized database using drush sql:sanitize.\u001b[0m\r\n"] +[141.60982, "o", "\r\n"] +[141.618062, "o", "\u001b[32m[ OK ] Applied custom sanitization commands from file.\u001b[0m\r\n"] +[141.872934, "o", "\r\n"] +[142.129662, "o", "\r\n"] +[142.137943, "o", "\u001b[32m[ OK ] Reset user 0 username and email.\u001b[0m\r\n\r\n"] +[142.140178, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\".\u001b[0m\r\n\r\n"] +[142.146097, "o", " ==> Started demo modules operations.\r\n"] +[142.481038, "o", " Environment: local\r\n"] +[142.481342, "o", " > Creating the content model.\r\n"] +[142.91629, "o", "0/2 [░░░░░░░░░░░░░░░░░░░░░░░░░░░░]\r\nApplying recipe\r\n"] +[142.923279, "o", "\r\n2/2 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]\r\nApplied Basic page recipe.\r\n\r\n"] +[142.923737, "o", " [OK] Basic page applied successfully \r\n\r\n"] +[142.928041, "o", " < Created the content model.\r\n > Setting site name.\r\n"] +[143.586711, "o", " < Set site name.\r\n > Setting up the administration navigation.\r\n"] +[144.171684, "o", " [notice] Already installed: navigation\r\n"] +[144.53374, "o", " < Set up the administration navigation.\r\n > Installing contrib modules.\r\n"] +[145.071879, "o", "The following module(s) will be installed: coffee, config_split, config_update, media, environment_indicator, navigation_extra_tools, pathauto, redirect, reroute_email, robotstxt, shield, stage_file_proxy, xmlsitemap, token\r\n"] +[145.074508, "o", "\r\n"] +[145.075681, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[148.829677, "o", " [success] Module coffee has been installed. (Permissions - Configure)\r\n"] +[148.832116, "o", " [success] Module config_split has been installed. (Permissions - Configure)\r\n"] +[148.834042, "o", " [success] Module config_update has been installed.\r\n"] +[148.83687, "o", " [success] Module media has been installed. (Permissions - Configure)\r\n"] +[148.839822, "o", " [success] Module environment_indicator has been installed. (Permissions - Configure)\r\n"] +[148.842332, "o", " [success] Module navigation_extra_tools has been installed. (Permissions)\r\n"] +[148.845541, "o", " [success] Module pathauto has been installed. (Permissions - Configure)\r\n"] +[148.848261, "o", " [success] Module redirect has been installed. (Permissions - Configure)\r\n"] +[148.851369, "o", " [success] Module reroute_email has been installed. (Permissions - Configure)\r\n"] +[148.854289, "o", " [success] Module robotstxt has been installed. (Permissions - Configure)\r\n"] +[148.857384, "o", " [success] Module shield has been installed. (Permissions - Configure)\r\n"] +[148.859928, "o", " [success] Module stage_file_proxy has been installed. (Permissions - Configure)\r\n"] +[148.862665, "o", " [success] Module xmlsitemap has been installed. (Permissions - Configure)\r\n"] +[148.864616, "o", " [success] Module token has been installed.\r\n"] +[148.877619, "o", " < Installed contrib modules.\r\n > Installing Redis module.\r\n"] +[151.070963, "o", " [success] Module redis has been installed. (Permissions - Configure)\r\n"] +[151.081323, "o", " < Installed Redis module.\r\n > Installing and configuring ClamAV.\r\n"] +[153.222122, "o", " [success] Module clamav has been installed. (Permissions - Configure)\r\n"] +[153.895793, "o", "\r\n"] +[153.898636, "o", " // Do you want to update mode_daemon_tcpip.hostname key in clamav.settings \r\n // config?: yes. \r\n\r\n"] +[154.050544, "o", " < Installed and configured ClamAV.\r\n > Installing Solr search modules.\r\n"] +[154.624468, "o", "The following module(s) will be installed: search_api, search_api_solr, language\r\n"] +[154.625839, "o", "\r\n"] +[154.628363, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[157.928828, "o", " [success] Module search_api has been installed. (Permissions - Configure)\r\n"] +[157.930832, "o", " [success] Module search_api_solr has been installed.\r\n"] +[157.933331, "o", " [success] Module language has been installed. (Permissions - Configure)\r\n"] +[157.94426, "o", " < Installed Solr search modules.\r\n > Installing custom site modules.\r\n"] +[161.837903, "o", " [success] Module sw_base has been installed.\r\n"] +[162.44337, "o", "The following module(s) will be installed: sw_search, workflows, content_moderation\r\n"] +[162.444578, "o", "\r\n"] +[162.447222, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[165.65448, "o", " [success] Module sw_search has been installed.\r\n"] +[165.658343, "o", " [success] Module workflows has been installed. (Permissions - Configure)\r\n"] +[165.659849, "o", " [success] Module content_moderation has been installed. (Permissions - Configure)\r\n"] +[166.273663, "o", "The following module(s) will be installed: sw_demo, drupal_helpers, testmode\r\n"] +[166.274968, "o", "\r\n"] +[166.277483, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[168.971704, "o", " [success] Module sw_demo has been installed.\r\n"] +[168.974181, "o", " [success] Module drupal_helpers has been installed.\r\n"] +[168.977479, "o", " [success] Module testmode has been installed. (Configure)\r\n"] +[168.989702, "o", " < Installed custom site modules.\r\n > Running deployment hooks.\r\n"] +[170.171257, "o", " ----------- ------------------------ ---------------------------------------- \r\n Module Hook Description \r\n ----------- ------------------------ ---------------------------------------- \r\n sw_base install_active_theme Installs default and custom theme. \r\n @codeCoverageIgnore \r\n sw_demo configure_testmode Configure testmode to filter the pages \r\n view. Registers the 'sw_demo_pages' \r\n view with testmode so that only \r\n content matching the [TEST] prefix \r\n appears during test runs. \r\n @codeCoverageIgnore \r\n sw_demo create_pages_menu_link Create \"Pages\" menu link in the main \r\n navigation. "] +[170.171439, "o", " Demonstrates using the \r\n drupal_helpers module to manage menu \r\n links within deploy hooks. \r\n @codeCoverageIgnore \r\n sw_demo place_counter_block Place counter block in the \"content\" \r\n region. @codeCoverageIgnore \r\n sw_search add_editorial_workflow Attach editorial workflow to the page \r\n content type. Computed base fields \r\n like 'moderation_state' are only \r\n available when a workflow is attached \r\n to the content type. \r\n @codeCoverageIgnore \r\n ----------- ------------------------ ---------------------------------------- \r\n\r\n\r\n"] +[170.173042, "o", " // Do you wish to run the specified pending deploy hooks?: yes. \r\n\r\n"] +[170.640441, "o", "> [notice] Deploy hook started: sw_base_deploy_install_active_theme\r\n"] +[174.872004, "o", "> [notice] Performed: sw_base_deploy_install_active_theme\r\n"] +[174.873121, "o", "> [notice] Deploy hook started: sw_demo_deploy_configure_testmode\r\n"] +[174.876526, "o", "> [notice] Configured testmode to filter the pages view.\r\n> [notice] Performed: sw_demo_deploy_configure_testmode\r\n"] +[174.881214, "o", "> [notice] Deploy hook started: sw_demo_deploy_create_pages_menu_link\r\n"] +[174.928064, "o", "> [notice] Created \"Pages\" menu link in main navigation.\r\n> [notice] Performed: sw_demo_deploy_create_pages_menu_link\r\n"] +[174.929846, "o", "> [notice] Deploy hook started: sw_demo_deploy_place_counter_block\r\n"] +[174.935872, "o", "> [notice] Counter block placed in the \"content\" region.\r\n> [notice] Performed: sw_demo_deploy_place_counter_block\r\n"] +[174.93711, "o", "> [notice] Deploy hook started: sw_search_deploy_add_editorial_workflow\r\n"] +[174.969541, "o", "> [notice] Attached editorial workflow to page content type.\r\n> [notice] Performed: sw_search_deploy_add_editorial_workflow\r\n"] +[175.226677, "o", " [success] Finished performing deploy hooks.\r\n"] +[175.248835, "o", " < Ran deployment hooks.\r\n ==> Finished demo modules operations.\r\n"] +[175.248974, "o", "\r\n"] +[175.250905, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\". (34s)\u001b[0m\r\n\r\n"] +[175.252917, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\".\u001b[0m\r\n\r\n"] +[175.258886, "o", " ==> Started development modules operations.\r\n"] +[175.708532, "o", " Environment: local\r\n"] +[175.709367, "o", " > Installing Single Directory Component development tools.\r\n"] +[179.351648, "o", " [success] Module sdc_devel has been installed.\r\n"] +[179.362186, "o", " < Installed Single Directory Component development tools.\r\n > Installing Devel module.\r\n"] +[183.360036, "o", " [success] Module devel has been installed. (Permissions - Configure)\r\n"] +[183.371554, "o", " < Installed Devel module.\r\n > Installing Testmode module.\r\n"] +[184.115748, "o", " [notice] Already installed: testmode\r\n"] +[184.137477, "o", " < Installed Testmode module.\r\n > Installing Generated content module.\r\n"] +[187.730422, "o", "Started creation of generated content from modules: sw_demo, generated_content.\r\n"] +[187.903321, "o", "Created \"page\" node \"Demo page 1 accusamusanimide\" [ID: 2]\r\n"] +[187.912863, "o", "Created \"page\" node \"Demo page 2 asperioresatquem\" [ID: 3]\r\n"] +[187.922012, "o", "Created \"page\" node \"Demo page 3 debitisdelectuse\" [ID: 4]\r\n"] +[187.931366, "o", "Created \"page\" node \"Demo page 4 inmolestiaeoccae\" [ID: 5]\r\n"] +[187.93934, "o", "Created \"page\" node \"Demo page 5 doloribusiustoof\" [ID: 6]\r\n"] +[187.947779, "o", "Created \"page\" node \"Demo page 6 dolorumevenietli\" [ID: 7]\r\n"] +[187.962679, "o", "Created \"page\" node \"Demo page 7 facereidmaximeni\" [ID: 8]\r\n"] +[187.970339, "o", "Created \"page\" node \"Demo page 8 mollitianonsunta\" [ID: 9]\r\n"] +[187.978191, "o", "Created \"page\" node \"Demo page 9 distinctioharump\" [ID: 10]\r\n"] +[187.98574, "o", "Created \"page\" node \"Demo page 10 idimpeditmaximem\" [ID: 11]\r\n"] +[187.995986, "o", "Created \"page\" node \"Demo page 11 culpadebitisnobi\" [ID: 12]\r\n"] +[188.003667, "o", "Created \"page\" node \"Demo page 12 eosiustooptioqui\" [ID: 13]\r\n"] +[188.011199, "o", "Created \"page\" node \"Demo page 13 etitaqueproviden\" [ID: 14]\r\n"] +[188.01872, "o", "Created \"page\" node \"Demo page 14 animiautculpamai\" [ID: 15]\r\n"] +[188.026007, "o", "Created \"page\" node \"Demo page 15 maioresmolestiae\" [ID: 16]\r\n"] +[188.036101, "o", "Created \"page\" node \"Demo page 16 occaecatiperfere\" [ID: 17]\r\n"] +[188.041863, "o", "Created \"page\" node \"Demo page 17 fugaidimpeditnec\" [ID: 18]\r\n"] +[188.052357, "o", "Created \"page\" node \"Demo page 18 estiustomaximequ\" [ID: 19]\r\n"] +[188.058832, "o", "Created \"page\" node \"Demo page 19 consequaturdeser\" [ID: 20]\r\n"] +[188.066984, "o", "Created \"page\" node \"Demo page 20 doloreseosmaxime\" [ID: 21]\r\n"] +[188.067371, "o", "Created generated content entities \"node\" with bundle \"page\".\r\n"] +[188.091493, "o", "Created all generated content.\r\n"] +[188.091959, "o", "Finished creation of generated content.\r\n"] +[188.291223, "o", " [success] Module generated_content has been installed. (Permissions)\r\n"] +[188.442005, "o", " < Installed Generated content module.\r\n ==> Finished development modules operations.\r\n\r\n"] +[188.443695, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\". (13s)\u001b[0m\r\n\r\n"] +[188.445494, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-30-search-index.sh\".\u001b[0m\r\n\r\n"] +[188.452058, "o", " ==> Started search indexing operations.\r\n"] +[188.877762, "o", " Environment: local\r\n Search indexing skip: 0\r\n\r\n"] +[188.878162, "o", " > Resetting search index tracker.\r\n"] +[189.283034, "o", " [success] Content was successfully scheduled for reindexing.\r\n"] +[189.300848, "o", " < Reset search index tracker.\r\n > Running search indexing.\r\n"] +[189.719318, "o", " [success] Found 21 items to index for Content. Indexing all items.\r\n [success] Indexing a maximum number of 21 items (50 items per batch run) for the index 'Content'.\r\n"] +[190.276284, "o", "> [notice] Successfully indexed 21 items on Content.\r\n"] +[190.287546, "o", "> [notice] Message: Successfully indexed 21 items.\r\n> \r\n"] +[190.325761, "o", " < Completed search indexing.\r\n ==> Finished search indexing operations.\r\n"] +[190.325813, "o", "\r\n"] +[190.327586, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-30-search-index.sh\". (2s)\u001b[0m\r\n\r\n"] +[190.329071, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-40-example.sh\".\u001b[0m\r\n\r\n"] +[190.334844, "o", " ==> Started example operations.\r\n"] +[190.746324, "o", " Environment: local\r\n Running example operations in non-production environment.\r\n > Performing an example operation.\r\n Replace this with your own commands.\r\n < Performed an example operation.\r\n Fresh database detected. Performing additional example operations.\r\n ==> Finished example operations.\r\n\r\n"] +[190.749375, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-40-example.sh\". (0s)\u001b[0m\r\n\r\n"] +[190.754065, "o", "\u001b[34m[TASK] Disabling maintenance mode.\u001b[0m\r\n"] +[191.296903, "o", "\u001b[32m[ OK ] Disabled maintenance mode. (1s)\u001b[0m\r\n\r\n"] +[191.29852, "o", "\u001b[32m[ OK ] Finished site provisioning (1m 2s).\u001b[0m\r\n"] +[191.750631, "o", "\u001b[36m[INFO] Project information:\u001b[0m\r\n\r\n Project name : star_wars\r\n Docker Compose project name : vortex_videos\r\n Site local URL : http://vortex_videos.docker.amazee.io\r\n"] +[191.750983, "o", " Path to web root : /app/web\r\n DB host : database\r\n DB username : drupal\r\n DB password : drupal\r\n"] +[191.75103, "o", " DB port : 3306\r\n DB port on host : 65358 ('ahoy db' to start SequelAce)\r\n"] +[191.751362, "o", " Solr URL on host : http://127.0.0.1:65357\r\n Selenium VNC URL on host : http://localhost:65379/?autoconnect=1&password=secret\r\n Mailhog URL : http://mailhog.docker.amazee.io/\r\n"] +[191.780117, "o", " Xdebug : Disabled ('ahoy debug' to enable)\r\n Site login link : "] +[194.595313, "o", "http://vortex_videos.docker.amazee.io/user/reset/1/1787192699/[REDACTED]/login\r\n"] +[194.61142, "o", "\r\n"] +[194.64361, "x", "0"] diff --git a/.vortex/docs/static/img/build.png b/.vortex/docs/static/img/build.png index 335535919..07bf7d207 100644 Binary files a/.vortex/docs/static/img/build.png and b/.vortex/docs/static/img/build.png differ diff --git a/.vortex/docs/static/img/build.svg b/.vortex/docs/static/img/build.svg index 8eadf9418..e627ca042 100644 --- a/.vortex/docs/static/img/build.svg +++ b/.vortex/docs/static/img/build.svg @@ -1 +1 @@ -$ahoy$ahoybuild[INFO]StartedVortextoolinginstallation.[OK]FinishedVortextoolinginstallation.[INFO]Startedreset.[OK]Finishedreset.#1[internal]loadlocalbakedefinitions#1readingfromstdin[SIZE]done#1DONE[TIME]#2[phpinternal]loadbuilddefinitionfromphp.dockerfile#2transferringdockerfile:[SIZE]done#2DONE[TIME]#3[nginxinternal]loadbuilddefinitionfromnginx-drupal.dockerfile#3transferringdockerfile:[SIZE]done#3DONE[TIME]#4[solrinternal]loadbuilddefinitionfromsolr.dockerfile#4transferringdockerfile:[SIZE]done#4DONE[TIME]#5[cliinternal]loadbuilddefinitionfromcli.dockerfile#5transferringdockerfile:[SIZE]done#6DONE[TIME]#7[cliinternal]loadmetadatafordocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#7DONE[TIME]#8[clamavinternal]loadbuilddefinitionfromclamav.dockerfile#8transferringdockerfile:[SIZE]done#8DONE[TIME]#9[databaseinternal]loadmetadatafordocker.io/uselagoon/mysql-8.4:26.8.0#9DONE[TIME]#10[cliinternal]load.dockerignore#10transferringcontext:[SIZE]done#10DONE[TIME]#11[database1/3]FROMdocker.io/uselagoon/mysql-8.4:26.8.0#11DONE[TIME]#12[databaseinternal]loadbuildcontext#12transferringcontext:[SIZE]done#12DONE[TIME]#13[database2/3]COPY./.docker/config/database/my.cnf/etc/mysql/conf.d/server.cnf#13CACHED#14[database3/3]RUNfix-permissions/etc/mysql/conf.d/#14CACHED#15[database]exportingtoimage#15exportinglayersdone#15writingimagesha256:[HASH]done#15namingtodocker.io/library/vortex_videos-databasedone#15DONE[TIME]#16[database]resolvingprovenanceformetadatafile#16DONE[TIME]#17[nginxinternal]loadmetadatafordocker.io/uselagoon/nginx-drupal:26.8.0#17...#18[auth]uselagoon/php-8.4-fpm:pulltokenforregistry-1.docker.io#18DONE[TIME]#19[auth]uselagoon/commons:pulltokenforregistry-1.docker.io#19DONE[TIME]#20[auth]uselagoon/nginx-drupal:pulltokenforregistry-1.docker.io#20DONE[TIME]#21[auth]uselagoon/solr-9-drupal:pulltokenforregistry-1.docker.io#21DONE[TIME]#22[auth]clamav/clamav-debian:pulltokenforregistry-1.docker.io#22DONE[TIME]#23[phpinternal]loadmetadatafordocker.io/uselagoon/php-8.4-fpm:26.8.0#23...#17DONE[TIME]#10[solrinternal]load.dockerignore#24[nginxstage-11/5]FROMdocker.io/uselagoon/nginx-drupal:26.8.0@sha256:[HASH]#24DONE[TIME]#23DONE[TIME]#25[phpstage-11/3]FROMdocker.io/uselagoon/php-8.4-fpm:26.8.0@sha256:[HASH]#25DONE[TIME]#26[nginxinternal]loadbuildcontext#26transferringcontext:[SIZE][TIME]done#26DONE[TIME]#27[phpstage-01/10]FROMdocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#27DONE[TIME]#28[clamavinternal]loadmetadatafordocker.io/uselagoon/commons:26.8.0#28DONE[TIME]#29[clamavinternal]loadmetadatafordocker.io/clamav/clamav-debian:1.5.4#29DONE[TIME]#30[solrinternal]loadmetadatafordocker.io/uselagoon/solr-9-drupal:26.8.0#30DONE[TIME]#31[clamavstage-11/7]FROMdocker.io/clamav/clamav-debian:1.5.4@sha256:[HASH]#31DONE[TIME]#32[clamavcommons1/1]FROMdocker.io/uselagoon/commons:26.8.0@sha256:[HASH]#32DONE[TIME]#33[solr1/3]FROMdocker.io/uselagoon/solr-9-drupal:26.8.0@sha256:[HASH]#33DONE[TIME]#34[clamavinternal]loadbuildcontext#34transferringcontext:[SIZE]done#34DONE[TIME]#35[clamavstage-12/7]COPY--from=commons/lagoon/lagoon#35CACHED#42exportinglayersdone#42writingimagesha256:[HASH]done#42namingtodocker.io/library/vortex_videos-clamavdone#42DONE[TIME]#43[solrinternal]loadbuildcontext#43transferringcontext:[SIZE][TIME]done#44DONE[TIME]#45[solr2/3]COPY.docker/config/solr/config-set/solr-conf/conf/#45CACHED#46[solr3/3]RUNsed-i-e"s#<dataDir>${solr.data.dir:}#<dataDir>/var/solr/${solr.core.name}#g"/solr-conf/conf/solrconfig.xml&&sed-i-e"s#solr.lock.type:native#solr.lock.type:none#g"/solr-conf/conf/solrconfig.xml&&sed-i-e"s#solr.autoSoftCommit.MaxTime=5000#solr.autoSoftCommit.MaxTime=-1#g"/solr-conf/conf/solrcore.properties#46CACHED#47[clistage-02/10]RUNapkadd--no-cachencursespvtzdataautoconfg++make&&peclinstallpcov&&docker-php-ext-enablepcov&&docker-php-ext-installpcntl&&apkdelg++makeautoconf#47CACHED#48[clistage-03/10]COPYpatches/app/patches#48CACHED#49[clistage-04/10]COPYscripts/app/scripts#49CACHED#50[solr]exportingtoimage#50exportinglayersdone#50writingimagesha256:[HASH][TIME]done#50namingtodocker.io/library/vortex_videos-solrdone#50DONE[TIME]#51[phpstage-05/10]COPYcomposer.jsoncomposer.*patches.lock.*.env*auth*/app/#51DONE[TIME]#52[solr]resolvingprovenanceformetadatafile#52DONE[TIME]#53[phpstage-06/10]RUN--mount=type=secret,id=package_tokentoken=$(if[-s/run/secrets/package_token];thencat/run/secrets/package_token;elseecho"XXXXX";fi)&&if[-n"${token}"];thenexportCOMPOSER_AUTH="{"github-oauth":{"github.com":"${token}"}}";fi&&COMPOSER_MEMORY_LIMIT=-1composerinstall-n--no-dev--ansi--prefer-dist--optimize-autoloader#530.260No composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information. #530.261Loadingcomposerrepositorieswithpackageinformation#5320.48Updatingdependencies#5320.74-Lockingsymfony/http-foundation(v7.4.16)#5320.74-Lockingsymfony/http-kernel(v7.4.16)#5320.74-Lockingsymfony/mailer(v7.4.15)#5320.74-Lockingsymfony/mime(v7.4.16)#5320.74-Lockingsymfony/polyfill-ctype(v1.37.0)#5320.74-Lockingsymfony/polyfill-iconv(v1.37.0)#5320.74-Lockingsymfony/polyfill-intl-grapheme(v1.41.0)#5320.74-Lockingsymfony/polyfill-intl-idn(v1.38.1)#5320.74-Lockingsymfony/polyfill-intl-normalizer(v1.38.0)#5320.74-Lockingsymfony/polyfill-mbstring(v1.38.2)#5320.74-Lockingsymfony/polyfill-php80(v1.37.0)#5320.74-Lockingsymfony/polyfill-php81(v1.38.1)#5320.74-Lockingsymfony/polyfill-php83(v1.41.0)#5320.74-Lockingsymfony/polyfill-php84(v1.38.1)#5320.74-Lockingsymfony/polyfill-php85(v1.41.0)#5320.74-Lockingsymfony/polyfill-php86(v1.41.0)#5320.74-Lockingsymfony/process(v7.4.13)#5320.74-Lockingsymfony/psr-http-message-bridge(v7.4.8)#5320.74-Lockingsymfony/routing(v7.4.15)#5320.74-Lockingsymfony/runtime(v7.4.14)#5320.74-Lockingsymfony/serializer(v7.4.16)#5320.74-Lockingsymfony/service-contracts(v3.7.1)#5320.74-Lockingsymfony/string(v7.4.15)#5320.74-Lockingsymfony/translation(v7.4.16)#5320.74-Lockingsymfony/translation-contracts(v3.7.1)#5320.74-Lockingsymfony/validator(v7.4.16)#5320.74-Lockingsymfony/var-dumper(v7.4.15)#5320.74-Lockingsymfony/var-exporter(v7.4.16)#5320.74-Lockingsymfony/yaml(v7.4.15)#5320.74-Lockingtheseer/tokenizer(1.3.1)#5320.74-Lockingtwig/html-extra(v3.28.0)#5320.74-Lockingtwig/twig(v3.28.0)#5320.74-Lockingvincentlanglet/twig-cs-fixer(4.0.2)#5320.74-Lockingwebflo/drupal-finder(1.3.1)#5320.74-Lockingwebmozart/assert(2.4.1)#5320.75Writinglockfile#5320.75Installingdependenciesfromlockfile#5320.75Packageoperations:124installs,0updates,0removals#5320.75-Downloadingcweagans/composer-configurable-plugin(2.0.0)#5321.48-Installingcweagans/composer-configurable-plugin(2.0.0):Extractingarchive#5321.50-Downloadingcweagans/composer-patches(2.0.0)#5322.09-Installingcweagans/composer-patches(2.0.0):Extractingarchive#5322.10-Downloadingcomposer/installers(v2.3.0)#5322.10-Downloadingsymfony/runtime(v7.4.14)#5322.10-Downloadingdrupal/core-composer-scaffold(11.4.5)#5322.10-Downloadingsymfony/polyfill-iconv(v1.37.0)#5322.10-Downloadingsymfony/polyfill-mbstring(v1.38.2)#5322.10-Downloadingsymfony/polyfill-intl-normalizer(v1.38.0)#5322.10-Downloadingsymfony/polyfill-intl-grapheme(v1.41.0)#5322.10-Downloadingsymfony/polyfill-ctype(v1.37.0)#5322.10-Downloadingsymfony/deprecation-contracts(v3.7.1)#5322.10-Downloadingsymfony/string(v7.4.15)#5322.10-Downloadingpsr/container(2.0.2)#5322.10-Downloadingsymfony/service-contracts(v3.7.1)#5322.11-Downloadingdrupal/navigation_extra_tools(1.3.2)#5322.11-Downloadingdrupal/token(1.17.0)#5322.11-Downloadingdrupal/ctools(4.1.1)#5322.11-Downloadingdrupal/pathauto(1.15.0)#5322.11-Downloadingdrupal/redirect(1.13.0)#5322.11-Downloadingdrupal/redis(1.11.0)#5322.11-Downloadingdrupal/reroute_email(2.3.0-rc2)#5322.11-Downloadingdrupal/robotstxt(1.6.0)#5322.11-Downloadingdrupal/sdc_devel(1.0.3)#5322.11-Downloadinghalaxa/json-machine(1.2.6)#5322.11-Downloadingsolarium/solarium(7.0.0)#5322.11-Downloadingmaennchen/zipstream-php(3.2.2)#5322.11-Downloadinglaminas/laminas-stdlib(3.21.0)#5322.11-Downloadingdrupal/search_api(1.41.0)#5322.11-Downloadingdflydev/dot-access-data(v3.0.3)#5322.11-Downloadingconsolidation/output-formatters(4.7.1)#5322.11-Downloadingconsolidation/annotated-command(4.10.5)#5322.11-Downloadingdrupal/search_api_solr(4.4.0)#5322.11-Downloadingdrupal/seckit(2.0.3)#5322.12-Downloadingdrupal/shield(1.8.0)#5322.12-Downloadingdrupal/stage_file_proxy(4.0.0)#5322.12-Downloadingdrupal/testmode(2.7.2)#5322.12-Downloadingdrupal/xmlsitemap(2.0.0)#5322.12-Downloadingnikic/php-parser(v5.8.0)#5322.12-Downloadingpsy/psysh(v0.12.24)#5322.12-Downloadingleague/container(4.2.5)#5322.12-Downloadinglaravel/prompts(v0.3.23)#5322.12-Downloadinggrasmash/yaml-cli(3.2.1)#5322.12-Downloadinggrasmash/expander(3.0.1)#5322.12-Downloadingconsolidation/config(3.2.1)#5322.12-Downloadingconsolidation/site-alias(4.1.3)#5322.12-Downloadingconsolidation/site-process(6.1.0)#5322.12-Downloadingsymfony/polyfill-php81(v1.38.1)#5322.12-Downloadingphootwork/lang(v3.2.3)#5322.12-Downloadingphootwork/collection(v3.2.3)#5322.12-Downloadingphpowermove/docblock(v4.0)#5322.12-Downloadingconsolidation/robo(5.1.1)#5322.12-Downloadingconsolidation/filter-via-dot-access-data(2.0.3)#5322.12-Downloadingchi-teck/drupal-code-generator(4.2.0)#5322.12-Downloadingdrush/drush(13.7.6)#5322.12-Downloadingwebflo/drupal-finder(1.3.1)ve#5328.06-Installingdrupal/redirect(1.13.0):Extractingarchive#5328.06-Installingdrupal/redis(1.11.0):Extractingarchive#5328.06-Installingdrupal/reroute_email(2.3.0-rc2):Extractingarchive#5328.06-Installingdrupal/robotstxt(1.6.0):Extractingarchive#5328.06-Installingdrupal/sdc_devel(1.0.3):Extractingarchive#5328.06-Installinghalaxa/json-machine(1.2.6):Extractingarchive#5328.06-Installingsolarium/solarium(7.0.0):Extractingarchive#5328.06-Installingmaennchen/zipstream-php(3.2.2):Extractingarchive#5328.06-Installinglaminas/laminas-stdlib(3.21.0):Extractingarchive#5328.06-Installingdrupal/search_api(1.41.0):Extractingarchive#5328.07-Installingdflydev/dot-access-data(v3.0.3):Extractingarchive#5328.07-Installingconsolidation/output-formatters(4.7.1):Extractingarchive#5328.07-Installingconsolidation/annotated-command(4.10.5):Extractingarchive#5328.07-Installingdrupal/search_api_solr(4.4.0):Extractingarchive#5328.07-Installingdrupal/seckit(2.0.3):Extractingarchive#5328.07-Installingdrupal/shield(1.8.0):Extractingarchive#5328.07-Installingdrupal/stage_file_proxy(4.0.0):Extractingarchive#5328.07-Installingdrupal/testmode(2.7.2):Extractingarchive#5328.07-Installingdrupal/xmlsitemap(2.0.0):Extractingarchive#5328.07-Installingnikic/php-parser(v5.8.0):Extractingarchive#5328.07-Installingpsy/psysh(v0.12.24):Extractingarchive#5328.07-Installingleague/container(4.2.5):Extractingarchive#5328.07-Installinglaravel/prompts(v0.3.23):Extractingarchive#5328.07-Installinggrasmash/yaml-cli(3.2.1):Extractingarchive#5328.07-Installinggrasmash/expander(3.0.1):Extractingarchive#5328.07-Installingconsolidation/config(3.2.1):Extractingarchive#5328.07-Installingconsolidation/site-alias(4.1.3):Extractingarchive#5328.07-Installingconsolidation/site-process(6.1.0):Extractingarchive#5328.07-Installingsymfony/polyfill-php81(v1.38.1):Extractingarchive#5328.07-Installingphootwork/lang(v3.2.3):Extractingarchive#5328.07-Installingphootwork/collection(v3.2.3):Extractingarchive#5328.07-Installingphpowermove/docblock(v4.0):Extractingarchive#5328.07-Installingconsolidation/robo(5.1.1):Extractingarchive#5328.07-Installingconsolidation/filter-via-dot-access-data(2.0.3):Extractingarchive#5328.07-Installingchi-teck/drupal-code-generator(4.2.0):Extractingarchive#5328.07-Installingdrush/drush(13.7.6):Extractingarchive#5328.07-Installingwebflo/drupal-finder(1.3.1):Extractingarchive34packagesuggestionswereaddedbynewdependencies,use`composersuggest`toseedetails.#5330.26Generatingoptimizedautoloadfiles#5331.15Usethe`composerfund`commandtofindoutmore!#5331.16-Skip[web-root]/update.php:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/INSTALL.txt:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/.eslintignore:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/.eslintrc.json:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/.ht.router.php:overriddeninstar_wars_org/star_w#5331.16-Copy[web-root]/sites/README.txtfromassets/scaffold/files/sites.README.txt#5331.16-Skip[project-root]/.editorconfig:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/example.gitignore:overriddeninstar_wars_org/sta#5331.16-Copy[web-root]/themes/README.txtfromassets/scaffold/files/themes.README.txt#5331.16-Skip[project-root]/.gitattributes:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/modules/README.txtfromassets/scaffold/files/modules.README.txt#5331.16-Copy[web-root]/profiles/README.txtfromassets/scaffold/files/profiles.README.txt#5331.16-Copy[project-root]/recipes/README.txtfromassets/scaffold/files/recipes.README.txt#5331.16-Skip[web-root]/sites/example.sites.php:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/sites/development.services.ymlfromassets/scaffold/files/development.services.yml#5331.16-Skip[web-root]/sites/example.settings.local.php:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/sites/default/default.services.ymlfromassets/scaffold/files/default.services.yml#5331.16-Copy[web-root]/sites/default/default.settings.phpfromassets/scaffold/files/default.settings.php#53DONE[TIME]#54[nginxstage-07/10]COPY./app#54DONE[TIME]#55[phpstage-08/10]RUNmkdir-p-m2775"/app/web/sites/default/files""/app/web/sites/default/files/private""/tmp"#55DONE[TIME]#56[clistage-09/10]RUNif["0"!="1"];thentheme_path="/app/web/themes/custom/star_wars";npm--prefix="${theme_path}"ci--no-progress--no-audit--no-fund&&npm--prefix="${theme_path}"runbuild&&npmcacheclean--force;fi#561.432npmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupported#561.756npmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.#561.821npmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.me#562.110npmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinstead#562.119npmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainstead#562.357npmwarndeprecatedrimraf@2.7.1:Rimrafversionspriortov4arenol#563.071npmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.#563.654#563.654>star_wars@1.0.0postinstall#563.654>patch-package#563.738patch-package6.5.1#563.738Applyingpatches...#563.739Nopatchfilesfound#563.753#563.753added475packagesin[TIME]#563.866#563.866>star_wars@1.0.0build#563.866>npmrunclean&&mkdir-pbuild/js&&npmrunconcat&&npmrunuglify&&npmrunsass:prod&&npmrunpostcss:prod&&npmruncopy#563.954#563.954>star_wars@1.0.0clean#563.954>rm-rfbuild#564.049#564.049>star_wars@1.0.0concat#564.049>findjs-name'*.js'!-name'*.min.js'-execcat{}+>build/js/star_wars.min.js#564.143#564.143>star_wars@1.0.0uglify#564.143>terserbuild/js/star_wars.min.js-obuild/js/star_wars.min.js-cdrop_console=true-mreserved=['jQuery','Drupal']2>/dev/null||true#564.322#564.322>star_wars@1.0.0sass:prod#564.322>sassscss/styles.scssbuild/css/star_wars.min.css--no-source-map--style=compressed#564.621#564.621>star_wars@1.0.0postcss:prod#564.621>postcssbuild/css/star_wars.min.css-obuild/css/star_wars.min.css--no-map#564.903#564.903>star_wars@1.0.0copy#564.903>npmruncopy:images&&npmruncopy:fonts#564.991#564.991>star_wars@1.0.0copy:images#564.991>mkdir-pbuild/images&&cp-rimages/*build/images/2>/dev/null||true#565.079#565.079>star_wars@1.0.0copy:fonts#565.079>mkdir-pbuild/fonts&&cp-rfonts/*build/fonts/2>/dev/null||true#565.157npmwarnusing--forceRecommendedprotectionsdisabled.#56DONE[TIME]#57[phpstage-010/10]WORKDIR/app#57DONE[TIME]#58[cli]exportingtoimage#58exportinglayers#58exportinglayers[TIME]done#58writingimagesha256:[HASH]done#58namingtodocker.io/library/vortex_videosdone#58DONE[TIME]#59[nginxstage-12/5]RUNapkadd--no-cachetzdata#59CACHED#60[nginxstage-13/5]COPY./.docker/config/nginx/redirects-map.conf/etc/nginx/redirects-map.conf#60CACHED#61[nginxstage-14/5]RUNfix-permissions/etc/nginx#61CACHED#62[phpstage-12/3]RUNapkadd--no-cachetzdata#62CACHED#63[cli]resolvingprovenanceformetadatafile#63DONE[TIME]#64[phpstage-13/3]COPY--from=cli/app/app#64DONE[TIME]#65[nginxstage-15/5]COPY--from=cli/app/app#65DONE[TIME]#66[nginx]exportingtoimage#66exportinglayers[TIME]done#66writingimagesha256:[HASH]done#66namingtodocker.io/library/vortex_videos-nginxdone#66DONE[TIME]#67[php]exportingtoimage#67exportinglayers[TIME]done#67writingimagesha256:[HASH]done#67namingtodocker.io/library/vortex_videos-phpdone#67DONE[TIME]#68[php]resolvingprovenanceformetadatafile#68DONE[TIME]#69[nginx]resolvingprovenanceformetadatafile#69DONE[TIME][+]up8/12Imagevortex_videosBuilt46.[TIME]Imagevortex_videos-phpBuilt46.[TImagevortex_videos-nginxBuilt46.[TImagevortex_videos-databaseBuilt46.[TImagevortex_videos-solrBuilt46.[TImagevortex_videos-clamavBuilt46.[TNetworkvortex_videos_defaultCreated[TIME]Volumevortex_videos_solrCreated[TIMContainervortex_videos-clamav-1Creating[TIMContainervortex_videos-redis-1Creating[TIMContainervortex_videos-solr-1Creating[TIMContainervortex_videos-database-1Creating[TIM[+]up10/12Containervortex_videos-clamav-1Created[TIMContainervortex_videos-redis-1Created[TIMContainervortex_videos-solr-1Creating[TIM[+]up12/13Imagevortex_videosBuilt46.[TImagevortex_videos-phpBuilt46.[TImagevortex_videos-nginxBuilt46.[TImagevortex_videos-databaseBuilt46.[TImagevortex_videos-solrBuilt46.[TImagevortex_videos-clamavBuilt46.[TNetworkvortex_videos_defaultCreated[TIMVolumevortex_videos_solrCreated[TIMContainervortex_videos-clamav-1Created[TIMContainervortex_videos-redis-1Created[TIMContainervortex_videos-solr-1Created[TIMContainervortex_videos-database-1Created[TIMIME]ontainervortex_videos-redis-1Created[TIMIME]ontainervortex_videos-solr-1Created[TIMIME]ontainervortex_videos-database-1Created[TIMIME]ontainervortex_videos-wait-for-dependencies-1Creating[TIMContainervortex_videos-wait-for-dependencies-1Created[TIM[+]up14/17Containervortex_videos-cli-1Created[TIMContainervortex_videos-php-1Creating[TIMContainervortex_videos-nginx-1Creating[TIMContainervortex_videos-chrome-1Creating[TIM[+]up15/17vortex_videos-clamav-1Created[TIMIME]ontainervortex_videos-wait-for-dependencies-1Created[TIMIME]ontainervortex_videos-cli-1Created[TIMIME]ontainervortex_videos-php-1Creating[TIME]Containervortex_videos-nginx-1Creating[TIME]Containervortex_videos-chrome-1Creating[TIMContainervortex_videos-php-1Created[TIMContainervortex_videos-nginx-1Creating[TIMContainervortex_videos-chrome-1Creating[TIM[+]up13/17vortex_videos-clamav-1Created[TIMIME]ontainervortex_videos-php-1Created[TIMContainervortex_videos-nginx-1Created[TIMContainervortex_videos-chrome-1Created[TIM[+]up13/17vortex_videos-clamav-1Starting[TIMIME]ontainervortex_videos-redis-1Starting[TIMIME]ontainervortex_videos-solr-1Starting[TIMIME]ontainervortex_videos-database-1Starting[TIME]Containervortex_videos-nginx-1Created[TIME]Containervortex_videos-chrome-1Created[TIMContainervortex_videos-clamav-1Started[TIMContainervortex_videos-solr-1Started[TIMContainervortex_videos-database-1Started[TIM[+]up16/17vortex_videos-clamav-1Started[TIMIME]ontainervortex_videos-solr-1Started[TIMIME]ontainervortex_videos-database-1Started[TIMContainervortex_videos-redis-1Started[TIMContainervortex_videos-wait-for-dependencies-1Starting[TIMIME]ontainervortex_videos-redis-1Started[TIMIME]ontainervortex_videos-wait-for-dependencies-1Starting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMIME]ontainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting[TIMContainervortex_videos-wait-for-dependencies-1Waiting10.[TIME]ontainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-wait-for-dependencies-1Waiting11.[TIME]ontainervortex_videos-wait-for-dependencies-1Waiting11.[TContainervortex_videos-wait-for-dependencies-1Waiting11.[TContainervortex_videos-wait-for-dependencies-1Waiting11.[TContainervortex_videos-wait-for-dependencies-1Waiting11.[TContainervortex_videos-wait-for-dependencies-1Waiting11.[TContainervortex_videos-wait-for-dependencies-1Waiting11.[TContainervortex_videos-wait-for-dependencies-1Waiting11.[TContainervortex_videos-wait-for-dependencies-1Waiting11.[TContainervortex_videos-wait-for-dependencies-1Exited11.[TContainervortex_videos-cli-1Starting11.[TIME]ontainervortex_videos-wait-for-dependencies-1Exited11.[TIME]ontainervortex_videos-cli-1Starting11.[TContainervortex_videos-cli-1Starting11.[TContainervortex_videos-cli-1Starting11.[T[+]up14/17vortex_videos-clamav-1Started[TIMContainervortex_videos-cli-1Started12.[TContainervortex_videos-php-1Starting11.[TContainervortex_videos-nginx-1Starting11.[TContainervortex_videos-chrome-1Starting11.[TIME]ontainervortex_videos-cli-1Started12.[TIME]ontainervortex_videos-php-1Starting11.[TE]Containervortex_videos-nginx-1Starting11.[TE]Containervortex_videos-chrome-1Starting11.[TContainervortex_videos-php-1Starting12.[TContainervortex_videos-nginx-1Starting12.[TContainervortex_videos-chrome-1Starting12.[TIME]ontainervortex_videos-php-1Starting12.[TE]Containervortex_videos-nginx-1Starting12.[TE]Containervortex_videos-chrome-1Starting12.[T[+]up15/17vortex_videos-clamav-1Started[TIMContainervortex_videos-php-1Started12.[TIME]ontainervortex_videos-php-1Started12.[TContainervortex_videos-nginx-1Starting12.[TContainervortex_videos-chrome-1Started12.[T[+]up17/17vortex_videos-clamav-1Started[TIME]Containervortex_videos-chrome-1Started12.[TContainervortex_videos-nginx-1Started12.[TNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information. LoadingcomposerrepositorieswithpackageinformationUpdatingdependenciesLockfileoperations:207installs,0updates,0removals-Lockingasm89/stack-cors(v2.4.0)-Lockingbehat/behat(v3.32.0)-Lockingbehat/gherkin(v4.17.0)-Lockingbehat/mink(v1.13.0)-Lockingbehat/mink-browserkit-driver(v2.3.0)-Lockingchi-teck/drupal-code-generator(4.2.0)-Lockingcomposer/installers(v2.3.0)-Lockingcomposer/pcre(3.4.0)-Lockingcomposer/semver(3.4.4)-Lockingcomposer/xdebug-handler(3.0.5)-Lockingconsolidation/annotated-command(4.10.5)-Lockingconsolidation/config(3.2.1)-Lockingconsolidation/filter-via-dot-access-data(2.0.3)-Lockingconsolidation/log(3.1.2)-Lockingconsolidation/output-formatters(4.7.1)-Lockingconsolidation/robo(5.1.1)-Lockingconsolidation/site-alias(4.1.3)-Lockingconsolidation/site-process(6.1.0)-Lockingcucumber/gherkin(v24.1.0)-Lockingcucumber/messages(v19.1.4)-Lockingcweagans/composer-configurable-plugin(2.0.0)-Lockingcweagans/composer-patches(2.0.0)-Lockingdantleech/gherkin-lint(0.2.4)-Lockingdantleech/invoke(2.0.0)-Lockingdealerdirect/phpcodesniffer-composer-installer(v1.2.1)-Lockingdflydev/dot-access-data(v3.0.3)-Lockingdoctrine/common(3.5.0)-Lockingdoctrine/deprecations(1.1.6)-Lockingdoctrine/event-manager(2.1.1)-Lockingdoctrine/instantiator(2.1.0)-Lockingdoctrine/lexer(3.0.1)-Lockingdoctrine/persistence(4.2.0)-Lockingdrevops/behat-format-progress-fail(1.5.1)-Lockingdrevops/behat-screenshot(2.6.0)-Lockingdrevops/behat-steps(3.14.1)-Lockingdrevops/phpcs-standard(1.0.0)-Lockingdrevops/vortex-tooling(1.4.0)-Lockingdrupal/clamav(2.1.0)-Lockingdrupal/coder(9.0.1)-Lockingdrupal/coffee(2.0.1)-Lockingdrupal/config_split(2.0.2)-Lockingdrupal/config_update(2.0.0-alpha4)-Lockingdrupal/core(11.4.5)-Lockingdrupal/core-composer-scaffold(11.4.5)-Lockingdrupal/core-recommended(11.4.5)-Lockingdrupal/ctools(4.1.1)-Lockingsebastian/object-enumerator(6.0.1)-Lockingsebastian/object-reflector(4.0.1)-Lockingsebastian/recursion-context(6.0.3)-Lockingsebastian/type(5.1.3)-Lockingsebastian/version(5.0.2)-Lockingsirbrillig/phpcs-variable-analysis(v2.13.0)-Lockingslevomat/coding-standard(8.31.1)-Lockingsoftcreatr/jsonpath(0.10.0)-Lockingsolarium/solarium(7.0.0)-Lockingsquizlabs/php_codesniffer(4.0.4)-Lockingstaabm/side-effects-detector(1.0.5)-Lockingsymfony/browser-kit(v8.1.1)-Lockingsymfony/config(v7.4.16)-Lockingsymfony/console(v7.4.16)-Lockingsymfony/css-selector(v7.4.9)-Lockingsymfony/dependency-injection(v7.4.16)-Lockingsymfony/deprecation-contracts(v3.7.1)-Lockingsymfony/dom-crawler(v7.4.12)-Lockingsymfony/error-handler(v7.4.15)-Lockingsymfony/event-dispatcher(v7.4.15)-Lockingsymfony/event-dispatcher-contracts(v3.7.1)-Lockingsymfony/filesystem(v7.4.15)-Lockingsymfony/finder(v7.4.14)-Lockingsymfony/http-client(v7.4.16)-Lockingsymfony/http-client-contracts(v3.7.1)-Lockingsymfony/http-foundation(v7.4.16)-Lockingsymfony/http-kernel(v7.4.16)-Lockingsymfony/mailer(v7.4.15)-Lockingsymfony/mime(v7.4.16)-Lockingsymfony/polyfill-ctype(v1.37.0)-Lockingsymfony/polyfill-iconv(v1.37.0)-Lockingsymfony/polyfill-intl-grapheme(v1.41.0)-Lockingsymfony/polyfill-intl-idn(v1.38.1)-Lockingsymfony/polyfill-intl-normalizer(v1.38.0)-Lockingsymfony/polyfill-mbstring(v1.38.2)-Lockingsymfony/polyfill-php80(v1.37.0)-Lockingsymfony/polyfill-php81(v1.38.1)-Lockingsymfony/polyfill-php83(v1.41.0)-Lockingsymfony/polyfill-php84(v1.38.1)-Lockingsymfony/polyfill-php85(v1.41.0)-Lockingsymfony/polyfill-php86(v1.41.0)-Lockingsymfony/process(v7.4.13)-Lockingsymfony/psr-http-message-bridge(v7.4.8)-Lockingsymfony/routing(v7.4.15)-Lockingsymfony/runtime(v7.4.14)-Lockingsymfony/serializer(v7.4.16)-Lockingsymfony/service-contracts(v3.7.1)-Lockingsymfony/string(v7.4.15)-Lockingsymfony/translation(v7.4.16)-Lockingsymfony/translation-contracts(v3.7.1)-Lockingsymfony/validator(v7.4.16)-Lockingsymfony/var-dumper(v7.4.15)-Lockingsymfony/var-exporter(v7.4.16)-Lockingsymfony/yaml(v7.4.15)-Lockingtheseer/tokenizer(1.3.1)-Lockingtwig/html-extra(v3.28.0)-Lockingtwig/twig(v3.28.0)-Lockingvincentlanglet/twig-cs-fixer(4.0.2)-Lockingwebflo/drupal-finder(1.3.1)-Lockingwebmozart/assert(2.4.1)WritinglockfileInstallingdependenciesfromlockfile(includingrequire-dev)Packageoperations:207installs,0updates,0removals-Installingcweagans/composer-configurable-plugin(2.0.0):Extractingarchive-Installingcweagans/composer-patches(2.0.0):Extractingarchive-Downloadingpyrech/composer-changelogs(v2.2.0)-Downloadingsquizlabs/php_codesniffer(4.0.4)-Downloadingdealerdirect/phpcodesniffer-composer-installer(v1.2.1)-Downloadinglocalheinz/diff(1.3.0)-Downloadingergebnis/json-printer(3.8.1)-Downloadingergebnis/json-pointer(3.8.0)-Downloadingergebnis/json(1.6.0)-Downloadingergebnis/json-schema-validator(4.5.1)-Downloadingergebnis/json-normalizer(4.10.1)-Downloadingergebnis/composer-normalize(2.52.0)-Downloadingphpstan/phpstan(2.2.8)-Downloadingphpstan/extension-installer(1.4.3)-Downloadingcomposer/pcre(3.4.0)-Downloadingcomposer/xdebug-handler(3.0.5)-Downloadingdantleech/invoke(2.0.0)-Downloadingcucumber/messages(v19.1.4)-Downloadingcucumber/gherkin(v24.1.0)-Downloadingdantleech/gherkin-lint(0.2.4)-Downloadingdoctrine/instantiator(2.1.0)-Downloadingsymfony/translation(v7.4.16)-Downloadingsymfony/config(v7.4.16)-Downloadingbehat/gherkin(v4.17.0)-Downloadingbehat/behat(v3.32.0)-Downloadingdrevops/behat-format-progress-fail(1.5.1)-Downloadingsymfony/http-client-contracts(v3.7.1)-Downloadingsymfony/http-client(v7.4.16)-Downloadingsymfony/css-selector(v7.4.9)-Downloadingbehat/mink(v1.13.0)-Downloadingfriends-of-behat/mink-extension(v2.7.5)-Downloadingdrevops/behat-screenshot(2.6.0)-Downloadingdrevops/behat-steps(3.14.1)-Downloadingdrevops/phpcs-standard(1.0.0)-Downloadingphpstan/phpdoc-parser(2.3.3)-Downloadingslevomat/coding-standard(8.31.1)-Downloadingsirbrillig/phpcs-variable-analysis(v2.13.0)-Downloadingdrupal/coder(9.0.1)-Downloadingsymfony/dom-crawler(v7.4.12)-Downloadinglullabot/php-webdriver(v2.0.7)-Downloadinglullabot/mink-selenium2-driver(v1.7.4)-Downloadingdrupal/drupal-driver(v3.3.1)-Downloadingsymfony/browser-kit(v8.1.1)-Downloadingbehat/mink-browserkit-driver(v2.3.0)-Downloadingdrupal/drupal-extension(v6.1.0)-Downloadingphpstan/phpstan-deprecation-rules(2.0.5)-Downloadingmglaman/phpstan-drupal(2.1.2)-Downloadingmikey179/vfsstream(v1.6.12)-Downloadingrector/rector(2.6.3)-Downloadingpalantirnet/drupal-rector(1.1.2)-Downloadingphpcsstandards/phpcsutils(1.2.3)-Downloadingphpcompatibility/php-compatibility(10.0.0-alpha2)-Downloadingwebmozart/assert(2.4.1)-Downloadingphpdocumentor/reflection-common(2.2.0)-Downloadingphpdocumentor/type-resolver(2.0.0)-Downloadingphpdocumentor/reflection-docblock(6.0.3)-Downloadingstaabm/side-effects-detector(1.0.5)-Downloadingsebastian/version(5.0.2)-Downloadingsebastian/type(5.1.3)-Downloadingsebastian/recursion-context(6.0.3)-Downloadingsebastian/object-reflector(4.0.1)-Downloadingsebastian/object-enumerator(6.0.1)-Downloadingsebastian/global-state(7.0.2)-Downloadingsebastian/exporter(6.3.2)-Downloadingsebastian/environment(7.2.1)-Downloadingsebastian/comparator(6.3.3)-Downloadingsebastian/code-unit(3.0.3)-Downloadingsebastian/cli-parser(3.0.2)-Downloadingphpunit/php-timer(7.0.1)-Downloadingphpunit/php-text-template(4.0.1)-Downloadingphpunit/php-invoker(5.0.1)-Downloadingphpunit/php-file-iterator(5.1.1)-Downloadingtheseer/tokenizer(1.3.1)-Downloadingsebastian/lines-of-code(3.0.1)-Downloadingsebastian/complexity(4.0.1)-Downloadingsebastian/code-unit-reverse-lookup(4.0.1)-Downloadingphpunit/php-code-coverage(11.0.12)-Downloadingphar-io/version(3.2.1)-Downloadingphar-io/manifest(2.0.4)-Downloadingmyclabs/deep-copy(1.14.0)-Downloadingphpunit/phpunit(11.5.56)-Downloadingphpspec/prophecy(v1.26.1)-Downloadingphpspec/prophecy-phpunit(v2.5.0)-Downloadingsoftcreatr/jsonpath(0.10.0)-Downloadingvincentlanglet/twig-cs-fixer(4.0.2)patches.lock.json does not exist. Creating a new patches.lock.json.-Resolvingpatchesfromdependencies.-Installingcomposer/installers(v2.3.0):Extractingarchive-Installingsymfony/runtime(v7.4.14):Extractingarchive-Installingdrupal/core-composer-scaffold(11.4.5):Extractingarchive-Installingpyrech/composer-changelogs(v2.2.0):Extractingarchive-Installingsquizlabs/php_codesniffer(4.0.4):Extractingarchive-Installingdealerdirect/phpcodesniffer-composer-installer(v1.2.1):Extracti-Installingmarc-mabe/php-enum(v4.7.2):Extractingarchive-Installingjustinrainbow/json-schema(6.8.2):Extractingarchive-Installinglocalheinz/diff(1.3.0):Extractingarchive-Installingergebnis/json-printer(3.8.1):Extractingarchive-Installingergebnis/json-pointer(3.8.0):Extractingarchive-Installingergebnis/json(1.6.0):Extractingarchive-Installingergebnis/json-schema-validator(4.5.1):Extractingarchive-Installingergebnis/json-normalizer(4.10.1):Extractingarchive-Installingergebnis/composer-normalize(2.52.0):Extractingarchive-Installingphpstan/phpstan(2.2.8):Extractingarchive-Installingphpstan/extension-installer(1.4.3):Extractingarchive-Installingpsr/log(3.0.2):Extractingarchive-Installingcomposer/pcre(3.4.0):Extractingarchive-Installingcomposer/xdebug-handler(3.0.5):Extractingarchive-Installingsymfony/polyfill-iconv(v1.37.0):Extractingarchive-Installingsymfony/polyfill-mbstring(v1.38.2):Extractingarchive-Installingsymfony/polyfill-intl-normalizer(v1.38.0):Extractingarchive-Installingsymfony/polyfill-intl-grapheme(v1.41.0):Extractingarchive-Installingsymfony/polyfill-ctype(v1.37.0):Extractingarchive-Installingsymfony/deprecation-contracts(v3.7.1):Extractingarchive-Installingsymfony/string(v7.4.15):Extractingarchive-Installingpsr/container(2.0.2):Extractingarchive-Installingsymfony/service-contracts(v3.7.1):Extractingarchive-Installingsymfony/console(v7.4.16):Extractingarchive-Installingconsolidation/log(3.1.2):Extractingarchive-Installingsymfony/finder(v7.4.14):Extractingarchive-Installingsymfony/filesystem(v7.4.15):Extractingarchive-Installingdantleech/invoke(2.0.0):Extractingarchive-Installingcucumber/messages(v19.1.4):Extractingarchive-Installingcucumber/gherkin(v24.1.0):Extractingarchive-Installingdantleech/gherkin-lint(0.2.4):Extractingarchive-Installingdoctrine/instantiator(2.1.0):Extractingarchive-Installingpsr/cache(3.0.0):Extractingarchive-Installingdoctrine/event-manager(2.1.1):Extractingarchive-Installingdoctrine/deprecations(1.1.6):Extractingarchive-Installingdoctrine/persistence(4.2.0):Extractingarchive-Installingsymfony/yaml(v7.4.15):Extractingarchive-Installingsymfony/translation-contracts(v3.7.1):Extractingarchive-Installingsymfony/translation(v7.4.16):Extractingarchive-Installingpsr/event-dispatcher(1.0.0):Extractingarchive-Installingsymfony/event-dispatcher-contracts(v3.7.1):Extractingarchive-Installingsymfony/event-dispatcher(v7.4.15):Extractingarchive-Installingsymfony/var-exporter(v7.4.16):Extractingarchive-Installingsymfony/dependency-injection(v7.4.16):Extractingarchive-Installingsymfony/config(v7.4.16):Extractingarchive-Installingnikic/php-parser(v5.8.0):Extractingarchive-Installingbehat/gherkin(v4.17.0):Extractingarchive-Installingbehat/behat(v3.32.0):Extractingarchive-Installingdrevops/behat-format-progress-fail(1.5.1):Extractingarchive-Installingsymfony/polyfill-php83(v1.41.0):Extractingarchive-Installingsymfony/http-client-contracts(v3.7.1):Extractingarchive-Installingsymfony/http-client(v7.4.16):Extractingarchive-Installingsymfony/css-selector(v7.4.9):Extractingarchive-Installingbehat/mink(v1.13.0):Extractingarchive-Installingfriends-of-behat/mink-extension(v2.7.5):Extractingarchive-Installingdrevops/behat-screenshot(2.6.0):Extractingarchive-Installingdrevops/behat-steps(3.14.1):Extractingarchive-Installingdrevops/phpcs-standard(1.0.0):Extractingarchive-Installingdrevops/vortex-tooling(1.4.0):Extractingarchive-Installingtwig/twig(v3.28.0):Extractingarchive-Installingsymfony/polyfill-intl-idn(v1.38.1):Extractingarchive-Installingsymfony/mime(v7.4.16):Extractingarchive-Installingtwig/html-extra(v3.28.0):Extractingarchive-Installingsymfony/validator(v7.4.16):Extractingarchive-Installingsymfony/polyfill-php84(v1.38.1):Extractingarchive-Installingsymfony/serializer(v7.4.16):Extractingarchive-Installingsymfony/routing(v7.4.15):Extractingarchive-Installingsymfony/http-foundation(v7.4.16):Extractingarchive-Installingpsr/http-message(2.0):Extractingarchive-Installingsymfony/psr-http-message-bridge(v7.4.8):Extractingarchive-Installingsymfony/process(v7.4.13):Extractingarchive-Installingsymfony/polyfill-php86(v1.41.0):Extractingarchive-Installingsymfony/polyfill-php85(v1.41.0):Extractingarchive-Installingdoctrine/lexer(3.0.1):Extractingarchive-Installingegulias/email-validator(4.0.4):Extractingarchive-Installingsymfony/mailer(v7.4.15):Extractingarchive-Installingsymfony/var-dumper(v7.4.15):Extractingarchive-Installingsymfony/error-handler(v7.4.15):Extractingarchive-Installingsymfony/http-kernel(v7.4.16):Extractingarchive-Installingsebastian/diff(6.0.2):Extractingarchive-Installingrevolt/event-loop(v1.0.9):Extractingarchive-Installingphp-tuf/composer-stager(v2.1.1):Extractingarchive-Installingpear/pear_exception(v1.0.2):Extractingarchive-Installingpear/console_getopt(v1.4.3):Extractingarchive-Installingpear/pear-core-minimal(v1.10.18):Extractingarchive-Installingpear/archive_tar(1.6.1):Extractingarchive-Installingmck89/peast(v1.17.7):Extractingarchive-Installingmasterminds/html5(2.10.1):Extractingarchive-Installingsymfony/polyfill-php80(v1.37.0):Extractingarchive-Installingralouphie/getallheaders(3.0.3):Extractingarchive-Installingpsr/http-factory(1.1.0):Extractingarchive-Installingguzzlehttp/psr7(2.13.0):Extractingarchive-Installingpsr/http-client(1.0.3):Extractingarchive-Installingguzzlehttp/promises(2.5.2):Extractingarchive-Installingguzzlehttp/guzzle(7.15.3):Extractingarchive-Installingcomposer/semver(3.4.4):Extractingarchive-Installingasm89/stack-cors(v2.4.0):Extractingarchive-Installingdrupal/core(11.4.5):Extractingarchive-Installingdrupal/clamav(2.1.0):Extractingarchive-Installingphpstan/phpdoc-parser(2.3.3):Extractingarchive-Installingslevomat/coding-standard(8.31.1):Extractingarchive-Installingsirbrillig/phpcs-variable-analysis(v2.13.0):Extractingarchive-Installingdrupal/coder(9.0.1):Extractingarchive-Installingdrupal/coffee(2.0.1):Extractingarchive-Installingdrupal/config_split(2.0.2):Extractingarchive-Installingdrupal/config_update(2.0.0-alpha4):Extractingarchive-Installingdrupal/core-recommended(11.4.5)-Installingdoctrine/common(3.5.0):Extractingarchive-Installingdrupal/devel(5.5.0):Extractingarchive-Installingwebflo/drupal-finder(1.3.1):Extractingarchive-Installingsymfony/dom-crawler(v7.4.12):Extractingarchive-Installinglullabot/php-webdriver(v2.0.7):Extractingarchive-Installinglullabot/mink-selenium2-driver(v1.7.4):Extractingarchive-Installingdrupal/drupal-driver(v3.3.1):Extractingarchive-Installingsymfony/browser-kit(v8.1.1):Extractingarchive-Installingbehat/mink-browserkit-driver(v2.3.0):Extractingarchive-Installingdrupal/drupal-extension(v6.1.0):Extractingarchive-Installingdrupal/drupal_helpers(2.1.1):Extractingarchive-Installingdrupal/environment_indicator(4.0.25):Extractingarchive-Installingdrupal/generated_content(2.1.1):Extractingarchive-Installingdrupal/navigation_extra_tools(1.3.2):Extractingarchive-Installingdrupal/token(1.17.0):Extractingarchive-Installingdrupal/ctools(4.1.1):Extractingarchive-Installingdrupal/pathauto(1.15.0):Extractingarchive-Installingdrupal/redirect(1.13.0):Extractingarchive-Installingdrupal/redis(1.11.0):Extractingarchive-Installingdrupal/reroute_email(2.3.0-rc2):Extractingarchive-Installingdrupal/robotstxt(1.6.0):Extractingarchive-Installingdrupal/sdc_devel(1.0.3):Extractingarchive-Installinghalaxa/json-machine(1.2.6):Extractingarchive-Installingsolarium/solarium(7.0.0):Extractingarchive-Installingmaennchen/zipstream-php(3.2.2):Extractingarchive-Installinglaminas/laminas-stdlib(3.21.0):Extractingarchive-Installingdrupal/search_api(1.41.0):Extractingarchive-Installingdflydev/dot-access-data(v3.0.3):Extractingarchive-Installingconsolidation/output-formatters(4.7.1):Extractingarchive-Installingconsolidation/annotated-command(4.10.5):Extractingarchive-Installingdrupal/search_api_solr(4.4.0):Extractingarchive-Installingdrupal/seckit(2.0.3):Extractingarchive-Installingdrupal/shield(1.8.0):Extractingarchive-Installingdrupal/stage_file_proxy(4.0.0):Extractingarchive-Installingdrupal/testmode(2.7.2):Extractingarchive-Installingdrupal/xmlsitemap(2.0.0):Extractingarchive-Installingpsy/psysh(v0.12.24):Extractingarchive-Installingleague/container(4.2.5):Extractingarchive-Installinglaravel/prompts(v0.3.23):Extractingarchive-Installinggrasmash/yaml-cli(3.2.1):Extractingarchive-Installinggrasmash/expander(3.0.1):Extractingarchive-Installingconsolidation/config(3.2.1):Extractingarchive-Installingconsolidation/site-alias(4.1.3):Extractingarchive-Installingconsolidation/site-process(6.1.0):Extractingarchive-Installingsymfony/polyfill-php81(v1.38.1):Extractingarchive-Installingphootwork/lang(v3.2.3):Extractingarchive-Installingphootwork/collection(v3.2.3):Extractingarchive-Installingphpowermove/docblock(v4.0):Extractingarchive-Installingconsolidation/robo(5.1.1):Extractingarchive-Installingconsolidation/filter-via-dot-access-data(2.0.3):Extractingarch-Installingchi-teck/drupal-code-generator(4.2.0):Extractingarchive-Installingdrush/drush(13.7.6):Extractingarchive-Installingphpstan/phpstan-deprecation-rules(2.0.5):Extractingarchive-Installingmglaman/phpstan-drupal(2.1.2):Extractingarchive-Installingmikey179/vfsstream(v1.6.12):Extractingarchive-Installingrector/rector(2.6.3):Extractingarchive-Installingpalantirnet/drupal-rector(1.1.2):Extractingarchive-Installingphpcsstandards/phpcsutils(1.2.3):Extractingarchive-Installingphpcompatibility/php-compatibility(10.0.0-alpha2):Extractingar-Installingwebmozart/assert(2.4.1):Extractingarchive-Installingphpdocumentor/reflection-common(2.2.0):Extractingarchive-Installingphpdocumentor/type-resolver(2.0.0):Extractingarchive-Installingphpdocumentor/reflection-docblock(6.0.3):Extractingarchive-Installingstaabm/side-effects-detector(1.0.5):Extractingarchive-Installingsebastian/version(5.0.2):Extractingarchive-Installingsebastian/type(5.1.3):Extractingarchive-Installingsebastian/recursion-context(6.0.3):Extractingarchive-Installingsebastian/object-reflector(4.0.1):Extractingarchive-Installingsebastian/object-enumerator(6.0.1):Extractingarchive-Installingsebastian/global-state(7.0.2):Extractingarchive-Installingsebastian/exporter(6.3.2):Extractingarchive-Installingsebastian/environment(7.2.1):Extractingarchive-Installingsebastian/comparator(6.3.3):Extractingarchive-Installingsebastian/code-unit(3.0.3):Extractingarchive-Installingsebastian/cli-parser(3.0.2):Extractingarchive-Installingphpunit/php-timer(7.0.1):Extractingarchive-Installingphpunit/php-text-template(4.0.1):Extractingarchive-Installingphpunit/php-invoker(5.0.1):Extractingarchive-Installingphpunit/php-file-iterator(5.1.1):Extractingarchive-Installingtheseer/tokenizer(1.3.1):Extractingarchive-Installingsebastian/lines-of-code(3.0.1):Extractingarchive-Installingsebastian/complexity(4.0.1):Extractingarchive-Installingsebastian/code-unit-reverse-lookup(4.0.1):Extractingarchive-Installingphpunit/php-code-coverage(11.0.12):Extractingarchive-Installingphar-io/version(3.2.1):Extractingarchive-Installingphar-io/manifest(2.0.4):Extractingarchive-Installingmyclabs/deep-copy(1.14.0):Extractingarchive-Installingphpunit/phpunit(11.5.56):Extractingarchive-Installingphpspec/prophecy(v1.26.1):Extractingarchive-Installingphpspec/prophecy-phpunit(v2.5.0):Extractingarchive-Installingsoftcreatr/jsonpath(0.10.0):Extractingarchive-Installingvincentlanglet/twig-cs-fixer(4.0.2):Extractingarchive27packagesuggestionswereaddedbynewdependencies,use`composersuggest`toGeneratingautoloadfiles110packagesyouareusingarelookingforfunding.Usethe`composerfund`commandtofindoutmore!Scaffoldingfilesfordrupal/core:-Skip[web-root]/.htaccess:overriddeninstar_wars_org/star_wars-Skip[web-root]/README.md:overriddeninstar_wars_org/star_wars-Skip[web-root]/.csslintrc:overriddeninstar_wars_org/star_wars-Skip[web-root]/robots.txt:overriddeninstar_wars_org/star_wars-Skip[web-root]/update.php:overriddeninstar_wars_org/star_wars-Skip[web-root]/INSTALL.txt:overriddeninstar_wars_org/star_wars-Skip[web-root]/.eslintignore:overriddeninstar_wars_org/star_wars-Skip[web-root]/.eslintrc.json:overriddeninstar_wars_org/star_wars-Skip[web-root]/.ht.router.php:overriddeninstar_wars_org/star_wars-Copy[web-root]/sites/README.txtfromassets/scaffold/files/sites.README.txt-Skip[project-root]/.editorconfig:overriddeninstar_wars_org/star_wars-Skip[web-root]/example.gitignore:overriddeninstar_wars_org/star_wars-Copy[web-root]/themes/README.txtfromassets/scaffold/files/themes.README.txt-Skip[project-root]/.gitattributes:overriddeninstar_wars_org/star_wars-Copy[web-root]/modules/README.txtfromassets/scaffold/files/modules.README.txt-Copy[web-root]/profiles/README.txtfromassets/scaffold/files/profiles.README.txt-Copy[project-root]/recipes/README.txtfromassets/scaffold/files/recipes.README.txt-Skip[web-root]/sites/example.sites.php:overriddeninstar_wars_org/star_wa-Copy[web-root]/sites/development.services.ymlfromassets/scaffold/files/development.services.yml-Skip[web-root]/sites/example.settings.local.php:overriddeninstar_wars_org/star_warsPHPCodeSnifferConfiginstalled_pathssetto../../drevops/phpcs-standard/src,../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,../../phpcsstandards/phpcsutils,../../sirbrillig/phpcs-variable-analysis,../../slevomat/coding-standard-theseer/tokenizerinstalledinversion1.3.1Releasenotes:https://github.com/theseer/tokenizer/releases/tag/1.3.1-sebastian/lines-of-codeinstalledinversion3.0.1Releasenotes:https://github.com/sebastianbergmann/lines-of-code/releases/tag/3.0.1-sebastian/complexityinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/complexity/releases/tag/4.0.1-sebastian/code-unit-reverse-lookupinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/code-unit-reverse-lookup/releases/tag/4.0.1-phpunit/php-code-coverageinstalledinversion11.0.12Releasenotes:https://github.com/sebastianbergmann/php-code-coverage/releases/tag/11.0.12-phar-io/versioninstalledinversion3.2.1Releasenotes:https://github.com/phar-io/version/releases/tag/3.2.1-phar-io/manifestinstalledinversion2.0.4Releasenotes:https://github.com/phar-io/manifest/releases/tag/2.0.4-myclabs/deep-copyinstalledinversion1.14.0Releasenotes:https://github.com/myclabs/DeepCopy/releases/tag/1.14.0-phpunit/phpunitinstalledinversion11.5.56Releasenotes:https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.56-phpspec/prophecyinstalledinversionv1.26.1Releasenotes:https://github.com/phpspec/prophecy/releases/tag/v1.26.1-phpspec/prophecy-phpunitinstalledinversionv2.5.0Releasenotes:https://github.com/phpspec/prophecy-phpunit/releases/tag/v2.5.-softcreatr/jsonpnpmwarndeprecatedwhatwg-encoding@2.0.0:Use@exodus/bytesinsteadforamorespec-conformantandfasterimplementationnpmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupportednpmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.npmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.menpmwarndeprecatedabab@2.0.6:Useyourplatform'snativeatob()andbtoa()methodsinsteadnpmwarndeprecateddomexception@4.0.0:Useyourplatform'snativeDOMExceptioninsteadnpmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinsteadnpmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainsteadnpmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.athinstalledinversion0.10.0Releasenotes:https://github.com/SoftCreatR/JSONPath/releases/tag/0.10.0-vincentlanglet/twig-cs-fixerinstalledinversion4.0.2Releasenotes:https://github.com/VincentLanglet/Twig-CS-Fixer/releases/tag/4.0.2added611packages,andaudited612packagesin[TIME]171packagesarelookingforfundingrun`npmfund`fordetailsfound0vulnerabilitiesnpmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.npmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinsteadnpmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupportednpmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.menpmwarndeprecatedrimraf@2.7.1:Rimrafversionspriortov4arenolongersuppnpmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainsteadnpmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.>star_wars@1.0.0postinstall>patch-packageNopatchfilesfoundpatch-package6.5.1Applyingpatches...added475packages,andaudited476packagesin[TIME]169packagesarelookingforfunding2vulnerabilities(1low,1high)Toaddressallissues(includingbreakingchanges),run:npmauditfix--forceRun`npmaudit`fordetails.>star_wars@1.0.0build>npmrunclean&&mkdir-pbuild/js&&npmrunconcat&&npmrunuglify&&npmrunsass:prod&&npmrunpostcss:prod&&npmruncopy>star_wars@1.0.0clean>rm-rfbuild>star_wars@1.0.0concat>findjs-name'*.js'!-name'*.min.js'-execcat{}+>build/js/star_wars.min.js>star_wars@1.0.0uglify>terserbuild/js/star_wars.min.js-obuild/js/star_wars.min.js-cdrop_console=true-mreserved=['jQuery','Drupal']2>/dev/null||true>star_wars@1.0.0sass:prod>sassscss/styles.scssbuild/css/star_wars.min.css--no-source-map--style=compressed>star_wars@1.0.0postcss:prod>postcssbuild/css/star_wars.min.css-obuild/css/star_wars.min.css--no-map>star_wars@1.0.0copy>npmruncopy:images&&npmruncopy:fonts>star_wars@1.0.0copy:images>mkdir-pbuild/images&&cp-rimages/*build/images/2>/dev/null||true>star_wars@1.0.0copy:fonts>mkdir-pbuild/fonts&&cp-rfonts/*build/fonts/2>/dev/null||true[INFO]Startedsiteprovisioning.Drupalcoreversion:11.4.5Drushversion:13.7.6.0Webrootpath:/app/webPublicfilespath:sites/default/filesPrivatefilespath:sites/default/files/privateTemporaryfilespath:/tmpConfigfilespath:/app/config/defaultDBdumpfilepath:/app/.data/db.sql(present)Profile:standardConfigurationfilespresent:NoExistingsitefound:NoProvisiontype:databaseFallbacktoprofile:NoOverwriteexistingDB:YesSkipDBsanitization:NoSkippost-provisionoperations:NoVerifyconfigafterupdate:NoUsemaintenancemode:Yes[INFO]Provisioningsitefromthedatabasedumpfile.Dumpfilepath:/app/.data/db.sqlExistingsitewasnotfound.Freshsitecontentwillbeimportedfromthedatabasedumpfile.[INFO]Starteddatabasefileimport.//Doyoureallywanttodropalltablesinthedatabasedrupal?:yes.Importeddatabasefromthedumpfile.[OK]Finisheddatabasefileimport.[INFO]CurrentDrupalenvironment:local[TASK]Enablingmaintenancemode.[OK]Enabledmaintenancemode.([TIME])[TASK]Runningdatabaseupdates.[success]Nopendingupdates.[OK]Completedrunningdatabaseupdates.([TIME])[TASK]Clearingcacheafterdatabaseupdates.[success]Cacherebuildcomplete.[OK]Cachewascleared.([TIME])[TASK]Rebuildingcache.[OK]Cachewasrebuilt.([TIME])[TASK]Runningdeploymenthooks.[success]Nopendingdeployhooks.[OK]Completeddeploymenthooks.([TIME])[INFO]Sanitizingdatabase.[notice]TheDrush\Commands\sql\sanitize\SanitizeUserTableCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeCommentsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeUserFieldsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeSessionsCommands::messagessanThefollowingoperationswillbeperformed:*Sanitizeuserpasswords.*Sanitizeuseremails.*Preserveuseremailsandpasswordsforthespecifiedroles.*Sanitizetextfieldsassociatedwithusers.//Doyouwanttosanitizethecurrentdatabase?:yes.[success]Userpasswordssanitized.[success]Useremailssanitized.[OK]Sanitizeddatabaseusingdrushsql:sanitize.[OK]Appliedcustomsanitizationcommandsfromfile.[OK]Resetuser0usernameandemail.[TASK]Runningcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".==>Starteddemomodulesoperations.Environment:local>Creatingthecontentmodel.0/2[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]Applyingrecipe2/2[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]AppliedBasicpagerecipe.[OK]Basicpageappliedsuccessfully<Createdthecontentmodel.>Settingsitename.<Setsitename.>Settinguptheadministrationnavigation.[notice]Alreadyinstalled:navigation<Setuptheadministrationnavigation.>Installingcontribmodules.Thefollowingmodule(s)willbeinstalled:coffee,config_split,config_update,media,environment_indicator,navigation_extra_tools,pathauto,redirect,reroute_email,robotstxt,shield,stage_file_proxy,xmlsitemap,token//Doyouwanttocontinue?:yes.[success]Modulecoffeehasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_splithasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_updatehasbeeninstalled.[success]Modulemediahasbeeninstalled.(Permissions-Configure)[success]Moduleenvironment_indicatorhasbeeninstalled.(Permissions-Configure)[success]Modulenavigation_extra_toolshasbeeninstalled.(Permissions)[success]Modulepathautohasbeeninstalled.(Permissions-Configure)[success]Moduleredirecthasbeeninstalled.(Permissions-Configure)[success]Modulereroute_emailhasbeeninstalled.(Permissions-Configure)[success]Modulerobotstxthasbeeninstalled.(Permissions-Configure)[success]Moduleshieldhasbeeninstalled.(Permissions-Configure)[success]Modulestage_file_proxyhasbeeninstalled.(Permissions-Configure)[success]Modulexmlsitemaphasbeeninstalled.(Permissions-Configure)[success]Moduletokenhasbeeninstalled.<Installedcontribmodules.>InstallingRedismodule.[success]Moduleredishasbeeninstalled.(Permissions-Configure)<InstalledRedismodule.>InstallingandconfiguringClamAV.[success]Moduleclamavhasbeeninstalled.(Permissions-Configure)//Doyouwanttoupdatemode_daemon_tcpip.hostnamekeyinclamav.settings//config?:yes.<InstalledandconfiguredClamAV.>InstallingSolrsearchmodules.Thefollowingmodule(s)willbeinstalled:search_api,search_api_solr,language[success]Modulesearch_apihasbeeninstalled.(Permissions-Configure)[success]Modulesearch_api_solrhasbeeninstalled.[success]Modulelanguagehasbeeninstalled.(Permissions-Configure)<InstalledSolrsearchmodules.>Installingcustomsitemodules.[success]Modulesw_basehasbeeninstalled.Thefollowingmodule(s)willbeinstalled:sw_search,workflows,content_moderation[success]Modulesw_searchhasbeeninstalled.[success]Moduleworkflowshasbeeninstalled.(Permissions-Configure)[success]Modulecontent_moderationhasbeeninstalled.(Permissions-Configure)Thefollowingmodule(s)willbeinstalled:sw_demo,drupal_helpers,testmode[success]Modulesw_demohasbeeninstalled.[success]Moduledrupal_helpershasbeeninstalled.[success]Moduletestmodehasbeeninstalled.(Configure)<Installedcustomsitemodules.>Runningdeploymenthooks.---------------------------------------------------------------------------ModuleHookDescriptionsw_baseinstall_active_themeInstallsdefaultandcustomtheme.@codeCoverageIgnoresw_democonfigure_testmodeConfiguretestmodetofilterthepagesview.Registersthe'sw_demo_pages'viewwithtestmodesothatonlycontentmatchingthe[TEST]prefixappearsduringtestruns.sw_democreate_pages_menu_linkCreate"Pages"menulinkinthemainnavigation.Demonstratesusingthedrupal_helpersmoduletomanagemenulinkswithindeployhooks.sw_demoplace_counter_blockPlacecounterblockinthe"content"region.@codeCoverageIgnoresw_searchadd_editorial_workflowAttacheditorialworkflowtothepagecontenttype.Computedbasefieldslike'moderation_state'areonlyavailablewhenaworkflowisattachedtothecontenttype.//Doyouwishtorunthespecifiedpendingdeployhooks?:yes.>[notice]Deployhookstarted:sw_base_deploy_install_active_theme>[notice]Performed:sw_base_deploy_install_active_theme>[notice]Deployhookstarted:sw_demo_deploy_configure_testmode>[notice]Configuredtestmodetofilterthepagesview.>[notice]Performed:sw_demo_deploy_configure_testmode>[notice]Deployhookstarted:sw_demo_deploy_create_pages_menu_link>[notice]Created"Pages"menulinkinmainnavigation.>[notice]Performed:sw_demo_deploy_create_pages_menu_link>[notice]Deployhookstarted:sw_demo_deploy_place_counter_block>[notice]Counterblockplacedinthe"content"region.>[notice]Performed:sw_demo_deploy_place_counter_block>[notice]Deployhookstarted:sw_search_deploy_add_editorial_workflow>[notice]Attachededitorialworkflowtopagecontenttype.>[notice]Performed:sw_search_deploy_add_editorial_workflow[success]Finishedperformingdeployhooks.<Randeploymenthooks.==>Finisheddemomodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".([TIME])[TASK]Runningcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".==>Starteddevelopmentmodulesoperations.>InstallingSingleDirectoryComponentdevelopmenttools.[success]Modulesdc_develhasbeeninstalled.<InstalledSingleDirectoryComponentdevelopmenttools.>InstallingDevelmodule.[success]Moduledevelhasbeeninstalled.(Permissions-Configure)<InstalledDevelmodule.>InstallingTestmodemodule.[notice]Alreadyinstalled:testmode<InstalledTestmodemodule.>InstallingGeneratedcontentmodule.Startedcreationofgeneratedcontentfrommodules:sw_demo,generated_content.Created"page"node"Demopage1accusamusanimide"[ID:2]Created"page"node"Demopage2asperioresatquem"[ID:3]Created"page"node"Demopage3debitisdelectuse"[ID:4]Created"page"node"Demopage4inmolestiaeoccae"[ID:5]Created"page"node"Demopage5doloribusiustoof"[ID:6]Created"page"node"Demopage6dolorumevenietli"[ID:7]Created"page"node"Demopage7facereidmaximeni"[ID:8]Created"page"node"Demopage8mollitianonsunta"[ID:9]Created"page"node"Demopage9distinctioharump"[ID:10]Created"page"node"Demopage10idimpeditmaximem"[ID:11]Created"page"node"Demopage11culpadebitisnobi"[ID:12]Created"page"node"Demopage12eosiustooptioqui"[ID:13]Created"page"node"Demopage13etitaqueproviden"[ID:14]Created"page"node"Demopage14animiautculpamai"[ID:15]Created"page"node"Demopage15maioresmolestiae"[ID:16]Created"page"node"Demopage16occaecatiperfere"[ID:17]Created"page"node"Demopage17fugaidimpeditnec"[ID:18]Created"page"node"Demopage18estiustomaximequ"[ID:19]Created"page"node"Demopage19consequaturdeser"[ID:20]Created"page"node"Demopage20doloreseosmaxime"[ID:21]Createdgeneratedcontententities"node"withbundle"page".Createdallgeneratedcontent.Finishedcreationofgeneratedcontent.[success]Modulegenerated_contenthasbeeninstalled.(Permissions)<InstalledGeneratedcontentmodule.==>Finisheddevelopmentmodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".([TIME])[TASK]Runningcustompost-installscript"./scripts/provision-30-search-index.sh".==>Startedsearchindexingoperations.Searchindexingskip:0>Resettingsearchindextracker.[success]Contentwassuccessfullyscheduledforreindexing.<Resetsearchindextracker.>Runningsearchindexing.[success]Found21itemstoindexforContent.Indexingallitems.[success]Indexingamaximumnumberof21items(50itemsperbatchrun)fortheindex'Content'.>[notice]Successfullyindexed21itemsonContent.>[notice]Message:Successfullyindexed21items.><Completedsearchindexing.==>Finishedsearchindexingoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-30-search-index.sh".([TIME])[TASK]Runningcustompost-installscript"./scripts/provision-40-example.sh".==>Startedexampleoperations.Runningexampleoperationsinnon-productionenvironment.>Performinganexampleoperation.Replacethiswithyourowncommands.<Performedanexampleoperation.Freshdatabasedetected.Performingadditionalexampleoperations.==>Finishedexampleoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-40-example.sh".([TIME])[TASK]Disablingmaintenancemode.[OK]Disabledmaintenancemode.([TIME])[OK]Finishedsiteprovisioning([TIME]).[INFO]Projectinformation:Projectname:star_warsDockerComposeprojectname:vortex_videosSitelocalURL:http://vortex_videos.docker.amazee.ioPathtowebroot:/app/webDBhost:databaseDBusername:drupalDBpassword:drupalDBport:3306DBportonhost:[PORT]('ahoydb'tostartSequelAce)SolrURLonhost:http://127.0.0.1:[PORT]SeleniumVNCURLonhost:http://localhost:[PORT]/?autoconnect=1&password=secretMailhogURL:http://mailhog.docker.amazee.io/Xdebug:Disabled('ahoydebug'toenable)Siteloginlink:http://vortex_videos.docker.amazee.io/user/reset/1/[TIME]/[REDACTED]/login$$a$ah$aho$ahoyb$ahoybu$ahoybui$ahoybuil#5DONE[TIME]#6[databaseinternal]loadbuilddefinitionfromdatabase.dockerfile#6transferringdockerfile:[SIZE]done#6WARN:SecretsUsedInArgOrEnv:DonotuseARGorENVinstructionsforsensitivedata(ENV"MYSQL_PASSWORD")(line18)#36[clamavstage-14/7]RUNapt-getupdate-qq&&DEBIAN_FRONTEND=noninteractiveapt-getinstall-y--no-install-recommendstzdata&&apt-getclean&&rm-rf/var/lib/apt/lists/*#36CACHED#37[clamavstage-13/7]COPY--from=commons/bin/fix-permissions/bin/ep/bin/docker-sleep/bin/wait-for/bin/#37CACHED#38[clamavstage-16/7]RUNcat/tmp/clamav.conf>>/etc/clamav/clamd.conf&&rm/tmp/clamav.conf&&sed-i"s/^LogFile/#LogFile/g"/etc/clamav/clamd.conf&&sed-i"s/^#LogSyslog/LogSyslog/g"/etc/clamav/clamd.conf&&sed-i"s/^UpdateLogFile/#UpdateLogFile/g"/etc/clamav/freshclam.conf&&sed-i"s/^#LogSyslog/LogSyslog/g"/etc/clamav/freshclam.conf#38CACHED#39[clamavstage-15/7]COPY.docker/config/clamav/clamav.conf/tmp/clamav.conf#39CACHED#40[clamavstage-17/7]RUNfix-permissions/var/lib/clamav#40CACHED#41[nginxinternal]loadbuildcontext#41transferringcontext:[SIZE][TIME]done#41DONE[TIME]#42[clamav]exportingtoimage#43DONE[TIME]#44[clamav]resolvingprovenanceformetadatafile#5320.74Lockfileoperations:207installs,0updates,0removals#5320.74-Lockingasm89/stack-cors(v2.4.0)#5320.74-Lockingbehat/behat(v3.32.0)#5320.74-Lockingbehat/gherkin(v4.17.0)#5320.74-Lockingbehat/mink(v1.13.0)#5320.74-Lockingbehat/mink-browserkit-driver(v2.3.0)#5320.74-Lockingchi-teck/drupal-code-generator(4.2.0)#5320.74-Lockingcomposer/installers(v2.3.0)#5320.74-Lockingcomposer/pcre(3.4.0)#5320.74-Lockingcomposer/semver(3.4.4)#5320.74-Lockingcomposer/xdebug-handler(3.0.5)#5320.74-Lockingconsolidation/annotated-command(4.10.5)#5320.74-Lockingconsolidation/config(3.2.1)#5320.74-Lockingconsolidation/filter-via-dot-access-data(2.0.3)#5320.74-Lockingconsolidation/log(3.1.2)#5320.74-Lockingconsolidation/output-formatters(4.7.1)#5320.74-Lockingconsolidation/robo(5.1.1)#5320.74-Lockingmikey179/vfsstream(v1.6.12)#5320.74-Lockingmyclabs/deep-copy(1.14.0)#5320.74-Lockingnikic/php-parser(v5.8.0)#5320.74-Lockingpalantirnet/drupal-rector(1.1.2)#5320.74-Lockingpear/archive_tar(1.6.1)#5320.74-Lockingpear/console_getopt(v1.4.3)#5320.74-Lockingpear/pear-core-minimal(v1.10.18)#5320.74-Lockingpear/pear_exception(v1.0.2)#5320.74-Lockingphar-io/manifest(2.0.4)#5320.74-Lockingphar-io/version(3.2.1)#5320.74-Lockingphootwork/collection(v3.2.3)#5320.74-Lockingphootwork/lang(v3.2.3)#5320.74-Lockingphp-tuf/composer-stager(v2.1.1)#5320.74-Lockingphpcompatibility/php-compatibility(10.0.0-alpha2)#5320.74-Lockingphpcsstandards/phpcsutils(1.2.3)#5320.74-Lockingphpdocumentor/reflection-common(2.2.0)#5320.74-Lockingphpdocumentor/reflection-docblock(6.0.3)#5320.74-Lockingphpdocumentor/type-resolver(2.0.0)#5320.74-Lockingphpowermove/docblock(v4.0)#5320.74-Lockingphpspec/prophecy(v1.26.1)#5320.74-Lockingphpspec/prophecy-phpunit(v2.5.0)#5320.74-Lockingphpstan/extension-installer(1.4.3)#5320.74-Lockingphpstan/phpdoc-parser(2.3.3)#5320.74-Lockingphpstan/phpstan(2.2.8)#5320.74-Lockingphpstan/phpstan-deprecation-rules(2.0.5)#5320.74-Lockingphpunit/php-code-coverage(11.0.12)#5320.74-Lockingphpunit/php-file-iterator(5.1.1)#5320.74-Lockingphpunit/php-invoker(5.0.1)#5320.74-Lockingphpunit/php-text-template(4.0.1)#5320.74-Lockingphpunit/php-timer(7.0.1)#5320.74-Lockingphpunit/phpunit(11.5.56)#5320.74-Lockingpsr/cache(3.0.0)#5320.74-Lockingpsr/container(2.0.2)#5320.74-Lockingpsr/event-dispatcher(1.0.0)#5320.74-Lockingpsr/http-client(1.0.3)#5320.74-Lockingpsr/http-factory(1.1.0)#5320.74-Lockingpsr/http-message(2.0)#5320.74-Lockingpsr/log(3.0.2)#5320.74-Lockingpsy/psysh(v0.12.24)#5320.74-Lockingpyrech/composer-changelogs(v2.2.0)#5320.74-Lockingralouphie/getallheaders(3.0.3)#5320.74-Lockingsymfony/http-client(v7.4.16)#5320.74-Lockingsymfony/http-client-contracts(v3.7.1)#5322.10-Downloadingsymfony/console(v7.4.16)#5322.10-Downloadingpsr/log(3.0.2)#5322.10-Downloadingconsolidation/log(3.1.2)#5322.10-Downloadingpsr/cache(3.0.0)#5322.10-Downloadingdoctrine/event-manager(2.1.1)#5322.10-Downloadingdoctrine/deprecations(1.1.6)#5322.10-Downloadingdoctrine/persistence(4.2.0)#5322.10-Downloadingdrevops/vortex-tooling(1.4.0)#5322.10-Downloadingtwig/twig(v3.28.0)#5322.10-Downloadingsymfony/polyfill-intl-idn(v1.38.1)#5322.10-Downloadingsymfony/mime(v7.4.16)#5322.10-Downloadingtwig/html-extra(v3.28.0)#5322.10-Downloadingsymfony/yaml(v7.4.15)#5322.10-Downloadingsymfony/translation-contracts(v3.7.1)#5322.10-Downloadingsymfony/polyfill-php83(v1.41.0)#5322.10-Downloadingsymfony/validator(v7.4.16)#5322.10-Downloadingsymfony/polyfill-php84(v1.38.1)#5322.10-Downloadingsymfony/serializer(v7.4.16)#5322.10-Downloadingsymfony/routing(v7.4.15)#5322.11-Downloadingsymfony/http-foundation(v7.4.16)#5322.11-Downloadingpsr/http-message(2.0)#5322.11-Downloadingsymfony/psr-http-message-bridge(v7.4.8)#5322.11-Downloadingsymfony/process(v7.4.13)#5322.11-Downloadingsymfony/dependency-injection(v7.4.16)#5322.11-Downloadingsebastian/diff(6.0.2)#5322.11-Downloadingrevolt/event-loop(v1.0.9)#5322.11-Downloadingphp-tuf/composer-stager(v2.1.1)#5322.11-Downloadingpear/pear_exception(v1.0.2)#5322.11-Downloadingpear/console_getopt(v1.4.3)#5322.11-Downloadingpear/pear-core-minimal(v1.10.18)#5322.11-Downloadingpear/archive_tar(1.6.1)#5322.11-Downloadingmck89/peast(v1.17.7)#5322.11-Downloadingmasterminds/html5(2.10.1)#5322.11-Downloadingmarc-mabe/php-enum(v4.7.2)#5322.11-Downloadingjustinrainbow/json-schema(6.8.2)#5322.11-Downloadingsymfony/polyfill-php80(v1.37.0)#5322.11-Downloadingralouphie/getallheaders(3.0.3)#5322.11-Downloadingpsr/http-factory(1.1.0)#5322.11-Downloadingguzzlehttp/psr7(2.13.0)#5322.11-Downloadingpsr/http-client(1.0.3)#5322.11-Downloadingguzzlehttp/promises(2.5.2)#5322.11-Downloadingguzzlehttp/guzzle(7.15.3)#5322.11-Downloadingcomposer/semver(3.4.4)#5322.11-Downloadingasm89/stack-cors(v2.4.0)#5322.11-Downloadingdrupal/core(11.4.5)#5322.11-Downloadingdrupal/clamav(2.1.0)#5322.11-Downloadingdrupal/coffee(2.0.1)#5322.11-Downloadingdrupal/config_split(2.0.2)#5322.11-Downloadingdrupal/config_update(2.0.0-alpha4)#5322.11-Downloadingdoctrine/common(3.5.0)#5322.11-Downloadingdrupal/devel(5.5.0)#5322.11-Downloadingdrupal/drupal_helpers(2.1.1)#5322.11-Downloadingdrupal/environment_indicator(4.0.25)#5322.11-Downloadingdrupal/generated_content(2.1.1)#5#5322.500/121[>---------------------------]0%#5328.05-Installingmck89/peast(v1.17.7):Extractingarchive#5328.05-Installingmasterminds/html5(2.10.1):Extractingarchive#5328.05-Installingmarc-mabe/php-enum(v4.7.2):Extractingarchive#5328.05-Installingjustinrainbow/json-schema(6.8.2):Extractingarchive#5328.05-Installingsymfony/polyfill-php80(v1.37.0):Extractingarchive#5328.05-Installingralouphie/getallheaders(3.0.3):Extractingarchive#5328.05-Installingpsr/http-factory(1.1.0):Extractingarchive#5328.06-Installingguzzlehttp/psr7(2.13.0):Extractingarchive#5328.06-Installingpsr/http-client(1.0.3):Extractingarchive#5328.06-Installingguzzlehttp/promises(2.5.2):Extractingarchive#5328.06-Installingguzzlehttp/guzzle(7.15.3):Extractingarchive#5328.06-Installingcomposer/semver(3.4.4):Extractingarchive#5328.06-Installingasm89/stack-cors(v2.4.0):Extractingarchive#5328.06-Installingdrupal/core(11.4.5):Extractingarchive#5328.06-Installingdrupal/clamav(2.1.0):Extractingarchive#5328.06-Installingdrupal/coffee(2.0.1):Extractingarchive#5328.06-Installingdrupal/config_split(2.0.2):Extractingarchive#5328.06-Installingdrupal/config_update(2.0.0-alpha4):Extractingarchive#5328.06-Installingdrupal/core-recommended(11.4.5)#5328.06-Installingdoctrine/common(3.5.0):Extractingarchive#5328.06-Installingdrupal/devel(5.5.0):Extractingarchive#5328.06-Installingdrupal/drupal_helpers(2.1.1):Extractingarchive#5328.06-Installingdrupal/environment_indicator(4.0.25):Extractingarchi#5328.06-Installingdrupal/generated_content(2.1.1):Extractingarchive#5328.06-Installingdrupal/navigation_extra_tools(1.3.2):Extractingarchi#5328.06-Installingdrupal/token(1.17.0):Extractingarchive#5328.06-Installingdrupal/ctools(4.1.1):Extractingarchive#5328.06-Installingdrupal/pathauto(1.15.0):Extractingarchive#5328.07-Installingconsolidation/output-formatters(4.7.164/118[===============>------------]54%#5331.1557packagesyouareusingarelookingforfunding.#5331.15Scaffoldingfilesfordrupal/core:#5331.15-Skip[web-root]/.htaccess:overriddeninstar_wars_org/star_wars#5331.15-Skip[web-root]/README.md:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/index.phpfromassets/scaffold/files/index.php#5331.16-Skip[web-root]/.csslintrc:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/robots.txt:overriddeninstar_wars_org/star_warsContainervortex_videos-database-1Creating[TIMContainervortex_videos-wait-for-dependencies-1Creating[TIM[+]up13/14ortex_videos_defaultCreated[TIMIME]olumevortex_videos_solrCreated[TIMIME]ontainervortex_videos-clamav-1Created[TIMContainervortex_videos-cli-1Creating[TIMContainervortex_videos-clamav-1Starting[TIMContainervortex_videos-redis-1Starting[TIMContainervortex_videos-solr-1Starting[TIMContainervortex_videos-database-1Starting[TIMContainervortex_videos-clamav-1Starting[TIMContainervortex_videos-redis-1Starting[TIMContainervortex_videos-solr-1Starting[TIMContainervortex_videos-database-1Starting[TIMContainervortex_videos-clamav-1Starting[TIMContainervortex_videos-redis-1Starting[TIMContainervortex_videos-solr-1Starting[TIMContainervortex_videos-database-1Starting[TIM[+]up16/17vortex_videos-clamav-1Starting[TIMContainervortex_videos-redis-1Starting[TIMContainervortex_videos-redis-1Starting[TIMContainervortex_videos-wait-for-dependencies-1Starting[TIMContainervortex_videos-wait-for-dependencies-1Starting[TIMContainervortex_videos-wait-for-dependencies-1Starting[TIMContainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-wait-for-dependencies-1Waiting10.[TContainervortex_videos-php-1Starting12.[TContainervortex_videos-nginx-1Starting12.[TContainervortex_videos-chrome-1Starting12.[TContainervortex_videos-nginx-1Starting12.[TContainervortex_videos-chrome-1Starting12.[T-Lockingdrupal/devel(5.5.0)-Lockingdrupal/drupal-driver(v3.3.1)-Lockingdrupal/drupal-extension(v6.1.0)-Lockingdrupal/drupal_helpers(2.1.1)-Lockingpear/archive_tar(1.6.1)-Lockingpear/console_getopt(v1.4.3)-Lockingpear/pear-core-minimal(v1.10.18)-Lockingpear/pear_exception(v1.0.2)-Lockingphar-io/manifest(2.0.4)-Lockingphar-io/version(3.2.1)-Lockingphootwork/collection(v3.2.3)-Lockingphootwork/lang(v3.2.3)-Lockingphp-tuf/composer-stager(v2.1.1)-Lockingphpcompatibility/php-compatibility(10.0.0-alpha2)-Lockingphpcsstandards/phpcsutils(1.2.3)-Lockingphpdocumentor/reflection-common(2.2.0)-Lockingphpdocumentor/reflection-docblock(6.0.3)-Lockingphpdocumentor/type-resolver(2.0.0)-Lockingphpowermove/docblock(v4.0)-Lockingphpspec/prophecy(v1.26.1)-Lockingphpspec/prophecy-phpunit(v2.5.0)-Lockingphpstan/extension-installer(1.4.3)-Lockingphpstan/phpdoc-parser(2.3.3)-Lockingphpstan/phpstan(2.2.8)-Lockingphpstan/phpstan-deprecation-rules(2.0.5)-Lockingphpunit/php-code-coverage(11.0.12)-Lockingphpunit/php-file-iterator(5.1.1)-Lockingphpunit/php-invoker(5.0.1)-Lockingphpunit/php-text-template(4.0.1)-Lockingphpunit/php-timer(7.0.1)-Lockingphpunit/phpunit(11.5.56)-Lockingpsr/cache(3.0.0)-Lockingpsr/container(2.0.2)-Lockingpsr/event-dispatcher(1.0.0)-Lockingpsr/http-client(1.0.3)-Lockingpsr/http-factory(1.1.0)-Lockingpsr/http-message(2.0)-Lockingpsr/log(3.0.2)-Lockingpsy/psysh(v0.12.24)-Lockingpyrech/composer-changelogs(v2.2.0)-Lockingralouphie/getallheaders(3.0.3)-Lockingrector/rector(2.6.3)-Lockingrevolt/event-loop(v1.0.9)-Lockingsebastian/cli-parser(3.0.2)-Lockingsebastian/code-unit(3.0.3)-Lockingsebastian/lines-of-code(3.0.1)0/83[>---------------------------]0%0/8[>---------------------------]0%0/187[>---------------------------]0%phpstan/extension-installer:Extensionsinstalled>composer/pcre:installed>mglaman/phpstan-drupal:installed>phpstan/phpstan-deprecation-rules:installed-symfony/translationinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/translation/releases/tag/v7.4.16-psr/event-dispatcherinstalledinversion1.0.0Releasenotes:https://github.com/php-fig/event-dispatcher/releases/tag/1.0.0-symfony/event-dispatcher-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/symfony/event-dispatcher-contracts/releases/tag/v3.7.1-symfony/event-dispatcherinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/event-dispatcher/releases/tag/v7.4.15-symfony/var-exporterinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/var-exporter/releases/tag/v7.4.16-symfony/dependency-injectioninstalledinversionv7.4.16Releasenotes:https://github.com/symfony/dependency-injection/releases/tag/v7.4.16-symfony/configinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/config/releases/tag/v7.4.16-nikic/php-parserinstalledinversionv5.8.0Releasenotes:https://github.com/nikic/PHP-Parser/releases/tag/v5.8.0-behat/gherkininstalledinversionv4.17.0Releasenotes:https://github.com/Behat/Gherkin/releases/tag/v4.17.0-behat/behatinstalledinversionv3.32.0Releasenotes:https://github.com/Behat/Behat/releases/tag/v3.32.0-drevops/behat-format-progress-failinstalledinversion1.5.1Releasenotes:https://github.com/drevops/behat-format-progress-fail/releases/tag/1.5.1-symfony/polyfill-php83installedinversionv1.41.0Releasenotes:https://github.com/symfony/polyfill-php83/releases/tag/v1.41.0-symfony/http-client-contractsinstalledinversionv3.7.1Releasenotes:https://github.-guzzlehttp/promisesinstalledinversion2.5.2Releasenotes:https://github.com/guzzle/promises/releases/tag/2.5.2-guzzlehttp/guzzleinstalledinversion7.15.3Releasenotes:https://github.com/guzzle/guzzle/releases/tag/7.15.3-composer/semverinstalledinversion3.4.4Releasenotes:https://github.com/composer/semver/releases/tag/3.4.4-asm89/stack-corsinstalledinversionv2.4.0Releasenotes:https://github.com/asm89/stack-cors/releases/tag/v2.4.0-drupal/coreinstalledinversion11.4.5Releasenotes:https://github.com/drupal/core/releases/tag/11.4.5-drupal/clamavinstalledinversion2.1.0-phpstan/phpdoc-parserinstalledinversion2.3.3Releasenotes:https://github.com/phpstan/phpdoc-parser/releases/tag/2.3.3-slevomat/coding-standardinstalledinversion8.31.1Releasenotes:https://github.com/slevomat/coding-standard/releases/tag/8.31.1-sirbrillig/phpcs-variable-analysisinstalledinversionv2.13.0Releasenotes:https://github.com/sirbrillig/phpcs-variable-analysis/releases/tag/v2.13.0-drupal/coderinstalledinversion9.0.1Releasenotes:https://github.com/pfrenssen/coder/releases/tag/9.0.1-drupal/coffeeinstalledinversion2.0.1-drupal/config_splitinstalledinversion2.0.2-drupal/config_updateinstalledinversion2.0.0-alpha4-drupal/core-recommendedinstalledinversion11.4.5Releasenotes:https://github.com/drupal/core-recommended/releases/tag/11.4.5-doctrine/commoninstalledinversion3.5.0Releasenotes:https://gReleasenotes:https://github.com/halaxa/json-machine/releases/tag/1.2.6-solarium/solariuminstalledinversion7.0.0Releasenotes:https://github.com/solariumphp/solarium/releases/tag/7.0.0-maennchen/zipstream-phpinstalledinversion3.2.2Releasenotes:https://github.com/maennchen/ZipStream-PHP/releases/tag/3.2.2-laminas/laminas-stdlibinstalledinversion3.21.0Releasenotes:https://github.com/laminas/laminas-stdlib/releases/tag/3.21.0-drupal/search_apiinstalledinversion1.41.0-dflydev/dot-access-datainstalledinversionv3.0.3Releasenotes:https://github.com/dflydev/dflydev-dot-access-data/releases/tag/v3.0.3-consolidation/output-formattersinstalledinversion4.7.1Releasenotes:https://github.com/consolidation/output-formatters/releases/tag/4.7.1-consolidation/annotated-commandinstalledinversion4.10.5Releasenotes:https://github.com/consolidation/annotated-command/releases/tag/4.10.5-drupal/search_api_solrinstalledinversion4.4.0-drupal/seckitinstalledinversion2.0.3-drupal/shieldinstalledinversion1.8.0-drupal/stage_file_proxyinstalledinversion4.0.0-drupal/testmodeinstalledinversion2.7.2-drupal/xmlsitemapinstalledinversion2.0.0-psy/psyshinstalledinversionv0.12.24Releasenotes:https://github.com/bobthecow/psysh/releases/tag/v0.12.24-league/containerinstalledinversion4.2.5Releasenotes:https://github.com/thephpleague/container/releases/tag/4.2.s/tag/5.1.1-softcreatr/jsonpSiteloginlink: \ No newline at end of file +$ahoy$ahoybuild[INFO]StartedVortextoolinginstallation.[OK]FinishedVortextoolinginstallation.[INFO]Startedreset.[OK]Finishedreset.#1[internal]loadlocalbakedefinitions#1readingfromstdin4.03kBdone#1DONE0.0s#2[phpinternal]loadbuilddefinitionfromphp.dockerfile#2transferringdockerfile:526Bdone#2DONE0.0s#3[nginxinternal]loadbuilddefinitionfromnginx-drupal.dockerfile#3transferringdockerfile:675Bdone#3DONE0.0s#4[solrinternal]loadbuilddefinitionfromsolr.dockerfile#4transferringdockerfile:1.46kBdone#4DONE0.0s#5[cliinternal]loadbuilddefinitionfromcli.dockerfile#5transferringdockerfile:4.18kBdone#7[cliinternal]loadmetadatafordocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#7DONE0.0s#8[clamavinternal]loadbuilddefinitionfromclamav.dockerfile#8transferringdockerfile:1.45kBdone#8DONE0.0s#9[databaseinternal]loadmetadatafordocker.io/uselagoon/mysql-8.4:26.8.0#9DONE0.0s#10[cliinternal]load.dockerignore#10transferringcontext:1.23kBdone#10DONE0.0s#11[database1/3]FROMdocker.io/uselagoon/mysql-8.4:26.8.0#11DONE0.0s#12[databaseinternal]loadbuildcontext#12transferringcontext:564Bdone#12DONE0.0s#13[database2/3]COPY./.docker/config/database/my.cnf/etc/mysql/conf.d/server.cnf#13CACHED#14[database3/3]RUNfix-permissions/etc/mysql/conf.d/#14CACHED#15[database]exportingtoimage#15exportinglayersdone#15writingimagesha256:8a8c78a93a7832368d9390e73639ac1215c4ca4bfa61063d6a74e40f61693a27done#15namingtodocker.io/library/vortex_videos-databasedone#15DONE0.0s#16[database]resolvingprovenanceformetadatafile#16DONE0.0s#17[nginxinternal]loadmetadatafordocker.io/uselagoon/nginx-drupal:26.8.0#17...#18[auth]uselagoon/php-8.4-fpm:pulltokenforregistry-1.docker.io#18DONE0.0s#19[auth]uselagoon/commons:pulltokenforregistry-1.docker.io#19DONE0.0s#20[auth]uselagoon/nginx-drupal:pulltokenforregistry-1.docker.io#20DONE0.0s#21[auth]uselagoon/solr-9-drupal:pulltokenforregistry-1.docker.io#21DONE0.0s#22[auth]clamav/clamav-debian:pulltokenforregistry-1.docker.io#22DONE0.0s#23[phpinternal]loadmetadatafordocker.io/uselagoon/php-8.4-fpm:26.8.0#23...#17DONE1.4s#10[solrinternal]load.dockerignore#24[nginxstage-11/5]FROMdocker.io/uselagoon/nginx-drupal:26.8.0@sha256:56ad1a69dc2c752cdd0061a269dcf0723825911bae380565951d7814c701fecf#24DONE0.0s#23DONE1.5s#25[phpstage-11/3]FROMdocker.io/uselagoon/php-8.4-fpm:26.8.0@sha256:cafd9304ab495d6f102fc5ec27f770a4ef33139a89c64bc94db467ccb23ba411#25DONE0.0s#26[nginxinternal]loadbuildcontext#26transferringcontext:254B0.0sdone#26DONE0.0s#27[phpstage-01/10]FROMdocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#27DONE0.0s#28[clamavinternal]loadmetadatafordocker.io/uselagoon/commons:26.8.0#28DONE1.5s#29[clamavinternal]loadmetadatafordocker.io/clamav/clamav-debian:1.5.4#29DONE1.5s#30[solrinternal]loadmetadatafordocker.io/uselagoon/solr-9-drupal:26.8.0#30DONE1.5s#31[clamavstage-11/7]FROMdocker.io/clamav/clamav-debian:1.5.4@sha256:2bb8cd7dfe3e87f86e969a2c415f7698583175e46dc2234672be9210c982c144#31DONE0.0s#32[clamavcommons1/1]FROMdocker.io/uselagoon/commons:26.8.0@sha256:0af1b1ed0e4b76a035415637d910290f8ecd75fb46a05be8ca8bfec24f2a84e6#32DONE0.0s#33[solr1/3]FROMdocker.io/uselagoon/solr-9-drupal:26.8.0@sha256:de7bb5e9758fe8caf4bc2fb726a9e544e10cfa59c78e319592fed6102f804683#33DONE0.0s#34[clamavinternal]loadbuildcontext#34transferringcontext:285Bdone#34DONE0.0s#35[clamavstage-12/7]COPY--from=commons/lagoon/lagoon#35CACHED#36[clamavstage-14/7]RUNapt-getupdate-qq&&DEBIAN_FRONTEND=noninteractiveapt-getinstall-y--no-install-recommendstzdata&&apt-getclean&&rm-rf/var/lib/apt/lists/*#36CACHED#37[clamavstage-13/7]COPY--from=commons/bin/fix-permissions/bin/ep/bin/docker-sleep/bin/wait-for/bin/#37CACHED#38[clamavstage-16/7]RUNcat/tmp/clamav.conf>>/etc/clamav/clamd.conf&&rm/tmp/clamav.conf&&sed-i"s/^LogFile/#LogFile/g"/etc/clamav/clamd.conf&&sed-i"s/^#LogSyslog/LogSyslog/g"/etc/clamav/clamd.conf&&sed-i"s/^UpdateLogFile/#UpdateLogFile/g"/etc/clamav/freshclam.conf&&sed-i"s/^#LogSyslog/LogSyslog/g"/etc/clamav/freshclam.conf#38CACHED#39[clamavstage-15/7]COPY.docker/config/clamav/clamav.conf/tmp/clamav.conf#39CACHED#40[clamavstage-17/7]RUNfix-permissions/var/lib/clamav#40CACHED#41[nginxinternal]loadbuildcontext#41transferringcontext:2.74MB0.1sdone#41DONE0.1s#42[clamav]exportingtoimage#42exportinglayersdone#42writingimagesha256:7ac7c6ac3f13de064a3cfc25b0cb3c1c735436a8b0d2a2391b82a29e945f7658done#42namingtodocker.io/library/vortex_videos-clamavdone#42DONE0.0s#43[solrinternal]loadbuildcontext#43transferringcontext:1.54MB0.0sdone#43DONE0.0s#44[clamav]resolvingprovenanceformetadatafile#44DONE0.0s#45[solr2/3]COPY.docker/config/solr/config-set/solr-conf/conf/#45CACHED#46[solr3/3]RUNsed-i-e"s#<dataDir>${solr.data.dir:}#<dataDir>/var/solr/${solr.core.name}#g"/solr-conf/conf/solrconfig.xml&&sed-i-e"s#solr.lock.type:native#solr.lock.type:none#g"/solr-conf/conf/solrconfig.xml&&sed-i-e"s#solr.autoSoftCommit.MaxTime=5000#solr.autoSoftCommit.MaxTime=-1#g"/solr-conf/conf/solrcore.properties#46CACHED#47[clistage-02/10]RUNapkadd--no-cachencursespvtzdataautoconfg++make&&peclinstallpcov&&docker-php-ext-enablepcov&&docker-php-ext-installpcntl&&apkdelg++makeautoconf#47CACHED#48[clistage-03/10]COPYpatches/app/patches#48CACHED#49[clistage-04/10]COPYscripts/app/scripts#49CACHED#50[solr]exportingtoimage#50exportinglayersdone#50writingimagesha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660fd05e2d58bcaf0.0sdone#50namingtodocker.io/library/vortex_videos-solrdone#50DONE0.1s#51[phpstage-05/10]COPYcomposer.jsoncomposer.*patches.lock.*.env*auth*/app/#51DONE0.1s#52[solr]resolvingprovenanceformetadatafile#52DONE0.0s#53[phpstage-06/10]RUN--mount=type=secret,id=package_tokentoken=$(if[-s/run/secrets/package_token];thencat/run/secrets/package_token;elseecho"XXXXX";fi)&&if[-n"${token}"];thenexportCOMPOSER_AUTH="{"github-oauth":{"github.com":"${token}"}}";fi&&COMPOSER_MEMORY_LIMIT=-1composerinstall-n--no-dev--ansi--prefer-dist--optimize-autoloader#530.260No composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information. #530.261Loadingcomposerrepositorieswithpackageinformation#5320.48Updatingdependencies#5320.74Lockfileoperations:207installs,0updates,0removals#5320.74-Lockingasm89/stack-cors(v2.4.0)#5320.74-Lockingbehat/behat(v3.32.0)#5320.74-Lockingbehat/gherkin(v4.17.0)#5320.74-Lockingbehat/mink(v1.13.0)#5320.74-Lockingbehat/mink-browserkit-driver(v2.3.0)#5320.74-Lockingchi-teck/drupal-code-generator(4.2.0)#5320.74-Lockingcomposer/installers(v2.3.0)#5320.74-Lockingcomposer/pcre(3.4.0)#5320.74-Lockingcomposer/semver(3.4.4)#5320.74-Lockingcomposer/xdebug-handler(3.0.5)#5320.74-Lockingconsolidation/annotated-command(4.10.5)#5320.74-Lockingconsolidation/config(3.2.1)#5320.74-Lockingconsolidation/filter-via-dot-access-data(2.0.3)#5320.74-Lockingconsolidation/log(3.1.2)#5320.74-Lockingconsolidation/output-formatters(4.7.1)#5320.74-Lockingconsolidation/robo(5.1.1)#5320.74-Lockingconsolidation/site-alias(4.1.3)#5320.74-Lockingconsolidation/site-process(6.1.0)#5320.74-Lockingcucumber/gherkin(v24.1.0)#5320.74-Lockingcucumber/messages(v19.1.4)#5320.74-Lockingcweagans/composer-configurable-plugin(2.0.0)#5320.74-Lockingcweagans/composer-patches(2.0.0)#5320.74-Lockingdantleech/gherkin-lint(0.2.4)#5320.74-Lockingdantleech/invoke(2.0.0)#5320.74-Lockingdealerdirect/phpcodesniffer-composer-installer(v1.2.1)#5320.74-Lockingdflydev/dot-access-data(v3.0.3)#5320.74-Lockingdoctrine/common(3.5.0)#5320.74-Lockingdoctrine/deprecations(1.1.6)#5320.74-Lockingdoctrine/event-manager(2.1.1)#5320.74-Lockingdoctrine/instantiator(2.1.0)#5320.74-Lockingdoctrine/lexer(3.0.1)#5320.74-Lockingdoctrine/persistence(4.2.0)#5320.74-Lockingdrevops/behat-format-progress-fail(1.5.1)#5320.74-Lockingdrevops/behat-screenshot(2.6.0)#5320.74-Lockingdrevops/behat-steps(3.14.1)#5320.74-Lockingdrevops/phpcs-standard(1.0.0)#5320.74-Lockingdrevops/vortex-tooling(1.4.0)#5320.74-Lockingdrupal/clamav(2.1.0)#5320.74-Lockingdrupal/coder(9.0.1)#5320.74-Lockingdrupal/coffee(2.0.1)#5320.74-Lockingdrupal/config_split(2.0.2)#5320.74-Lockingdrupal/config_update(2.0.0-alpha4)#5320.74-Lockingdrupal/core(11.4.5)#5320.74-Lockingdrupal/core-composer-scaffold(11.4.5)#5320.74-Lockingdrupal/core-recommended(11.4.5)#5320.74-Lockingdrupal/ctools(4.1.1)#5320.74-Lockingdrupal/devel(5.5.0)#5320.74-Lockingdrupal/drupal-driver(v3.3.1)#5320.74-Lockingdrupal/drupal-extension(v6.1.0)#5320.74-Lockingdrupal/drupal_helpers(2.1.1)#5320.74-Lockingdrupal/environment_indicator(4.0.25)#5320.74-Lockingdrupal/generated_content(2.1.1)#5320.74-Lockingdrupal/navigation_extra_tools(1.3.2)#5320.74-Lockingdrupal/pathauto(1.15.0)#5320.74-Lockingdrupal/redirect(1.13.0)#5320.74-Lockingdrupal/redis(1.11.0)#5320.74-Lockingdrupal/reroute_email(2.3.0-rc2)#5320.74-Lockingdrupal/robotstxt(1.6.0)#5320.74-Lockingdrupal/sdc_devel(1.0.3)#5320.74-Lockingdrupal/search_api(1.41.0)#5320.74-Lockingdrupal/search_api_solr(4.4.0)#5320.74-Lockingdrupal/seckit(2.0.3)#5320.74-Lockingdrupal/shield(1.8.0)#5320.74-Lockingdrupal/stage_file_proxy(4.0.0)#5320.74-Lockingdrupal/testmode(2.7.2)#5320.74-Lockingdrupal/token(1.17.0)#5320.74-Lockingdrupal/xmlsitemap(2.0.0)#5320.74-Lockingdrush/drush(13.7.6)#5320.74-Lockingegulias/email-validator(4.0.4)#5320.74-Lockingergebnis/composer-normalize(2.52.0)#5320.74-Lockingergebnis/json(1.6.0)#5320.74-Lockingergebnis/json-normalizer(4.10.1)#5320.74-Lockingergebnis/json-pointer(3.8.0)#5320.74-Lockingergebnis/json-printer(3.8.1)#5320.74-Lockingergebnis/json-schema-validator(4.5.1)#5320.74-Lockingfriends-of-behat/mink-extension(v2.7.5)#5320.74-Lockinggrasmash/expander(3.0.1)#5320.74-Lockinggrasmash/yaml-cli(3.2.1)#5320.74-Lockingguzzlehttp/guzzle(7.15.3)#5320.74-Lockingguzzlehttp/promises(2.5.2)#5320.74-Lockingguzzlehttp/psr7(2.13.0)#5320.74-Lockinghalaxa/json-machine(1.2.6)#5320.74-Lockingjustinrainbow/json-schema(6.8.2)#5320.74-Lockinglaminas/laminas-stdlib(3.21.0)#5320.74-Lockinglaravel/prompts(v0.3.23)#5320.74-Lockingleague/container(4.2.5)#5320.74-Lockinglocalheinz/diff(1.3.0)#5320.74-Lockinglullabot/mink-selenium2-driver(v1.7.4)#5320.74-Lockinglullabot/php-webdriver(v2.0.7)#5320.74-Lockingmaennchen/zipstream-php(3.2.2)#5320.74-Lockingmarc-mabe/php-enum(v4.7.2)#5320.74-Lockingmasterminds/html5(2.10.1)#5320.74-Lockingmck89/peast(v1.17.7)#5320.74-Lockingmglaman/phpstan-drupal(2.1.2)#5320.74-Lockingmikey179/vfsstream(v1.6.12)#5320.74-Lockingmyclabs/deep-copy(1.14.0)#5320.74-Lockingnikic/php-parser(v5.8.0)#5320.74-Lockingpalantirnet/drupal-rector(1.1.2)#5320.74-Lockingpear/archive_tar(1.6.1)#5320.74-Lockingpear/console_getopt(v1.4.3)#5320.74-Lockingpear/pear-core-minimal(v1.10.18)#5320.74-Lockingpear/pear_exception(v1.0.2)#5320.74-Lockingphar-io/manifest(2.0.4)#5320.74-Lockingphar-io/version(3.2.1)#5320.74-Lockingphootwork/collection(v3.2.3)#5320.74-Lockingphootwork/lang(v3.2.3)#5320.74-Lockingphp-tuf/composer-stager(v2.1.1)#5320.74-Lockingphpcompatibility/php-compatibility(10.0.0-alpha2)#5320.74-Lockingphpcsstandards/phpcsutils(1.2.3)#5320.74-Lockingphpdocumentor/reflection-common(2.2.0)#5320.74-Lockingphpdocumentor/reflection-docblock(6.0.3)#5320.74-Lockingphpdocumentor/type-resolver(2.0.0)#5320.74-Lockingphpowermove/docblock(v4.0)#5320.74-Lockingphpspec/prophecy(v1.26.1)#5320.74-Lockingphpspec/prophecy-phpunit(v2.5.0)#5320.74-Lockingphpstan/extension-installer(1.4.3)#5320.74-Lockingphpstan/phpdoc-parser(2.3.3)#5320.74-Lockingphpstan/phpstan(2.2.8)#5320.74-Lockingphpstan/phpstan-deprecation-rules(2.0.5)#5320.74-Lockingphpunit/php-code-coverage(11.0.12)#5320.74-Lockingphpunit/php-file-iterator(5.1.1)#5320.74-Lockingphpunit/php-invoker(5.0.1)#5320.74-Lockingphpunit/php-text-template(4.0.1)#5320.74-Lockingphpunit/php-timer(7.0.1)#5320.74-Lockingphpunit/phpunit(11.5.56)#5320.74-Lockingpsr/cache(3.0.0)#5320.74-Lockingpsr/container(2.0.2)#5320.74-Lockingpsr/event-dispatcher(1.0.0)#5320.74-Lockingpsr/http-client(1.0.3)#5320.74-Lockingpsr/http-factory(1.1.0)#5320.74-Lockingpsr/http-message(2.0)#5320.74-Lockingpsr/log(3.0.2)#5320.74-Lockingpsy/psysh(v0.12.24)#5320.74-Lockingpyrech/composer-changelogs(v2.2.0)#5320.74-Lockingralouphie/getallheaders(3.0.3)#5320.74-Lockingrector/rector(2.6.3)#5320.74-Lockingrevolt/event-loop(v1.0.9)#5320.74-Lockingsebastian/cli-parser(3.0.2)#5320.74-Lockingsebastian/code-unit(3.0.3)#5320.74-Lockingsebastian/code-unit-reverse-lookup(4.0.1)#5320.74-Lockingsebastian/comparator(6.3.3)#5320.74-Lockingsebastian/complexity(4.0.1)#5320.74-Lockingsebastian/diff(6.0.2)#5320.74-Lockingsebastian/environment(7.2.1)#5320.74-Lockingsebastian/exporter(6.3.2)#5320.74-Lockingsebastian/global-state(7.0.2)#5320.74-Lockingsebastian/lines-of-code(3.0.1)#5320.74-Lockingsebastian/object-enumerator(6.0.1)#5320.74-Lockingsebastian/object-reflector(4.0.1)#5320.74-Lockingsebastian/recursion-context(6.0.3)#5320.74-Lockingsebastian/type(5.1.3)#5320.74-Lockingsebastian/version(5.0.2)#5320.74-Lockingsirbrillig/phpcs-variable-analysis(v2.13.0)#5320.74-Lockingslevomat/coding-standard(8.31.1)#5320.74-Lockingsoftcreatr/jsonpath(0.10.0)#5320.74-Lockingsolarium/solarium(7.0.0)#5320.74-Lockingsquizlabs/php_codesniffer(4.0.4)#5320.74-Lockingstaabm/side-effects-detector(1.0.5)#5320.74-Lockingsymfony/browser-kit(v8.1.1)#5320.74-Lockingsymfony/config(v7.4.16)#5320.74-Lockingsymfony/console(v7.4.16)#5320.74-Lockingsymfony/css-selector(v7.4.9)#5320.74-Lockingsymfony/dependency-injection(v7.4.16)#5320.74-Lockingsymfony/deprecation-contracts(v3.7.1)#5320.74-Lockingsymfony/dom-crawler(v7.4.12)#5320.74-Lockingsymfony/error-handler(v7.4.15)#5320.74-Lockingsymfony/event-dispatcher(v7.4.15)#5320.74-Lockingsymfony/event-dispatcher-contracts(v3.7.1)#5320.74-Lockingsymfony/filesystem(v7.4.15)#5320.74-Lockingsymfony/finder(v7.4.14)#5320.74-Lockingsymfony/http-client(v7.4.16)#5320.74-Lockingsymfony/http-client-contracts(v3.7.1)#5320.74-Lockingsymfony/http-foundation(v7.4.16)#5320.74-Lockingsymfony/http-kernel(v7.4.16)#5320.74-Lockingsymfony/mailer(v7.4.15)#5320.74-Lockingsymfony/mime(v7.4.16)#5320.74-Lockingsymfony/polyfill-ctype(v1.37.0)#5320.74-Lockingsymfony/polyfill-iconv(v1.37.0)#5320.74-Lockingsymfony/polyfill-intl-grapheme(v1.41.0)#5320.74-Lockingsymfony/polyfill-intl-idn(v1.38.1)#5320.74-Lockingsymfony/polyfill-intl-normalizer(v1.38.0)#5320.74-Lockingsymfony/polyfill-mbstring(v1.38.2)#5320.74-Lockingsymfony/polyfill-php80(v1.37.0)#5320.74-Lockingsymfony/polyfill-php81(v1.38.1)#5320.74-Lockingsymfony/polyfill-php83(v1.41.0)#5320.74-Lockingsymfony/polyfill-php84(v1.38.1)#5320.74-Lockingsymfony/polyfill-php85(v1.41.0)#5320.74-Lockingsymfony/polyfill-php86(v1.41.0)#5320.74-Lockingsymfony/process(v7.4.13)#5320.74-Lockingsymfony/psr-http-message-bridge(v7.4.8)#5320.74-Lockingsymfony/routing(v7.4.15)#5320.74-Lockingsymfony/runtime(v7.4.14)#5320.74-Lockingsymfony/serializer(v7.4.16)#5320.74-Lockingsymfony/service-contracts(v3.7.1)#5320.74-Lockingsymfony/string(v7.4.15)#5320.74-Lockingsymfony/translation(v7.4.16)#5320.74-Lockingsymfony/translation-contracts(v3.7.1)#5320.74-Lockingsymfony/validator(v7.4.16)#5320.74-Lockingsymfony/var-dumper(v7.4.15)#5320.74-Lockingsymfony/var-exporter(v7.4.16)#5320.74-Lockingsymfony/yaml(v7.4.15)#5320.74-Lockingtheseer/tokenizer(1.3.1)#5320.74-Lockingtwig/html-extra(v3.28.0)#5320.74-Lockingtwig/twig(v3.28.0)#5320.74-Lockingvincentlanglet/twig-cs-fixer(4.0.2)#5320.74-Lockingwebflo/drupal-finder(1.3.1)#5320.74-Lockingwebmozart/assert(2.4.1)#5320.75Writinglockfile#5320.75Installingdependenciesfromlockfile#5320.75Packageoperations:124installs,0updates,0removals#5320.75-Downloadingcweagans/composer-configurable-plugin(2.0.0)#5321.48-Installingcweagans/composer-configurable-plugin(2.0.0):Extractingarchive#5321.50-Downloadingcweagans/composer-patches(2.0.0)#5322.09-Installingcweagans/composer-patches(2.0.0):Extractingarchive#5322.10-Downloadingcomposer/installers(v2.3.0)#5322.10-Downloadingsymfony/runtime(v7.4.14)#5322.10-Downloadingdrupal/core-composer-scaffold(11.4.5)#5322.10-Downloadingsymfony/polyfill-iconv(v1.37.0)#5322.10-Downloadingsymfony/polyfill-mbstring(v1.38.2)#5322.10-Downloadingsymfony/polyfill-intl-normalizer(v1.38.0)#5322.10-Downloadingsymfony/polyfill-intl-grapheme(v1.41.0)#5322.10-Downloadingsymfony/polyfill-ctype(v1.37.0)#5322.10-Downloadingsymfony/deprecation-contracts(v3.7.1)#5322.10-Downloadingsymfony/string(v7.4.15)#5322.10-Downloadingpsr/container(2.0.2)#5322.10-Downloadingsymfony/service-contracts(v3.7.1)#5322.10-Downloadingsymfony/console(v7.4.16)#5322.10-Downloadingpsr/log(3.0.2)#5322.10-Downloadingconsolidation/log(3.1.2)#5322.10-Downloadingpsr/cache(3.0.0)#5322.10-Downloadingdoctrine/event-manager(2.1.1)#5322.10-Downloadingdoctrine/deprecations(1.1.6)#5322.10-Downloadingdoctrine/persistence(4.2.0)#5322.10-Downloadingdrevops/vortex-tooling(1.4.0)#5322.10-Downloadingtwig/twig(v3.28.0)#5322.10-Downloadingsymfony/polyfill-intl-idn(v1.38.1)#5322.10-Downloadingsymfony/mime(v7.4.16)#5322.10-Downloadingtwig/html-extra(v3.28.0)#5322.10-Downloadingsymfony/yaml(v7.4.15)#5322.10-Downloadingsymfony/translation-contracts(v3.7.1)#5322.10-Downloadingsymfony/polyfill-php83(v1.41.0)#5322.10-Downloadingsymfony/validator(v7.4.16)#5322.10-Downloadingsymfony/polyfill-php84(v1.38.1)#5322.10-Downloadingsymfony/serializer(v7.4.16)#5322.10-Downloadingsymfony/routing(v7.4.15)#5322.11-Downloadingsymfony/http-foundation(v7.4.16)#5322.11-Downloadingpsr/http-message(2.0)#5322.11-Downloadingsymfony/psr-http-message-bridge(v7.4.8)#5322.11-Downloadingsymfony/process(v7.4.13)#5322.11-Downloadingsymfony/polyfill-php86(v1.41.0)#5322.11-Downloadingsymfony/polyfill-php85(v1.41.0)#5322.11-Downloadingpsr/event-dispatcher(1.0.0)#5322.11-Downloadingsymfony/event-dispatcher-contracts(v3.7.1)#5322.11-Downloadingsymfony/event-dispatcher(v7.4.15)#5322.11-Downloadingdoctrine/lexer(3.0.1)#5322.11-Downloadingegulias/email-validator(4.0.4)#5322.11-Downloadingsymfony/mailer(v7.4.15)#5322.11-Downloadingsymfony/var-dumper(v7.4.15)#5322.11-Downloadingsymfony/error-handler(v7.4.15)#5322.11-Downloadingsymfony/http-kernel(v7.4.16)#5322.11-Downloadingsymfony/finder(v7.4.14)#5322.11-Downloadingsymfony/filesystem(v7.4.15)#5322.11-Downloadingsymfony/var-exporter(v7.4.16)#5322.11-Downloadingsymfony/dependency-injection(v7.4.16)#5322.11-Downloadingsebastian/diff(6.0.2)#5322.11-Downloadingrevolt/event-loop(v1.0.9)#5322.11-Downloadingphp-tuf/composer-stager(v2.1.1)#5322.11-Downloadingpear/pear_exception(v1.0.2)#5322.11-Downloadingpear/console_getopt(v1.4.3)#5322.11-Downloadingpear/pear-core-minimal(v1.10.18)#5322.11-Downloadingpear/archive_tar(1.6.1)#5322.11-Downloadingmck89/peast(v1.17.7)#5322.11-Downloadingmasterminds/html5(2.10.1)#5322.11-Downloadingmarc-mabe/php-enum(v4.7.2)#5322.11-Downloadingjustinrainbow/json-schema(6.8.2)#5322.11-Downloadingsymfony/polyfill-php80(v1.37.0)#5322.11-Downloadingralouphie/getallheaders(3.0.3)#5322.11-Downloadingpsr/http-factory(1.1.0)#5322.11-Downloadingguzzlehttp/psr7(2.13.0)#5322.11-Downloadingpsr/http-client(1.0.3)#5322.11-Downloadingguzzlehttp/promises(2.5.2)#5322.11-Downloadingguzzlehttp/guzzle(7.15.3)#5322.11-Downloadingcomposer/semver(3.4.4)#5322.11-Downloadingasm89/stack-cors(v2.4.0)#5322.11-Downloadingdrupal/core(11.4.5)#5322.11-Downloadingdrupal/clamav(2.1.0)#5322.11-Downloadingdrupal/coffee(2.0.1)#5322.11-Downloadingdrupal/config_split(2.0.2)#5322.11-Downloadingdrupal/config_update(2.0.0-alpha4)#5322.11-Downloadingdoctrine/common(3.5.0)#5322.11-Downloadingdrupal/devel(5.5.0)#5322.11-Downloadingdrupal/drupal_helpers(2.1.1)#5322.11-Downloadingdrupal/environment_indicator(4.0.25)#5322.11-Downloadingdrupal/generated_content(2.1.1)#5322.11-Downloadingdrupal/navigation_extra_tools(1.3.2)#5322.11-Downloadingdrupal/token(1.17.0)#5322.11-Downloadingdrupal/ctools(4.1.1)#5322.11-Downloadingdrupal/pathauto(1.15.0)#5322.11-Downloadingdrupal/redirect(1.13.0)#5322.11-Downloadingdrupal/redis(1.11.0)#5322.11-Downloadingdrupal/reroute_email(2.3.0-rc2)#5322.11-Downloadingdrupal/robotstxt(1.6.0)#5322.11-Downloadingdrupal/sdc_devel(1.0.3)#5322.11-Downloadinghalaxa/json-machine(1.2.6)#5322.11-Downloadingsolarium/solarium(7.0.0)#5322.11-Downloadingmaennchen/zipstream-php(3.2.2)#5322.11-Downloadinglaminas/laminas-stdlib(3.21.0)#5322.11-Downloadingdrupal/search_api(1.41.0)#5322.11-Downloadingdflydev/dot-access-data(v3.0.3)#5322.11-Downloadingconsolidation/output-formatters(4.7.1)#5322.11-Downloadingconsolidation/annotated-command(4.10.5)#5322.11-Downloadingdrupal/search_api_solr(4.4.0)#5322.11-Downloadingdrupal/seckit(2.0.3)#5322.12-Downloadingdrupal/shield(1.8.0)#5322.12-Downloadingdrupal/stage_file_proxy(4.0.0)#5322.12-Downloadingdrupal/testmode(2.7.2)#5322.12-Downloadingdrupal/xmlsitemap(2.0.0)#5322.12-Downloadingnikic/php-parser(v5.8.0)#5322.12-Downloadingpsy/psysh(v0.12.24)#5322.12-Downloadingleague/container(4.2.5)#5322.12-Downloadinglaravel/prompts(v0.3.23)#5322.12-Downloadinggrasmash/yaml-cli(3.2.1)#5322.12-Downloadinggrasmash/expander(3.0.1)#5322.12-Downloadingconsolidation/config(3.2.1)#5322.12-Downloadingconsolidation/site-alias(4.1.3)#5322.12-Downloadingconsolidation/site-process(6.1.0)#5322.12-Downloadingsymfony/polyfill-php81(v1.38.1)#5322.12-Downloadingphootwork/lang(v3.2.3)#5322.12-Downloadingphootwork/collection(v3.2.3)#5322.12-Downloadingphpowermove/docblock(v4.0)#5322.12-Downloadingconsolidation/robo(5.1.1)#5322.12-Downloadingconsolidation/filter-via-dot-access-data(2.0.3)#5322.12-Downloadingchi-teck/drupal-code-generator(4.2.0)#5322.12-Downloadingdrush/drush(13.7.6)#5322.12-Downloadingwebflo/drupal-finder(1.3.1)102/121[=======================>----]84%patches.lock.json does not exist. Creating a new patches.lock.json.#5328.01-Resolvingpatchesfromdependencies.#5328.01-Installingcomposer/installers(v2.3.0):Extractingarchive#5328.02-Installingsymfony/runtime(v7.4.14):Extractingarchive#5328.03-Installingdrupal/core-composer-scaffold(11.4.5):Extractingarchive#5328.03-Installingsymfony/polyfill-iconv(v1.37.0):Extractingarchive#5328.03-Installingsymfony/polyfill-mbstring(v1.38.2):Extractingarchive#5328.03-Installingsymfony/polyfill-intl-normalizer(v1.38.0):Extractingarchive#5328.04-Installingsymfony/polyfill-intl-grapheme(v1.41.0):Extractingarchive#5328.04-Installingsymfony/polyfill-ctype(v1.37.0):Extractingarchive#5328.04-Installingsymfony/deprecation-contracts(v3.7.1):Extractingarch#5328.04-Installingsymfony/string(v7.4.15):Extractingarchive#5328.04-Installingpsr/container(2.0.2):Extractingarchive#5328.04-Installingsymfony/service-contracts(v3.7.1):Extractingarchive#5328.04-Installingsymfony/console(v7.4.16):Extractingarchive#5328.04-Installingpsr/log(3.0.2):Extractingarchive#5328.04-Installingconsolidation/log(3.1.2):Extractingarchive#5328.04-Installingpsr/cache(3.0.0):Extractingarchive#5328.04-Installingdoctrine/event-manager(2.1.1):Extractingarchive#5328.04-Installingdoctrine/deprecations(1.1.6):Extractingarchive#5328.04-Installingdoctrine/persistence(4.2.0):Extractingarchive#5328.04-Installingdrevops/vortex-tooling(1.4.0):Extractingarchive#5328.05-Installingtwig/twig(v3.28.0):Extractingarchive#5328.05-Installingsymfony/polyfill-intl-idn(v1.38.1):Extractingarchive#5328.05-Installingsymfony/mime(v7.4.16):Extractingarchive#5328.05-Installingtwig/html-extra(v3.28.0):Extractingarchive#5328.05-Installingsymfony/yaml(v7.4.15):Extractingarchive#5328.05-Installingsymfony/translation-contracts(v3.7.1):Extractingarch#5328.05-Installingsymfony/polyfill-php83(v1.41.0):Extractingarchive#5328.05-Installingsymfony/validator(v7.4.16):Extractingarchive#5328.05-Installingsymfony/polyfill-php84(v1.38.1):Extractingarchive#5328.05-Installingsymfony/serializer(v7.4.16):Extractingarchive#5328.05-Installingsymfony/routing(v7.4.15):Extractingarchive#5328.05-Installingsymfony/http-foundation(v7.4.16):Extractingarchive#5328.05-Installingpsr/http-message(2.0):Extractingarchive#5328.05-Installingsymfony/psr-http-message-bridge(v7.4.8):Extractingar#5328.05-Installingsymfony/process(v7.4.13):Extractingarchive#5328.05-Installingsymfony/polyfill-php86(v1.41.0):Extractingarchive#5328.05-Installingsymfony/polyfill-php85(v1.41.0):Extractingarchive#5328.05-Installingpsr/event-dispatcher(1.0.0):Extractingarchive#5328.05-Installingsymfony/event-dispatcher-contracts(v3.7.1):Extractingarchive#5328.05-Installingsymfony/event-dispatcher(v7.4.15):Extractingarchive#5328.05-Installingdoctrine/lexer(3.0.1):Extractingarchive#5328.05-Installingegulias/email-validator(4.0.4):Extractingarchive#5328.05-Installingsymfony/mailer(v7.4.15):Extractingarchive#5328.05-Installingsymfony/var-dumper(v7.4.15):Extractingarchive#5328.05-Installingsymfony/error-handler(v7.4.15):Extractingarchive#5328.05-Installingsymfony/http-kernel(v7.4.16):Extractingarchive#5328.05-Installingsymfony/finder(v7.4.14):Extractingarchive#5328.05-Installingsymfony/filesystem(v7.4.15):Extractingarchive#5328.05-Installingsymfony/var-exporter(v7.4.16):Extractingarchive#5328.05-Installingsymfony/dependency-injection(v7.4.16):Extractingarch#5328.05-Installingsebastian/diff(6.0.2):Extractingarchive#5328.05-Installingrevolt/event-loop(v1.0.9):Extractingarchive#5328.05-Installingphp-tuf/composer-stager(v2.1.1):Extractingarchive#5328.05-Installingpear/pear_exception(v1.0.2):Extractingarchive#5328.05-Installingpear/console_getopt(v1.4.3):Extractingarchive#5328.05-Installingpear/pear-core-minimal(v1.10.18):Extractingarchive#5328.05-Installingpear/archive_tar(1.6.1):Extractingarchive#5328.05-Installingmck89/peast(v1.17.7):Extractingarchive#5328.05-Installingmasterminds/html5(2.10.1):Extractingarchive#5328.05-Installingmarc-mabe/php-enum(v4.7.2):Extractingarchive#5328.05-Installingjustinrainbow/json-schema(6.8.2):Extractingarchive#5328.05-Installingsymfony/polyfill-php80(v1.37.0):Extractingarchive#5328.05-Installingralouphie/getallheaders(3.0.3):Extractingarchive#5328.05-Installingpsr/http-factory(1.1.0):Extractingarchive#5328.06-Installingguzzlehttp/psr7(2.13.0):Extractingarchive#5328.06-Installingpsr/http-client(1.0.3):Extractingarchive#5328.06-Installingguzzlehttp/promises(2.5.2):Extractingarchive#5328.06-Installingguzzlehttp/guzzle(7.15.3):Extractingarchive#5328.06-Installingcomposer/semver(3.4.4):Extractingarchive#5328.06-Installingasm89/stack-cors(v2.4.0):Extractingarchive#5328.06-Installingdrupal/core(11.4.5):Extractingarchive#5328.06-Installingdrupal/clamav(2.1.0):Extractingarchive#5328.06-Installingdrupal/coffee(2.0.1):Extractingarchive#5328.06-Installingdrupal/config_split(2.0.2):Extractingarchive#5328.06-Installingdrupal/config_update(2.0.0-alpha4):Extractingarchive#5328.06-Installingdrupal/core-recommended(11.4.5)#5328.06-Installingdoctrine/common(3.5.0):Extractingarchive#5328.06-Installingdrupal/devel(5.5.0):Extractingarchive#5328.06-Installingdrupal/drupal_helpers(2.1.1):Extractingarchive#5328.06-Installingdrupal/environment_indicator(4.0.25):Extractingarchive#5328.06-Installingdrupal/generated_content(2.1.1):Extractingarchive#5328.06-Installingdrupal/navigation_extra_tools(1.3.2):Extractingarchi#5328.06-Installingdrupal/token(1.17.0):Extractingarchive#5328.06-Installingdrupal/ctools(4.1.1):Extractingarchive#5328.06-Installingdrupal/pathauto(1.15.0):Extractingarchive#5328.06-Installingdrupal/redirect(1.13.0):Extractingarchive#5328.06-Installingdrupal/redis(1.11.0):Extractingarchive#5328.06-Installingdrupal/reroute_email(2.3.0-rc2):Extractingarchive#5328.06-Installingdrupal/robotstxt(1.6.0):Extractingarchive#5328.06-Installingdrupal/sdc_devel(1.0.3):Extractingarchive#5328.06-Installinghalaxa/json-machine(1.2.6):Extractingarchive#5328.06-Installingsolarium/solarium(7.0.0):Extractingarchive#5328.06-Installingmaennchen/zipstream-php(3.2.2):Extractingarchive#5328.06-Installinglaminas/laminas-stdlib(3.21.0):Extractingarchive#5328.06-Installingdrupal/search_api(1.41.0):Extractingarchive#5328.07-Installingdflydev/dot-access-data(v3.0.3):Extractingarchive#5328.07-Installingconsolidation/output-formatters(4.7.1):Extractingarchive#5328.07-Installingconsolidation/annotated-command(4.10.5):Extractingar#5328.07-Installingdrupal/search_api_solr(4.4.0):Extractingarchive#5328.07-Installingdrupal/seckit(2.0.3):Extractingarchive#5328.07-Installingdrupal/shield(1.8.0):Extractingarchive#5328.07-Installingdrupal/stage_file_proxy(4.0.0):Extractingarchive#5328.07-Installingdrupal/testmode(2.7.2):Extractingarchive#5328.07-Installingdrupal/xmlsitemap(2.0.0):Extractingarchive#5328.07-Installingnikic/php-parser(v5.8.0):Extractingarchive#5328.07-Installingpsy/psysh(v0.12.24):Extractingarchive#5328.07-Installingleague/container(4.2.5):Extractingarchive#5328.07-Installinglaravel/prompts(v0.3.23):Extractingarchive#5328.07-Installinggrasmash/yaml-cli(3.2.1):Extractingarchive#5328.07-Installinggrasmash/expander(3.0.1):Extractingarchive#5328.07-Installingconsolidation/config(3.2.1):Extractingarchive#5328.07-Installingconsolidation/site-alias(4.1.3):Extractingarchive#5328.07-Installingconsolidation/site-process(6.1.0):Extractingarchive#5328.07-Installingsymfony/polyfill-php81(v1.38.1):Extractingarchive#5328.07-Installingphootwork/lang(v3.2.3):Extractingarchive#5328.07-Installingphootwork/collection(v3.2.3):Extractingarchive#5328.07-Installingphpowermove/docblock(v4.0):Extractingarchive#5328.07-Installingconsolidation/robo(5.1.1):Extractingarchive#5328.07-Installingconsolidation/filter-via-dot-access-data(2.0.3):Extractingarchive#5328.07-Installingchi-teck/drupal-code-generator(4.2.0):Extractingarch#5328.07-Installingdrush/drush(13.7.6):Extractingarchive#5328.07-Installingwebflo/drupal-finder(1.3.1):Extractingarchive34packagesuggestionswereaddedbynewdependencies,use`composersuggest`toseedetails.#5330.26Generatingoptimizedautoloadfiles#5331.1557packagesyouareusingarelookingforfunding.#5331.15Usethe`composerfund`commandtofindoutmore!#5331.15Scaffoldingfilesfordrupal/core:#5331.15-Skip[web-root]/.htaccess:overriddeninstar_wars_org/star_wars#5331.15-Skip[web-root]/README.md:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/index.phpfromassets/scaffold/files/index.php#5331.16-Skip[web-root]/.csslintrc:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/robots.txt:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/update.php:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/INSTALL.txt:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/.eslintignore:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/.eslintrc.json:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/.ht.router.php:overriddeninstar_wars_org/star_w#5331.16-Copy[web-root]/sites/README.txtfromassets/scaffold/files/sites.README.txt#5331.16-Skip[project-root]/.editorconfig:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/example.gitignore:overriddeninstar_wars_org/sta#5331.16-Copy[web-root]/themes/README.txtfromassets/scaffold/files/themes.README.txt#5331.16-Skip[project-root]/.gitattributes:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/modules/README.txtfromassets/scaffold/files/modules.README.txt#5331.16-Copy[web-root]/profiles/README.txtfromassets/scaffold/files/profiles.README.txt#5331.16-Copy[project-root]/recipes/README.txtfromassets/scaffold/files/recipes.README.txt#5331.16-Skip[web-root]/sites/example.sites.php:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/sites/development.services.ymlfromassets/scaffold/files/development.services.yml#5331.16-Skip[web-root]/sites/example.settings.local.php:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/sites/default/default.services.ymlfromassets/scaffold/files/default.services.yml#5331.16-Copy[web-root]/sites/default/default.settings.phpfromassets/scaffold/files/default.settings.php#53DONE31.5s#54[nginxstage-07/10]COPY./app#54DONE0.1s#55[phpstage-08/10]RUNmkdir-p-m2775"/app/web/sites/default/files""/app/web/sites/default/files/private""/tmp"#55DONE0.2s#56[clistage-09/10]RUNif["0"!="1"];thentheme_path="/app/web/themes/custom/star_wars";npm--prefix="${theme_path}"ci--no-progress--no-audit--no-fund&&npm--prefix="${theme_path}"runbuild&&npmcacheclean--force;fi#561.432npmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupported#561.756npmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.#561.821npmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.me#562.110npmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinstead#562.119npmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainstead#562.357npmwarndeprecatedrimraf@2.7.1:Rimrafversionspriortov4arenol#563.071npmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.#563.654#563.654>star_wars@1.0.0postinstall#563.654>patch-package#563.738patch-package6.5.1#563.738Applyingpatches...#563.739Nopatchfilesfound#563.753#563.753added475packagesin3s#563.866#563.866>star_wars@1.0.0build#563.866>npmrunclean&&mkdir-pbuild/js&&npmrunconcat&&npmrunuglify&&npmrunsass:prod&&npmrunpostcss:prod&&npmruncopy#563.954#563.954>star_wars@1.0.0clean#563.954>rm-rfbuild#564.049#564.049>star_wars@1.0.0concat#564.049>findjs-name'*.js'!-name'*.min.js'-execcat{}+>build/js/star_wars.min.js#564.143#564.143>star_wars@1.0.0uglify#564.143>terserbuild/js/star_wars.min.js-obuild/js/star_wars.min.js-cdrop_console=true-mreserved=['jQuery','Drupal']2>/dev/null||true#564.322#564.322>star_wars@1.0.0sass:prod#564.322>sassscss/styles.scssbuild/css/star_wars.min.css--no-source-map--style=compressed#564.621#564.621>star_wars@1.0.0postcss:prod#564.621>postcssbuild/css/star_wars.min.css-obuild/css/star_wars.min.css--no-map#564.903#564.903>star_wars@1.0.0copy#564.903>npmruncopy:images&&npmruncopy:fonts#564.991#564.991>star_wars@1.0.0copy:images#564.991>mkdir-pbuild/images&&cp-rimages/*build/images/2>/dev/null||true#565.079#565.079>star_wars@1.0.0copy:fonts#565.079>mkdir-pbuild/fonts&&cp-rfonts/*build/fonts/2>/dev/null||true#565.157npmwarnusing--forceRecommendedprotectionsdisabled.#56DONE5.5s#57[phpstage-010/10]WORKDIR/app#57DONE0.0s#58[cli]exportingtoimage#58exportinglayers#58exportinglayers2.0sdone#58writingimagesha256:e5bc1226bb03f6bd5d7c9faa49347169fd2c080cf00e7e6b6bbe3703f4e3557cdone#58namingtodocker.io/library/vortex_videosdone#58DONE2.0s#59[nginxstage-12/5]RUNapkadd--no-cachetzdata#59CACHED#60[nginxstage-13/5]COPY./.docker/config/nginx/redirects-map.conf/etc/nginx/redirects-map.conf#60CACHED#61[nginxstage-14/5]RUNfix-permissions/etc/nginx#61CACHED#62[phpstage-12/3]RUNapkadd--no-cachetzdata#62CACHED#63[cli]resolvingprovenanceformetadatafile#63DONE0.0s#64[phpstage-13/3]COPY--from=cli/app/app#64DONE3.0s#65[nginxstage-15/5]COPY--from=cli/app/app#65DONE3.0s#66[nginx]exportingtoimage#66exportinglayers2.2sdone#66writingimagesha256:c30ce198ed9988c1a91e2d3e84c92e42e76aa6bb515b2e4ac48eb88de5a38625done#66namingtodocker.io/library/vortex_videos-nginxdone#66DONE2.3s#67[php]exportingtoimage#67exportinglayers2.2sdone#67writingimagesha256:5bcfc19ac83ecf7f42168b526a175fd876eb85b3f22800120b02e63c0a41d0cbdone#67namingtodocker.io/library/vortex_videos-phpdone#67DONE2.3s#68[php]resolvingprovenanceformetadatafile#68DONE0.0s#69[nginx]resolvingprovenanceformetadatafile#69DONE0.0s[+]up8/12Imagevortex_videosBuilt46.8sImagevortex_videos-phpBuilt46.8sImagevortex_videos-nginxBuilt46.8sImagevortex_videos-databaseBuilt46.8sImagevortex_videos-solrBuilt46.8sImagevortex_videos-clamavBuilt46.8sNetworkvortex_videos_defaultCreated0.0sVolumevortex_videos_solrCreated0.0sContainervortex_videos-clamav-1Creating0.1sContainervortex_videos-redis-1Creating0.1sContainervortex_videos-solr-1Creating0.1sContainervortex_videos-database-1Creating0.1s[+]up10/12Containervortex_videos-clamav-1Created0.1sContainervortex_videos-redis-1Created0.1sContainervortex_videos-solr-1Creating0.2sContainervortex_videos-database-1Creating0.2s[+]up12/13Imagevortex_videosBuilt46.8sImagevortex_videos-phpBuilt46.8sImagevortex_videos-nginxBuilt46.8sImagevortex_videos-databaseBuilt46.8sImagevortex_videos-solrBuilt46.8sImagevortex_videos-clamavBuilt46.8sNetworkvortex_videos_defaultCreated0.0sVolumevortex_videos_solrCreated0.0sContainervortex_videos-clamav-1Created0.1sContainervortex_videos-redis-1Created0.1sContainervortex_videos-solr-1Created0.2sContainervortex_videos-database-1Created0.2sContainervortex_videos-wait-for-dependencies-1Creating0.0s[+]up13/14Containervortex_videos-wait-for-dependencies-1Created0.1sContainervortex_videos-cli-1Creating0.0s[+]up14/17Containervortex_videos-cli-1Created0.1sContainervortex_videos-php-1Creating0.0sContainervortex_videos-nginx-1Creating0.0sContainervortex_videos-chrome-1Creating0.0s[+]up15/17Containervortex_videos-php-1Created0.1sContainervortex_videos-nginx-1Creating0.1sContainervortex_videos-chrome-1Creating0.1s[+]up13/17Containervortex_videos-clamav-1Starting0.7sContainervortex_videos-redis-1Starting0.7sContainervortex_videos-solr-1Starting0.7sContainervortex_videos-database-1Starting0.7sContainervortex_videos-nginx-1Created0.1sContainervortex_videos-chrome-1Created0.1sContainervortex_videos-clamav-1Starting0.8sContainervortex_videos-redis-1Starting0.8sContainervortex_videos-solr-1Starting0.8sContainervortex_videos-database-1Starting0.8sContainervortex_videos-clamav-1Starting0.9sContainervortex_videos-redis-1Starting0.9sContainervortex_videos-solr-1Starting0.9sContainervortex_videos-database-1Starting0.9s[+]up16/17Containervortex_videos-clamav-1Started0.9sContainervortex_videos-redis-1Starting1.0sContainervortex_videos-solr-1Started0.9sContainervortex_videos-database-1Started0.9sContainervortex_videos-redis-1Starting1.1sContainervortex_videos-redis-1Started1.2sContainervortex_videos-wait-for-dependencies-1Starting0.9sContainervortex_videos-wait-for-dependencies-1Starting1.0sContainervortex_videos-wait-for-dependencies-1Starting1.1sContainervortex_videos-wait-for-dependencies-1Starting1.2sContainervortex_videos-wait-for-dependencies-1Waiting1.3sContainervortex_videos-wait-for-dependencies-1Waiting1.4sContainervortex_videos-wait-for-dependencies-1Waiting1.5sContainervortex_videos-wait-for-dependencies-1Waiting1.6sContainervortex_videos-wait-for-dependencies-1Waiting1.7sContainervortex_videos-wait-for-dependencies-1Waiting1.8sContainervortex_videos-wait-for-dependencies-1Waiting1.9sContainervortex_videos-wait-for-dependencies-1Waiting2.0sContainervortex_videos-wait-for-dependencies-1Waiting2.1sContainervortex_videos-wait-for-dependencies-1Waiting2.2sContainervortex_videos-wait-for-dependencies-1Waiting2.3sContainervortex_videos-wait-for-dependencies-1Waiting2.4sContainervortex_videos-wait-for-dependencies-1Waiting2.5sContainervortex_videos-wait-for-dependencies-1Waiting2.6sContainervortex_videos-wait-for-dependencies-1Waiting2.7sContainervortex_videos-wait-for-dependencies-1Waiting2.8sContainervortex_videos-wait-for-dependencies-1Waiting2.9sContainervortex_videos-wait-for-dependencies-1Waiting3.0sContainervortex_videos-wait-for-dependencies-1Waiting3.1sContainervortex_videos-wait-for-dependencies-1Waiting3.2sContainervortex_videos-wait-for-dependencies-1Waiting3.3sContainervortex_videos-wait-for-dependencies-1Waiting3.4sContainervortex_videos-wait-for-dependencies-1Waiting3.5sContainervortex_videos-wait-for-dependencies-1Waiting3.6sContainervortex_videos-wait-for-dependencies-1Waiting3.7sContainervortex_videos-wait-for-dependencies-1Waiting3.8sContainervortex_videos-wait-for-dependencies-1Waiting3.9sContainervortex_videos-wait-for-dependencies-1Waiting4.0sContainervortex_videos-wait-for-dependencies-1Waiting4.1sContainervortex_videos-wait-for-dependencies-1Waiting4.2sContainervortex_videos-wait-for-dependencies-1Waiting4.3sContainervortex_videos-wait-for-dependencies-1Waiting4.4sContainervortex_videos-wait-for-dependencies-1Waiting4.5sContainervortex_videos-wait-for-dependencies-1Waiting4.6sContainervortex_videos-wait-for-dependencies-1Waiting4.7sContainervortex_videos-wait-for-dependencies-1Waiting4.8sContainervortex_videos-wait-for-dependencies-1Waiting4.9sContainervortex_videos-wait-for-dependencies-1Waiting5.0sContainervortex_videos-wait-for-dependencies-1Waiting5.1sContainervortex_videos-wait-for-dependencies-1Waiting5.2sContainervortex_videos-wait-for-dependencies-1Waiting5.3sContainervortex_videos-wait-for-dependencies-1Waiting5.4sContainervortex_videos-wait-for-dependencies-1Waiting5.5sContainervortex_videos-wait-for-dependencies-1Waiting5.6sContainervortex_videos-wait-for-dependencies-1Waiting5.7sContainervortex_videos-wait-for-dependencies-1Waiting5.8sContainervortex_videos-wait-for-dependencies-1Waiting5.9sContainervortex_videos-wait-for-dependencies-1Waiting6.0sContainervortex_videos-wait-for-dependencies-1Waiting6.1sContainervortex_videos-wait-for-dependencies-1Waiting6.2sContainervortex_videos-wait-for-dependencies-1Waiting6.3sContainervortex_videos-wait-for-dependencies-1Waiting6.4sContainervortex_videos-wait-for-dependencies-1Waiting6.5sContainervortex_videos-wait-for-dependencies-1Waiting6.6sContainervortex_videos-wait-for-dependencies-1Waiting6.7sContainervortex_videos-wait-for-dependencies-1Waiting6.8sContainervortex_videos-wait-for-dependencies-1Waiting6.9sContainervortex_videos-wait-for-dependencies-1Waiting7.0sContainervortex_videos-wait-for-dependencies-1Waiting7.1sContainervortex_videos-wait-for-dependencies-1Waiting7.2sContainervortex_videos-wait-for-dependencies-1Waiting7.3sContainervortex_videos-wait-for-dependencies-1Waiting7.4sContainervortex_videos-wait-for-dependencies-1Waiting7.5sContainervortex_videos-wait-for-dependencies-1Waiting7.6sContainervortex_videos-wait-for-dependencies-1Waiting7.7sContainervortex_videos-wait-for-dependencies-1Waiting7.8sContainervortex_videos-wait-for-dependencies-1Waiting7.9sContainervortex_videos-wait-for-dependencies-1Waiting8.0sContainervortex_videos-wait-for-dependencies-1Waiting8.1sContainervortex_videos-wait-for-dependencies-1Waiting8.2sContainervortex_videos-wait-for-dependencies-1Waiting8.3sContainervortex_videos-wait-for-dependencies-1Waiting8.4sContainervortex_videos-wait-for-dependencies-1Waiting8.5sContainervortex_videos-wait-for-dependencies-1Waiting8.6sContainervortex_videos-wait-for-dependencies-1Waiting8.7sContainervortex_videos-wait-for-dependencies-1Waiting8.8sContainervortex_videos-wait-for-dependencies-1Waiting8.9sContainervortex_videos-wait-for-dependencies-1Waiting9.0sContainervortex_videos-wait-for-dependencies-1Waiting9.1sContainervortex_videos-wait-for-dependencies-1Waiting9.2sContainervortex_videos-wait-for-dependencies-1Waiting9.3sContainervortex_videos-wait-for-dependencies-1Waiting9.4sContainervortex_videos-wait-for-dependencies-1Waiting9.5sContainervortex_videos-wait-for-dependencies-1Waiting9.6sContainervortex_videos-wait-for-dependencies-1Waiting9.7sContainervortex_videos-wait-for-dependencies-1Waiting9.8sContainervortex_videos-wait-for-dependencies-1Waiting9.9sContainervortex_videos-wait-for-dependencies-1Waiting10.0sContainervortex_videos-wait-for-dependencies-1Waiting10.1sContainervortex_videos-wait-for-dependencies-1Waiting10.2sContainervortex_videos-wait-for-dependencies-1Waiting10.3sContainervortex_videos-wait-for-dependencies-1Waiting10.4sContainervortex_videos-wait-for-dependencies-1Waiting10.5sContainervortex_videos-wait-for-dependencies-1Waiting10.6sContainervortex_videos-wait-for-dependencies-1Waiting10.7sContainervortex_videos-wait-for-dependencies-1Waiting10.8sContainervortex_videos-wait-for-dependencies-1Waiting10.9sContainervortex_videos-wait-for-dependencies-1Waiting11.0sContainervortex_videos-wait-for-dependencies-1Waiting11.1sContainervortex_videos-wait-for-dependencies-1Waiting11.2sContainervortex_videos-wait-for-dependencies-1Waiting11.3sContainervortex_videos-wait-for-dependencies-1Waiting11.4sContainervortex_videos-wait-for-dependencies-1Waiting11.5sContainervortex_videos-wait-for-dependencies-1Waiting11.6sContainervortex_videos-wait-for-dependencies-1Waiting11.7sContainervortex_videos-wait-for-dependencies-1Exited11.8sContainervortex_videos-cli-1Starting11.7sContainervortex_videos-cli-1Starting11.8sContainervortex_videos-cli-1Starting11.9sContainervortex_videos-cli-1Started12.0sContainervortex_videos-php-1Starting11.9sContainervortex_videos-nginx-1Starting11.9sContainervortex_videos-chrome-1Starting11.9sContainervortex_videos-php-1Starting12.0sContainervortex_videos-nginx-1Starting12.0sContainervortex_videos-chrome-1Starting12.0sContainervortex_videos-php-1Starting12.1sContainervortex_videos-nginx-1Starting12.1sContainervortex_videos-chrome-1Starting12.1sContainervortex_videos-php-1Started12.1sContainervortex_videos-nginx-1Starting12.2sContainervortex_videos-chrome-1Starting12.2sContainervortex_videos-nginx-1Starting12.3sContainervortex_videos-chrome-1Started12.3s[+]up17/17Containervortex_videos-nginx-1Started12.4sNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information. LoadingcomposerrepositorieswithpackageinformationUpdatingdependenciesLockfileoperations:207installs,0updates,0removals-Lockingasm89/stack-cors(v2.4.0)-Lockingbehat/behat(v3.32.0)-Lockingbehat/gherkin(v4.17.0)-Lockingbehat/mink(v1.13.0)-Lockingbehat/mink-browserkit-driver(v2.3.0)-Lockingchi-teck/drupal-code-generator(4.2.0)-Lockingcomposer/installers(v2.3.0)-Lockingcomposer/pcre(3.4.0)-Lockingcomposer/semver(3.4.4)-Lockingcomposer/xdebug-handler(3.0.5)-Lockingconsolidation/annotated-command(4.10.5)-Lockingconsolidation/config(3.2.1)-Lockingconsolidation/filter-via-dot-access-data(2.0.3)-Lockingconsolidation/log(3.1.2)-Lockingconsolidation/output-formatters(4.7.1)-Lockingconsolidation/robo(5.1.1)-Lockingconsolidation/site-alias(4.1.3)-Lockingconsolidation/site-process(6.1.0)-Lockingcucumber/gherkin(v24.1.0)-Lockingcucumber/messages(v19.1.4)-Lockingcweagans/composer-configurable-plugin(2.0.0)-Lockingcweagans/composer-patches(2.0.0)-Lockingdantleech/gherkin-lint(0.2.4)-Lockingdantleech/invoke(2.0.0)-Lockingdealerdirect/phpcodesniffer-composer-installer(v1.2.1)-Lockingdflydev/dot-access-data(v3.0.3)-Lockingdoctrine/common(3.5.0)-Lockingdoctrine/deprecations(1.1.6)-Lockingdoctrine/event-manager(2.1.1)-Lockingdoctrine/instantiator(2.1.0)-Lockingdoctrine/lexer(3.0.1)-Lockingdoctrine/persistence(4.2.0)-Lockingdrevops/behat-format-progress-fail(1.5.1)-Lockingdrevops/behat-screenshot(2.6.0)-Lockingdrevops/behat-steps(3.14.1)-Lockingdrevops/phpcs-standard(1.0.0)-Lockingdrevops/vortex-tooling(1.4.0)-Lockingdrupal/clamav(2.1.0)-Lockingdrupal/coder(9.0.1)-Lockingdrupal/coffee(2.0.1)-Lockingdrupal/config_split(2.0.2)-Lockingdrupal/config_update(2.0.0-alpha4)-Lockingdrupal/core(11.4.5)-Lockingdrupal/core-composer-scaffold(11.4.5)-Lockingdrupal/core-recommended(11.4.5)-Lockingdrupal/ctools(4.1.1)-Lockingdrupal/devel(5.5.0)-Lockingdrupal/drupal-driver(v3.3.1)-Lockingdrupal/drupal-extension(v6.1.0)-Lockingdrupal/drupal_helpers(2.1.1)-Lockingdrupal/environment_indicator(4.0.25)-Lockingdrupal/generated_content(2.1.1)-Lockingdrupal/navigation_extra_tools(1.3.2)-Lockingdrupal/pathauto(1.15.0)-Lockingdrupal/redirect(1.13.0)-Lockingdrupal/redis(1.11.0)-Lockingdrupal/reroute_email(2.3.0-rc2)-Lockingdrupal/robotstxt(1.6.0)-Lockingdrupal/sdc_devel(1.0.3)-Lockingdrupal/search_api(1.41.0)-Lockingdrupal/search_api_solr(4.4.0)-Lockingdrupal/seckit(2.0.3)-Lockingdrupal/shield(1.8.0)-Lockingdrupal/stage_file_proxy(4.0.0)-Lockingdrupal/testmode(2.7.2)-Lockingdrupal/token(1.17.0)-Lockingdrupal/xmlsitemap(2.0.0)-Lockingdrush/drush(13.7.6)-Lockingegulias/email-validator(4.0.4)-Lockingergebnis/composer-normalize(2.52.0)-Lockingergebnis/json(1.6.0)-Lockingergebnis/json-normalizer(4.10.1)-Lockingergebnis/json-pointer(3.8.0)-Lockingergebnis/json-printer(3.8.1)-Lockingergebnis/json-schema-validator(4.5.1)-Lockingfriends-of-behat/mink-extension(v2.7.5)-Lockinggrasmash/expander(3.0.1)-Lockinggrasmash/yaml-cli(3.2.1)-Lockingguzzlehttp/guzzle(7.15.3)-Lockingguzzlehttp/promises(2.5.2)-Lockingguzzlehttp/psr7(2.13.0)-Lockinghalaxa/json-machine(1.2.6)-Lockingjustinrainbow/json-schema(6.8.2)-Lockinglaminas/laminas-stdlib(3.21.0)-Lockinglaravel/prompts(v0.3.23)-Lockingleague/container(4.2.5)-Lockinglocalheinz/diff(1.3.0)-Lockinglullabot/mink-selenium2-driver(v1.7.4)-Lockinglullabot/php-webdriver(v2.0.7)-Lockingmaennchen/zipstream-php(3.2.2)-Lockingmarc-mabe/php-enum(v4.7.2)-Lockingmasterminds/html5(2.10.1)-Lockingmck89/peast(v1.17.7)-Lockingmglaman/phpstan-drupal(2.1.2)-Lockingmikey179/vfsstream(v1.6.12)-Lockingmyclabs/deep-copy(1.14.0)-Lockingnikic/php-parser(v5.8.0)-Lockingpalantirnet/drupal-rector(1.1.2)-Lockingpear/archive_tar(1.6.1)-Lockingpear/console_getopt(v1.4.3)-Lockingpear/pear-core-minimal(v1.10.18)-Lockingpear/pear_exception(v1.0.2)-Lockingphar-io/manifest(2.0.4)-Lockingphar-io/version(3.2.1)-Lockingphootwork/collection(v3.2.3)-Lockingphootwork/lang(v3.2.3)-Lockingphp-tuf/composer-stager(v2.1.1)-Lockingphpcompatibility/php-compatibility(10.0.0-alpha2)-Lockingphpcsstandards/phpcsutils(1.2.3)-Lockingphpdocumentor/reflection-common(2.2.0)-Lockingphpdocumentor/reflection-docblock(6.0.3)-Lockingphpdocumentor/type-resolver(2.0.0)-Lockingphpowermove/docblock(v4.0)-Lockingphpspec/prophecy(v1.26.1)-Lockingphpspec/prophecy-phpunit(v2.5.0)-Lockingphpstan/extension-installer(1.4.3)-Lockingphpstan/phpdoc-parser(2.3.3)-Lockingphpstan/phpstan(2.2.8)-Lockingphpstan/phpstan-deprecation-rules(2.0.5)-Lockingphpunit/php-code-coverage(11.0.12)-Lockingphpunit/php-file-iterator(5.1.1)-Lockingphpunit/php-invoker(5.0.1)-Lockingphpunit/php-text-template(4.0.1)-Lockingphpunit/php-timer(7.0.1)-Lockingphpunit/phpunit(11.5.56)-Lockingpsr/cache(3.0.0)-Lockingpsr/container(2.0.2)-Lockingpsr/event-dispatcher(1.0.0)-Lockingpsr/http-client(1.0.3)-Lockingpsr/http-factory(1.1.0)-Lockingpsr/http-message(2.0)-Lockingpsr/log(3.0.2)-Lockingpsy/psysh(v0.12.24)-Lockingpyrech/composer-changelogs(v2.2.0)-Lockingralouphie/getallheaders(3.0.3)-Lockingrector/rector(2.6.3)-Lockingrevolt/event-loop(v1.0.9)-Lockingsebastian/cli-parser(3.0.2)-Lockingsebastian/code-unit(3.0.3)-Lockingsebastian/code-unit-reverse-lookup(4.0.1)-Lockingsebastian/comparator(6.3.3)-Lockingsebastian/complexity(4.0.1)-Lockingsebastian/diff(6.0.2)-Lockingsebastian/environment(7.2.1)-Lockingsebastian/exporter(6.3.2)-Lockingsebastian/global-state(7.0.2)-Lockingsebastian/lines-of-code(3.0.1)-Lockingsebastian/object-enumerator(6.0.1)-Lockingsebastian/object-reflector(4.0.1)-Lockingsebastian/recursion-context(6.0.3)-Lockingsebastian/type(5.1.3)-Lockingsebastian/version(5.0.2)-Lockingsirbrillig/phpcs-variable-analysis(v2.13.0)-Lockingslevomat/coding-standard(8.31.1)-Lockingsoftcreatr/jsonpath(0.10.0)-Lockingsolarium/solarium(7.0.0)-Lockingsquizlabs/php_codesniffer(4.0.4)-Lockingstaabm/side-effects-detector(1.0.5)-Lockingsymfony/browser-kit(v8.1.1)-Lockingsymfony/config(v7.4.16)-Lockingsymfony/console(v7.4.16)-Lockingsymfony/css-selector(v7.4.9)-Lockingsymfony/dependency-injection(v7.4.16)-Lockingsymfony/deprecation-contracts(v3.7.1)-Lockingsymfony/dom-crawler(v7.4.12)-Lockingsymfony/error-handler(v7.4.15)-Lockingsymfony/event-dispatcher(v7.4.15)-Lockingsymfony/event-dispatcher-contracts(v3.7.1)-Lockingsymfony/filesystem(v7.4.15)-Lockingsymfony/finder(v7.4.14)-Lockingsymfony/http-client(v7.4.16)-Lockingsymfony/http-client-contracts(v3.7.1)-Lockingsymfony/http-foundation(v7.4.16)-Lockingsymfony/http-kernel(v7.4.16)-Lockingsymfony/mailer(v7.4.15)-Lockingsymfony/mime(v7.4.16)-Lockingsymfony/polyfill-ctype(v1.37.0)-Lockingsymfony/polyfill-iconv(v1.37.0)-Lockingsymfony/polyfill-intl-grapheme(v1.41.0)-Lockingsymfony/polyfill-intl-idn(v1.38.1)-Lockingsymfony/polyfill-intl-normalizer(v1.38.0)-Lockingsymfony/polyfill-mbstring(v1.38.2)-Lockingsymfony/polyfill-php80(v1.37.0)-Lockingsymfony/polyfill-php81(v1.38.1)-Lockingsymfony/polyfill-php83(v1.41.0)-Lockingsymfony/polyfill-php84(v1.38.1)-Lockingsymfony/polyfill-php85(v1.41.0)-Lockingsymfony/polyfill-php86(v1.41.0)-Lockingsymfony/process(v7.4.13)-Lockingsymfony/psr-http-message-bridge(v7.4.8)-Lockingsymfony/routing(v7.4.15)-Lockingsymfony/runtime(v7.4.14)-Lockingsymfony/serializer(v7.4.16)-Lockingsymfony/service-contracts(v3.7.1)-Lockingsymfony/string(v7.4.15)-Lockingsymfony/translation(v7.4.16)-Lockingsymfony/translation-contracts(v3.7.1)-Lockingsymfony/validator(v7.4.16)-Lockingsymfony/var-dumper(v7.4.15)-Lockingsymfony/var-exporter(v7.4.16)-Lockingsymfony/yaml(v7.4.15)-Lockingtheseer/tokenizer(1.3.1)-Lockingtwig/html-extra(v3.28.0)-Lockingtwig/twig(v3.28.0)-Lockingvincentlanglet/twig-cs-fixer(4.0.2)-Lockingwebflo/drupal-finder(1.3.1)-Lockingwebmozart/assert(2.4.1)WritinglockfileInstallingdependenciesfromlockfile(includingrequire-dev)Packageoperations:207installs,0updates,0removals-Installingcweagans/composer-configurable-plugin(2.0.0):Extractingarchive-Installingcweagans/composer-patches(2.0.0):Extractingarchive-Downloadingpyrech/composer-changelogs(v2.2.0)-Downloadingsquizlabs/php_codesniffer(4.0.4)-Downloadingdealerdirect/phpcodesniffer-composer-installer(v1.2.1)-Downloadinglocalheinz/diff(1.3.0)-Downloadingergebnis/json-printer(3.8.1)-Downloadingergebnis/json-pointer(3.8.0)-Downloadingergebnis/json(1.6.0)-Downloadingergebnis/json-schema-validator(4.5.1)-Downloadingergebnis/json-normalizer(4.10.1)-Downloadingergebnis/composer-normalize(2.52.0)-Downloadingphpstan/phpstan(2.2.8)-Downloadingphpstan/extension-installer(1.4.3)-Downloadingcomposer/pcre(3.4.0)-Downloadingcomposer/xdebug-handler(3.0.5)-Downloadingdantleech/invoke(2.0.0)-Downloadingcucumber/messages(v19.1.4)-Downloadingcucumber/gherkin(v24.1.0)-Downloadingdantleech/gherkin-lint(0.2.4)-Downloadingdoctrine/instantiator(2.1.0)-Downloadingsymfony/translation(v7.4.16)-Downloadingsymfony/config(v7.4.16)-Downloadingbehat/gherkin(v4.17.0)-Downloadingbehat/behat(v3.32.0)-Downloadingdrevops/behat-format-progress-fail(1.5.1)-Downloadingsymfony/http-client-contracts(v3.7.1)-Downloadingsymfony/http-client(v7.4.16)-Downloadingsymfony/css-selector(v7.4.9)-Downloadingbehat/mink(v1.13.0)-Downloadingfriends-of-behat/mink-extension(v2.7.5)-Downloadingdrevops/behat-screenshot(2.6.0)-Downloadingdrevops/behat-steps(3.14.1)-Downloadingdrevops/phpcs-standard(1.0.0)-Downloadingphpstan/phpdoc-parser(2.3.3)-Downloadingslevomat/coding-standard(8.31.1)-Downloadingsirbrillig/phpcs-variable-analysis(v2.13.0)-Downloadingdrupal/coder(9.0.1)-Downloadingsymfony/dom-crawler(v7.4.12)-Downloadinglullabot/php-webdriver(v2.0.7)-Downloadinglullabot/mink-selenium2-driver(v1.7.4)-Downloadingdrupal/drupal-driver(v3.3.1)-Downloadingsymfony/browser-kit(v8.1.1)-Downloadingbehat/mink-browserkit-driver(v2.3.0)-Downloadingdrupal/drupal-extension(v6.1.0)-Downloadingphpstan/phpstan-deprecation-rules(2.0.5)-Downloadingmglaman/phpstan-drupal(2.1.2)-Downloadingmikey179/vfsstream(v1.6.12)-Downloadingrector/rector(2.6.3)-Downloadingpalantirnet/drupal-rector(1.1.2)-Downloadingphpcsstandards/phpcsutils(1.2.3)-Downloadingphpcompatibility/php-compatibility(10.0.0-alpha2)-Downloadingwebmozart/assert(2.4.1)-Downloadingphpdocumentor/reflection-common(2.2.0)-Downloadingphpdocumentor/type-resolver(2.0.0)-Downloadingphpdocumentor/reflection-docblock(6.0.3)-Downloadingstaabm/side-effects-detector(1.0.5)-Downloadingsebastian/version(5.0.2)-Downloadingsebastian/type(5.1.3)-Downloadingsebastian/recursion-context(6.0.3)-Downloadingsebastian/object-reflector(4.0.1)-Downloadingsebastian/object-enumerator(6.0.1)-Downloadingsebastian/global-state(7.0.2)-Downloadingsebastian/exporter(6.3.2)-Downloadingsebastian/environment(7.2.1)-Downloadingsebastian/comparator(6.3.3)-Downloadingsebastian/code-unit(3.0.3)-Downloadingsebastian/cli-parser(3.0.2)-Downloadingphpunit/php-timer(7.0.1)-Downloadingphpunit/php-text-template(4.0.1)-Downloadingphpunit/php-invoker(5.0.1)-Downloadingphpunit/php-file-iterator(5.1.1)-Downloadingtheseer/tokenizer(1.3.1)-Downloadingsebastian/lines-of-code(3.0.1)-Downloadingsebastian/complexity(4.0.1)-Downloadingsebastian/code-unit-reverse-lookup(4.0.1)-Downloadingphpunit/php-code-coverage(11.0.12)-Downloadingphar-io/version(3.2.1)-Downloadingphar-io/manifest(2.0.4)-Downloadingmyclabs/deep-copy(1.14.0)-Downloadingphpunit/phpunit(11.5.56)-Downloadingphpspec/prophecy(v1.26.1)-Downloadingphpspec/prophecy-phpunit(v2.5.0)-Downloadingsoftcreatr/jsonpath(0.10.0)-Downloadingvincentlanglet/twig-cs-fixer(4.0.2)-Resolvingpatchesfromdependencies.-Installingcomposer/installers(v2.3.0):Extractingarchive-Installingsymfony/runtime(v7.4.14):Extractingarchive-Installingdrupal/core-composer-scaffold(11.4.5):Extractingarchive-Installingpyrech/composer-changelogs(v2.2.0):Extractingarchive-Installingsquizlabs/php_codesniffer(4.0.4):Extractingarchive-Installingdealerdirect/phpcodesniffer-composer-installer(v1.2.1):Extracti-Installingmarc-mabe/php-enum(v4.7.2):Extractingarchive-Installingjustinrainbow/json-schema(6.8.2):Extractingarchive-Installinglocalheinz/diff(1.3.0):Extractingarchive-Installingergebnis/json-printer(3.8.1):Extractingarchive-Installingergebnis/json-pointer(3.8.0):Extractingarchive-Installingergebnis/json(1.6.0):Extractingarchive-Installingergebnis/json-schema-validator(4.5.1):Extractingarchive-Installingergebnis/json-normalizer(4.10.1):Extractingarchive-Installingergebnis/composer-normalize(2.52.0):Extractingarchive-Installingphpstan/phpstan(2.2.8):Extractingarchive-Installingphpstan/extension-installer(1.4.3):Extractingarchive-Installingpsr/log(3.0.2):Extractingarchive-Installingcomposer/pcre(3.4.0):Extractingarchive-Installingcomposer/xdebug-handler(3.0.5):Extractingarchive-Installingsymfony/polyfill-iconv(v1.37.0):Extractingarchive-Installingsymfony/polyfill-mbstring(v1.38.2):Extractingarchive-Installingsymfony/polyfill-intl-normalizer(v1.38.0):Extractingarchive-Installingsymfony/polyfill-intl-grapheme(v1.41.0):Extractingarchive-Installingsymfony/polyfill-ctype(v1.37.0):Extractingarchive-Installingsymfony/deprecation-contracts(v3.7.1):Extractingarchive-Installingsymfony/string(v7.4.15):Extractingarchive-Installingpsr/container(2.0.2):Extractingarchive-Installingsymfony/service-contracts(v3.7.1):Extractingarchive-Installingsymfony/console(v7.4.16):Extractingarchive-Installingconsolidation/log(3.1.2):Extractingarchive-Installingsymfony/finder(v7.4.14):Extractingarchive-Installingsymfony/filesystem(v7.4.15):Extractingarchive-Installingdantleech/invoke(2.0.0):Extractingarchive-Installingcucumber/messages(v19.1.4):Extractingarchive-Installingcucumber/gherkin(v24.1.0):Extractingarchive-Installingdantleech/gherkin-lint(0.2.4):Extractingarchive-Installingdoctrine/instantiator(2.1.0):Extractingarchive-Installingpsr/cache(3.0.0):Extractingarchive-Installingdoctrine/event-manager(2.1.1):Extractingarchive-Installingdoctrine/deprecations(1.1.6):Extractingarchive-Installingdoctrine/persistence(4.2.0):Extractingarchive-Installingsymfony/yaml(v7.4.15):Extractingarchive-Installingsymfony/translation-contracts(v3.7.1):Extractingarchive-Installingsymfony/translation(v7.4.16):Extractingarchive-Installingpsr/event-dispatcher(1.0.0):Extractingarchive-Installingsymfony/event-dispatcher-contracts(v3.7.1):Extractingarchive-Installingsymfony/event-dispatcher(v7.4.15):Extractingarchive-Installingsymfony/var-exporter(v7.4.16):Extractingarchive-Installingsymfony/dependency-injection(v7.4.16):Extractingarchive-Installingsymfony/config(v7.4.16):Extractingarchive-Installingnikic/php-parser(v5.8.0):Extractingarchive-Installingbehat/gherkin(v4.17.0):Extractingarchive-Installingbehat/behat(v3.32.0):Extractingarchive-Installingdrevops/behat-format-progress-fail(1.5.1):Extractingarchive-Installingsymfony/polyfill-php83(v1.41.0):Extractingarchive-Installingsymfony/http-client-contracts(v3.7.1):Extractingarchive-Installingsymfony/http-client(v7.4.16):Extractingarchive-Installingsymfony/css-selector(v7.4.9):Extractingarchive-Installingbehat/mink(v1.13.0):Extractingarchive-Installingfriends-of-behat/mink-extension(v2.7.5):Extractingarchive-Installingdrevops/behat-screenshot(2.6.0):Extractingarchive-Installingdrevops/behat-steps(3.14.1):Extractingarchive-Installingdrevops/phpcs-standard(1.0.0):Extractingarchive-Installingdrevops/vortex-tooling(1.4.0):Extractingarchive-Installingtwig/twig(v3.28.0):Extractingarchive-Installingsymfony/polyfill-intl-idn(v1.38.1):Extractingarchive-Installingsymfony/mime(v7.4.16):Extractingarchive-Installingtwig/html-extra(v3.28.0):Extractingarchive-Installingsymfony/validator(v7.4.16):Extractingarchive-Installingsymfony/polyfill-php84(v1.38.1):Extractingarchive-Installingsymfony/serializer(v7.4.16):Extractingarchive-Installingsymfony/routing(v7.4.15):Extractingarchive-Installingsymfony/http-foundation(v7.4.16):Extractingarchive-Installingpsr/http-message(2.0):Extractingarchive-Installingsymfony/psr-http-message-bridge(v7.4.8):Extractingarchive-Installingsymfony/process(v7.4.13):Extractingarchive-Installingsymfony/polyfill-php86(v1.41.0):Extractingarchive-Installingsymfony/polyfill-php85(v1.41.0):Extractingarchive-Installingdoctrine/lexer(3.0.1):Extractingarchive-Installingegulias/email-validator(4.0.4):Extractingarchive-Installingsymfony/mailer(v7.4.15):Extractingarchive-Installingsymfony/var-dumper(v7.4.15):Extractingarchive-Installingsymfony/error-handler(v7.4.15):Extractingarchive-Installingsymfony/http-kernel(v7.4.16):Extractingarchive-Installingsebastian/diff(6.0.2):Extractingarchive-Installingrevolt/event-loop(v1.0.9):Extractingarchive-Installingphp-tuf/composer-stager(v2.1.1):Extractingarchive-Installingpear/pear_exception(v1.0.2):Extractingarchive-Installingpear/console_getopt(v1.4.3):Extractingarchive-Installingpear/pear-core-minimal(v1.10.18):Extractingarchive-Installingpear/archive_tar(1.6.1):Extractingarchive-Installingmck89/peast(v1.17.7):Extractingarchive-Installingmasterminds/html5(2.10.1):Extractingarchive-Installingsymfony/polyfill-php80(v1.37.0):Extractingarchive-Installingralouphie/getallheaders(3.0.3):Extractingarchive-Installingpsr/http-factory(1.1.0):Extractingarchive-Installingguzzlehttp/psr7(2.13.0):Extractingarchive-Installingpsr/http-client(1.0.3):Extractingarchive-Installingguzzlehttp/promises(2.5.2):Extractingarchive-Installingguzzlehttp/guzzle(7.15.3):Extractingarchive-Installingcomposer/semver(3.4.4):Extractingarchive-Installingasm89/stack-cors(v2.4.0):Extractingarchive-Installingdrupal/core(11.4.5):Extractingarchive-Installingdrupal/clamav(2.1.0):Extractingarchive-Installingphpstan/phpdoc-parser(2.3.3):Extractingarchive-Installingslevomat/coding-standard(8.31.1):Extractingarchive-Installingsirbrillig/phpcs-variable-analysis(v2.13.0):Extractingarchive-Installingdrupal/coder(9.0.1):Extractingarchive-Installingdrupal/coffee(2.0.1):Extractingarchive-Installingdrupal/config_split(2.0.2):Extractingarchive-Installingdrupal/config_update(2.0.0-alpha4):Extractingarchive-Installingdrupal/core-recommended(11.4.5)-Installingdoctrine/common(3.5.0):Extractingarchive-Installingdrupal/devel(5.5.0):Extractingarchive-Installingwebflo/drupal-finder(1.3.1):Extractingarchive-Installingsymfony/dom-crawler(v7.4.12):Extractingarchive-Installinglullabot/php-webdriver(v2.0.7):Extractingarchive-Installinglullabot/mink-selenium2-driver(v1.7.4):Extractingarchive-Installingdrupal/drupal-driver(v3.3.1):Extractingarchive-Installingsymfony/browser-kit(v8.1.1):Extractingarchive-Installingbehat/mink-browserkit-driver(v2.3.0):Extractingarchive-Installingdrupal/drupal-extension(v6.1.0):Extractingarchive-Installingdrupal/drupal_helpers(2.1.1):Extractingarchive-Installingdrupal/environment_indicator(4.0.25):Extractingarchive-Installingdrupal/generated_content(2.1.1):Extractingarchive-Installingdrupal/navigation_extra_tools(1.3.2):Extractingarchive-Installingdrupal/token(1.17.0):Extractingarchive-Installingdrupal/ctools(4.1.1):Extractingarchive-Installingdrupal/pathauto(1.15.0):Extractingarchive-Installingdrupal/redirect(1.13.0):Extractingarchive-Installingdrupal/redis(1.11.0):Extractingarchive-Installingdrupal/reroute_email(2.3.0-rc2):Extractingarchive-Installingdrupal/robotstxt(1.6.0):Extractingarchive-Installingdrupal/sdc_devel(1.0.3):Extractingarchive-Installinghalaxa/json-machine(1.2.6):Extractingarchive-Installingsolarium/solarium(7.0.0):Extractingarchive-Installingmaennchen/zipstream-php(3.2.2):Extractingarchive-Installinglaminas/laminas-stdlib(3.21.0):Extractingarchive-Installingdrupal/search_api(1.41.0):Extractingarchive-Installingdflydev/dot-access-data(v3.0.3):Extractingarchive-Installingconsolidation/output-formatters(4.7.1):Extractingarchive-Installingconsolidation/annotated-command(4.10.5):Extractingarchive-Installingdrupal/search_api_solr(4.4.0):Extractingarchive-Installingdrupal/seckit(2.0.3):Extractingarchive-Installingdrupal/shield(1.8.0):Extractingarchive-Installingdrupal/stage_file_proxy(4.0.0):Extractingarchive-Installingdrupal/testmode(2.7.2):Extractingarchive-Installingdrupal/xmlsitemap(2.0.0):Extractingarchive-Installingpsy/psysh(v0.12.24):Extractingarchive-Installingleague/container(4.2.5):Extractingarchive-Installinglaravel/prompts(v0.3.23):Extractingarchive-Installinggrasmash/yaml-cli(3.2.1):Extractingarchive-Installinggrasmash/expander(3.0.1):Extractingarchive-Installingconsolidation/config(3.2.1):Extractingarchive-Installingconsolidation/site-alias(4.1.3):Extractingarchive-Installingconsolidation/site-process(6.1.0):Extractingarchive-Installingsymfony/polyfill-php81(v1.38.1):Extractingarchive-Installingphootwork/lang(v3.2.3):Extractingarchive-Installingphootwork/collection(v3.2.3):Extractingarchive-Installingphpowermove/docblock(v4.0):Extractingarchive-Installingconsolidation/robo(5.1.1):Extractingarchive-Installingconsolidation/filter-via-dot-access-data(2.0.3):Extractingarch-Installingchi-teck/drupal-code-generator(4.2.0):Extractingarchive-Installingdrush/drush(13.7.6):Extractingarchive-Installingphpstan/phpstan-deprecation-rules(2.0.5):Extractingarchive-Installingmglaman/phpstan-drupal(2.1.2):Extractingarchive-Installingmikey179/vfsstream(v1.6.12):Extractingarchive-Installingrector/rector(2.6.3):Extractingarchive-Installingpalantirnet/drupal-rector(1.1.2):Extractingarchive-Installingphpcsstandards/phpcsutils(1.2.3):Extractingarchive-Installingphpcompatibility/php-compatibility(10.0.0-alpha2):Extractingar-Installingwebmozart/assert(2.4.1):Extractingarchive-Installingphpdocumentor/reflection-common(2.2.0):Extractingarchive-Installingphpdocumentor/type-resolver(2.0.0):Extractingarchive-Installingphpdocumentor/reflection-docblock(6.0.3):Extractingarchive-Installingstaabm/side-effects-detector(1.0.5):Extractingarchive-Installingsebastian/version(5.0.2):Extractingarchive-Installingsebastian/type(5.1.3):Extractingarchive-Installingsebastian/recursion-context(6.0.3):Extractingarchive-Installingsebastian/object-reflector(4.0.1):Extractingarchive-Installingsebastian/object-enumerator(6.0.1):Extractingarchive-Installingsebastian/global-state(7.0.2):Extractingarchive-Installingsebastian/exporter(6.3.2):Extractingarchive-Installingsebastian/environment(7.2.1):Extractingarchive-Installingsebastian/comparator(6.3.3):Extractingarchive-Installingsebastian/code-unit(3.0.3):Extractingarchive-Installingsebastian/cli-parser(3.0.2):Extractingarchive-Installingphpunit/php-timer(7.0.1):Extractingarchive-Installingphpunit/php-text-template(4.0.1):Extractingarchive-Installingphpunit/php-invoker(5.0.1):Extractingarchive-Installingphpunit/php-file-iterator(5.1.1):Extractingarchive-Installingtheseer/tokenizer(1.3.1):Extractingarchive-Installingsebastian/lines-of-code(3.0.1):Extractingarchive-Installingsebastian/complexity(4.0.1):Extractingarchive-Installingsebastian/code-unit-reverse-lookup(4.0.1):Extractingarchive-Installingphpunit/php-code-coverage(11.0.12):Extractingarchive-Installingphar-io/version(3.2.1):Extractingarchive-Installingphar-io/manifest(2.0.4):Extractingarchive-Installingmyclabs/deep-copy(1.14.0):Extractingarchive-Installingphpunit/phpunit(11.5.56):Extractingarchive-Installingphpspec/prophecy(v1.26.1):Extractingarchive-Installingphpspec/prophecy-phpunit(v2.5.0):Extractingarchive-Installingsoftcreatr/jsonpath(0.10.0):Extractingarchive-Installingvincentlanglet/twig-cs-fixer(4.0.2):Extractingarchive25/187[===>------------------------]13%27packagesuggestionswereaddedbynewdependencies,use`composersuggest`toGeneratingautoloadfiles110packagesyouareusingarelookingforfunding.Usethe`composerfund`commandtofindoutmore!Scaffoldingfilesfordrupal/core:-Skip[web-root]/.htaccess:overriddeninstar_wars_org/star_wars-Skip[web-root]/README.md:overriddeninstar_wars_org/star_wars-Skip[web-root]/.csslintrc:overriddeninstar_wars_org/star_wars-Skip[web-root]/robots.txt:overriddeninstar_wars_org/star_wars-Skip[web-root]/update.php:overriddeninstar_wars_org/star_wars-Skip[web-root]/INSTALL.txt:overriddeninstar_wars_org/star_wars-Skip[web-root]/.eslintignore:overriddeninstar_wars_org/star_wars-Skip[web-root]/.eslintrc.json:overriddeninstar_wars_org/star_wars-Skip[web-root]/.ht.router.php:overriddeninstar_wars_org/star_wars-Copy[web-root]/sites/README.txtfromassets/scaffold/files/sites.README.txt-Skip[project-root]/.editorconfig:overriddeninstar_wars_org/star_wars-Skip[web-root]/example.gitignore:overriddeninstar_wars_org/star_wars-Copy[web-root]/themes/README.txtfromassets/scaffold/files/themes.README.txt-Skip[project-root]/.gitattributes:overriddeninstar_wars_org/star_wars-Copy[web-root]/modules/README.txtfromassets/scaffold/files/modules.README.txt-Copy[web-root]/profiles/README.txtfromassets/scaffold/files/profiles.README.txt-Copy[project-root]/recipes/README.txtfromassets/scaffold/files/recipes.README.txt-Skip[web-root]/sites/example.sites.php:overriddeninstar_wars_org/star_wa-Copy[web-root]/sites/development.services.ymlfromassets/scaffold/files/development.services.yml-Skip[web-root]/sites/example.settings.local.php:overriddeninstar_wars_org/star_warsPHPCodeSnifferConfiginstalled_pathssetto../../drevops/phpcs-standard/src,../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,../../phpcsstandards/phpcsutils,../../sirbrillig/phpcs-variable-analysis,../../slevomat/coding-standardphpstan/extension-installer:Extensionsinstalled>composer/pcre:installed>mglaman/phpstan-drupal:installed>phpstan/phpstan-deprecation-rules:installed-squizlabs/php_codesnifferinstalledinversion4.0.4Releasenotes:https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/tag/4.0.4-dealerdirect/phpcodesniffer-composer-installerinstalledinversionv1.2.1Releasenotes:https://github.com/PHPCSStandards/composer-installer/releases/tag/v1.2.1-marc-mabe/php-enuminstalledinversionv4.7.2Releasenotes:https://github.com/marc-mabe/php-enum/releases/tag/v4.7.2-justinrainbow/json-schemainstalledinversion6.8.2Releasenotes:https://github.com/jsonrainbow/json-schema/releases/tag/6.8.2-localheinz/diffinstalledinversion1.3.0Releasenotes:https://github.com/localheinz/diff/releases/tag/1.3.0-ergebnis/json-pointerinstalledinversion3.8.0Releasenotes:https://github.com/ergebnis/json-pointer/releases/tag/3.8.0-ergebnis/jsoninstalledinversion1.6.0Releasenotes:https://github.com/ergebnis/json/releases/tag/1.6.0-ergebnis/json-schema-validatorinstalledinversion4.5.1Releasenotes:https://github.com/ergebnis/json-schema-validator/releases/tag/4.5.1-ergebnis/json-normalizerinstalledinversion4.10.1Releasenotes:https://github.com/ergebnis/json-normalizer/releases/tag/4.10.1-ergebnis/composer-normalizeinstalledinversion2.52.0Releasenotes:https://github.com/ergebnis/composer-normalize/releases/tag/2.52.0-phpstan/phpstaninstalledinversion2.2.8-psr/loginstalledinversion3.0.2Releasenotes:https://github.com/php-fig/log/releases/tag/3.0.2-composer/pcreinstalledinversion3.4.0Releasenotes:https://github.com/composer/pcre/releases/tag/3.4.0-composer/xdebug-handlerinstalledinversion3.0.5Releasenotes:https://github.com/composer/xdebug-handler/releases/tag/3.0.5-symfony/polyfill-iconvinstalledinversionv1.37.0Releasenotes:https://github.com/symfony/polyfill-iconv/releases/tag/v1.37.0-symfony/polyfill-mbstringinstalledinversionv1.38.2Releasenotes:https://github.com/symfony/polyfill-mbstring/releases/tag/v1.38.2-symfony/polyfill-intl-normalizerinstalledinversionv1.38.0-symfony/polyfill-intl-graphemeinstalledinversionv1.41.0Releasenotes:https://github.com/symfony/polyfill-intl-grapheme/releases/tag/v1.41.0-symfony/polyfill-ctypeinstalledinversionv1.37.0Releasenotes:https://github.com/symfony/polyfill-ctype/releases/tag/v1.37.0-symfony/deprecation-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/symfony/deprecation-contracts/releases/tag/v3.7.1-symfony/stringinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/string/releases/tag/v7.4.15-psr/containerinstalledinversion2.0.2Releasenotes:https://github.com/php-fig/container/releases/tag/2.0.2-symfony/service-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/symfony/service-contracts/releases/tag/v3.7.1-symf-symfony/consoleinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/console/releases/tag/v7.4.16-consolidation/loginstalledinversion3.1.2Releasenotes:https://github.com/consolidation/log/releases/tag/3.1.2-symfony/finderinstalledinversionv7.4.14Releasenotes:https://github.com/symfony/finder/releases/tag/v7.4.14-symfony/filesysteminstalledinversionv7.4.15Releasenotes:https://github.com/symfony/filesystem/releases/tag/v7.4.15-dantleech/invokeinstalledinversion2.0.0Releasenotes:https://github.com/dantleech/invoke/releases/tag/2.0.0-cucumber/messagesinstalledinversionv19.1.4Releasenotes:https://github.com/cucumber/messages-php/releases/tag/v19.1.4-cucumber/gherkininstalledinversionv24.1.0Releasenotes:https://github.com/cucumber/gherkin-php/releases/tag/v24.1.0.4-doctrine/instantiatorinstalledinversion2.1.0Releasenotes:https://github.com/doctrine/instantiator/releases/tag/2.1.0-psr/cacheinstalledinversion3.0.0Releasenotes:https://github.com/php-fig/cache/releases/tag/3.0.0-doctrine/event-managerinstalledinversion2.1.1Releasenotes:https://github.com/doctrine/event-manager/releases/tag/2.1.1-doctrine/deprecationsinstalledinversion1.1.6Releasenotes:https://github.com/doctrine/deprecations/releases/tag/1.1.6-doctrine/persistenceinstalledinversion4.2.0Releasenotes:https://github.com/doctrine/persistence/releases/tag/4.2.0-symfony/yamlinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/translation-contracts/releases/tag/-symfony/translationinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/translation/releases/tag/v7.4.16-psr/event-dispatcherinstalledinversion1.0.0Releasenotes:https://github.com/php-fig/event-dispatcher/releases/tag/1.0.0-symfony/event-dispatcher-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/symfony/event-dispatcher-contracts/releases/tag/v3.7.1-symfony/event-dispatcherinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/event-dispatcher/releases/tag/v7.4.15-symfony/var-exporterinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/var-exporter/releases/tag/v7.4.16-symfony/dependency-injectioninstalledinversionv7.4.16Releasenotes:https://github.com/symfony/dependency-injection/releases/tag/v7.4.16-symfony/configinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/config/releases/tag/v7.4.16-nikic/php-parserinstalledinversionv5.8.0Releasenotes:https://github.com/nikic/PHP-Parser/releases/tag/v5.8.0-behat/gherkininstalledinversionv4.17.0Releasenotes:https://github.com/Behat/Gherkin/releases/tag/v4.17.0-behat/behatinstalledinversionv3.32.0Releasenotes:https://github.com/Behat/Behat/releases/tag/v3.32.0-drevops/behat-format-progress-failinstalledinversion1.5.1Releasenotes:https://github.com/drevops/behat-format-progress-fail/releases/tag/1.5.1-symfony/polyfill-php83installedinversionv1.41.0Releasenotes:https://github.com/symfony/polyfill-php83/releases/tag/v1.41.0-symfony/http-client-contractsinstalledinversionv3.7.1-symfony/http-clientinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/http-client/releases/tag/v7.4.16-symfony/css-selectorinstalledinversionv7.4.9Releasenotes:https://github.com/symfony/css-selector/releases/tag/v7.4.9-behat/minkinstalledinversionv1.13.0Releasenotes:https://github.com/minkphp/Mink/releases/tag/v1.13.0-friends-of-behat/mink-extensioninstalledinversionv2.7.5Releasenotes:https://github.com/FriendsOfBehat/MinkExtension/releases/tag/v2.7.5-drevops/behat-screenshotinstalledinversion2.6.0Releasenotes:https://github.com/drevops/behat-screenshot/releases/tag/2.6.0-drevops/behat-stepsinstalledinversion3.14.1Releasenotes:https://github.com/drevops/behat-steps/releases/tag/3.14.1-drevops/vortex-toolinginstalledinversion1.4.0Releasenotes:https://github.com/drevops/vortex-tooling/releases/tag/1.4.0-twig/twiginstalledinversionv3.28.0Releasenotes:https://github.com/twigphp/Twig/releases/tag/v3.28.0-symfony/polyfill-intl-idninstalledinversionv1.38.1Releasenotes:https://github.com/symfony/polyfill-intl-idn/releases/tag/v1.38.1-symfony/mimeinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/mime/releases/tag/v7.4.16-twig/html-extrainstalledinversionv3.28.0Releasenotes:https://github.com/twigphp/html-extra/releases/tag/v3.28.0-symfony/validatorinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/validator/releases/tag/v7.4.16--symfony/polyfill-php84installedinversionv1.38.1Releasenotes:https://github.com/symfony/polyfill-php84/releases/tag/v1.38.1-symfony/serializerinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/serializer/releases/tag/v7.4.16-symfony/routinginstalledinversionv7.4.15Releasenotes:https://github.com/symfony/routing/releases/tag/v7.4.15-symfony/http-foundationinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/http-foundation/releases/tag/v7.4.16-psr/http-messageinstalledinversion2.0Releasenotes:https://github.com/php-fig/http-message/releases/tag/2.0-symfony/psr-http-message-bridgeinstalledinversionv7.4.8Releasenotes:https://github.com/symfony/psr-http-message-bridge/releases/tag/v7.4.8-symfony/processinstalledinversionv7.4.13Releasenotes:https://github.com/symfony/process/releases/tag/v7.4.13-symfony/polyfill-php86installedinversionv1.41.0Releasenotes:https://github.com/symfony/polyfill-php86/releases/tag/v1.41.0-symfony/polyfill-php85installedinversionv1.41.0Releasenotes:https://github.com/symfony/polyfill-php85/releases/tag/v1.41.0-doctrine/lexerinstalledinversion3.0.1Releasenotes:https://github.com/doctrine/lexer/releases/tag/3.0.1-egulias/email-validatorinstalledinversion4.0.4Releasenotes:https://github.com/egulias/EmailValidator/releases/tag/4.0.4-symfony/mailerinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/mailer/releases/tag/v7.4.15-symfony/var-dumperinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/var-dumper/releases/tag/v7.4.15-symfony/error-handlerinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/error-handler/releases/tag/v7.4.15-symfony/http-kernelinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/http-kernel/releases/tag/v7.4.16-sebastian/diffinstalledinversion6.0.2Releasenotes:https://github.com/sebastianbergmann/diff/releases/tag/6.0.2-revolt/event-loopinstalledinversionv1.0.9Releasenotes:https://github.com/revoltphp/event-loop/releases/tag/v1.0.9-php-tuf/composer-stagerinstalledinversionv2.1.1Releasenotes:https://github.com/php-tuf/composer-stager/releases/tag/v2.1.1-pear/pear_exceptioninstalledinversionv1.0.2Releasenotes:https://github.com/pear/PEAR_Exception/releases/tag/v1.0.2-pear/console_getoptinstalledinversionv1.4.3Releasenotes:https://github.com/pear/Console_Getopt/releases/tag/v1.4.3-pear/pear-core-minimalinstalledinversionv1.10.18Releasenotes:https://github.com/pear/pear-core-minimal/releases/tag/v1.10.18-pear/archive_tarinstalledinversion1.6.1Releasenotes:https://github.com/pear/Archive_Tar/releases/tag/1.6.1-mck89/peastinstalledinversionv1.17.7Releasenotes:https://github.com/mck89/peast/releases/tag/v1.17.7-masterminds/html5installedinversion2.10.1Releasenotes:https://github.com/Masterminds/html5-php/releases/tag/2.10.1-symfony/polyfill-php80installedinversionv1.37.0Releasenotes:https://github.com/symfony/polyfill-php80/releases/tag/v1.37.0-ralouphie/getallheadersinstalledinversion3.0.3Releasenotes:https://github.com/ralouphie/getallheaders/releases/tag/3.0.3-psr/http-factoryinstalledinversion1.1.0-psr/http-clientinstalledinversion1.0.3Releasenotes:https://github.com/php-fig/http-client/releases/tag/1.0.3-guzzlehttp/promisesinstalledinversion2.5.2Releasenotes:https://github.com/guzzle/promises/releases/tag/2.5.2-guzzlehttp/guzzleinstalledinversion7.15.3Releasenotes:https://github.com/guzzle/guzzle/releases/tag/7.15.3-composer/semverinstalledinversion3.4.4Releasenotes:https://github.com/composer/semver/releases/tag/3.4.4-asm89/stack-corsinstalledinversionv2.4.0Releasenotes:https://github.com/asm89/stack-cors/releases/tag/v2.4.0-drupal/coreinstalledinversion11.4.5Releasenotes:https://github.com/drupal/core/releases/tag/11.4.5-drupal/clamavinstalledinversion2.1.0-phpstan/phpdoc-parserinstalledinversion2.3.3Releasenotes:https://github.com/phpstan/phpdoc-parser/releases/tag/2.3.3-slevomat/coding-standardinstalledinversion8.31.1Releasenotes:https://github.com/slevomat/coding-standard/releases/tag/8.31.-sirbrillig/phpcs-variable-analysisinstalledinversionv2.13.0Releasenotes:https://github.com/sirbrillig/phpcs-variable-analysis/releases/tag/v2.13.0-drupal/coderinstalledinversion9.0.1Releasenotes:https://github.com/pfrenssen/coder/releases/tag/9.0.1-drupal/coffeeinstalledinversion2.0.1-drupal/config_splitinstalledinversion2.0.2-drupal/config_updateinstalledinversion2.0.0-alpha4-drupal/core-recommendedinstalledinversion11.4.5Releasenotes:https://github.com/drupal/core-recommended/releases/tag/11.4.5-doctrine/commoninstalledinversion3.5.0-symfony/dom-crawlerinstalledinversionv7.4.12Releasenotes:https://github.com/symfony/dom-crawler/releases/tag/v7.4.12-lullabot/php-webdriverinstalledinversionv2.0.7Releasenotes:https://github.com/Lullabot/php-webdriver/releases/tag/v2.0.7-lullabot/mink-selenium2-driverinstalledinversionv1.7.4Releasenotes:https://github.com/Lullabot/MinkSelenium2Driver/releases/tag/v1.7.4-drupal/drupal-driverinstalledinversionv3.3.1Releasenotes:https://github.com/jhedstrom/DrupalDriver/releases/tag/v3.3.1-symfony/browser-kitinstalledinversionv8.1.1.0-drupal/drupal_helpersinstalledinversion2.1.1-drupal/environment_indicatorinstalledinversion4.0.25-drupal/generated_contentinstalledinversion2.1.1-drupal/navigation_extra_toolsinstalledinversion1.3.2-drupal/tokeninstalledinversion1.17.0-drupal/ctoolsinstalledinversion4.1.1-drupal/pathautoinstalledinversion1.15.0-drupal/redirectinstalledinversion1.13.0-drupal/redisinstalledinversion1.11.0-halaxa/json-machineinstalledinversion1.2.6Releasenotes:https://github.com/halaxa/json-machine/releases/tag/1.2.6-solarium/solariuminstalledinversion7.0.0Releasenotes:https://github.com/solariumphp/solarium/releases/tag/7.0.0-maennchen/zipstream-phpinstalledinversion3.2.2Releasenotes:https://github.com/maennchen/ZipStream-PHP/releases/tag/3.2.2-laminas/laminas-stdlibinstalledinversion3.21.0Releasenotes:https://github.com/laminas/laminas-stdlib/releases/tag/3.21.0-drupal/search_apiinstalledinversion1.41.0-dflydev/dot-access-datainstalledinversionv3.0.3Releasenotes:https://github.com/dflydev/dflydev-dot-access-data/releases/tag/v3.0.3-consolidation/output-formattersinstalledinversion4.7.1Releasenotes:https://github.com/consolidation/output-formatters/releases/tag/4.7.1-consolidation/annotated-commandinstalledinversion4.10.5Releasenotes:https://github.com/consolidation/annotated-command/releases/tag/4.10.5-drupal/search_api_solrinstalledinversion4.4.0-drupal/seckitinstalledinversion2.0.3-drupal/shieldinstalledinversion1.8.0-drupal/stage_file_proxyinstalledinversion4.0.0-drupal/testmodeinstalledinversion2.7.2-drupal/xmlsitemapinstalledinversion2.0.0-psy/psyshinstalledinversionv0.12.24Releasenotes:https://github.com/bobthecow/psysh/releases/tag/v0.12.24-league/containerinstalledinversion4.2.5Releasenotes:https://github.com/laravel/prompts/releases/tag/v0.3.23-grasmash/yaml-cliinstalledinversion3.2.1Releasenotes:https://github.com/grasmash/yaml-cli/releases/tag/3.2.1-grasmash/expanderinstalledinversion3.0.1Releasenotes:https://github.com/grasmash/expander/releases/tag/3.0.1-consolidation/configinstalledinversion3.2.1Releasenotes:https://github.com/consolidation/config/releases/tag/3.2.1-consolidation/site-aliasinstalledinversion4.1.3Releasenotes:https://github.com/consolidation/site-alias/releases/tag/4.1.3-consolidation/site-processinstalledinversion6.1.0Releasenotes:https://github.com/consolidation/site-process/releases/tag/6.1-symfony/polyfill-php81installedinversionv1.38.1-phootwork/langinstalledinversionv3.2.3Releasenotes:https://github.com/phootwork/lang/releases/tag/v3.2.3-phootwork/collectioninstalledinversionv3.2.3Releasenotes:https://github.com/phootwork/collection/releases/tag/v3.2.3-phpowermove/docblockinstalledinversionv4.0Releasenotes:https://github.com/phpowermove/docblock/releases/tag/v4.0-consolidation/roboinstalledinversion5.1.1Releasenotes:https://github.com/consolidation/robo/releases/tag/5.1.1-consolidation/filter-via-dot-access-datainstalledinversion2.0.3Releasenotes:https://github.com/consolidation/filter-via-dot-access-data/releases/tag/2.0.3-chi-teck/drupal-code-generatorinstalledinversion4.2.0Releasenotes:https://github.com/Chi-teck/drupal-code-generator/releases/tag/4.2.0-phpstan/phpstan-deprecation-rulesinstalledinversion2.0.5Releasenotes:https://github.com/phpstan/phpstan-deprecation-rules/releases/tag/2.0.5-mglaman/phpstan-drupalinstalledinversion2.1.2Releasenotes:https://github.com/mglaman/phpstan-drupal/releases/tag/2.1.2-mikey179/vfsstreaminstalledinversionv1.6.12Releasenotes:https://github.com/bovigo/vfsStream/releases/tag/v1.6.12-rector/rectorinstalledinversion2.6.3Releasenotes:https://github.com/rectorphp/rector/releases/tag/2.6.3-palantirnet/drupal-rectorinstalledinversion1.1.2Releasenotes:https://github.com/palantirnet/drupal-rector/releases/tag/1.1.2-phpcsstandards/phpcsutilsinstalledinversion1.2.3tag/10.0.0-alpha2-webmozart/assertinstalledinversion2.4.1Releasenotes:https://github.com/webmozarts/assert/releases/tag/2.4.1-phpdocumentor/reflection-commoninstalledinversion2.2.0Releasenotes:https://github.com/phpDocumentor/ReflectionCommon/releases/tag/2.2.0-phpdocumentor/type-resolverinstalledinversion2.0.0Releasenotes:https://github.com/phpDocumentor/TypeResolver/releases/tag/2.0-phpdocumentor/reflection-docblockinstalledinversion6.0.3Releasenotes:https://github.com/phpDocumentor/ReflectionDocBlock/releases/tag/6.0.3-staabm/side-effects-detectorinstalledinversion1.0.5-sebastian/recursion-contextinstalledinversion6.0.3Releasenotes:https://github.com/sebastianbergmann/recursion-context/releases/tag/6.0.3-sebastian/object-reflectorinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/object-reflector/releases/tag/4.0.1-sebastian/object-enumeratorinstalledinversion6.0.1Releasenotes:https://github.com/sebastianbergmann/object-enumerator/releases/tag/6.0.1-sebastian/global-stateinstalledinversion7.0.2-sebastian/comparatorinstalledinversion6.3.3Releasenotes:https://github.com/sebastianbergmann/comparator/releases/tag/6.3.3-sebastian/code-unitinstalledinversion3.0.3Releasenotes:https://github.com/sebastianbergmann/code-unit/releases/tag/3.0.3-sebastian/cli-parserinstalledinversion3.0.2Releasenotes:https://github.com/sebastianbergmann/cli-parser/releases/tag/3.0.2-phpunit/php-timerinstalledinversion7.0.1Releasenotes:https://github.com/sebastianbergmann/php-timer/releases/tag/7.0.15.0.1-phpunit/php-file-iteratorinstalledinversion5.1.1Releasenotes:https://github.com/sebastianbergmann/php-file-iterator/releases/tag/5.1.1-theseer/tokenizerinstalledinversion1.3.1Releasenotes:https://github.com/theseer/tokenizer/releases/tag/1.3.1-sebastian/lines-of-codeinstalledinversion3.0.1Releasenotes:https://github.com/sebastianbergmann/lines-of-code/releases/tag/3.0.1-sebastian/complexityinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/complexity/releases/tag/4.0.1-sebastian/code-unit-reverse-lookupinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/code-unit-reverse-lookup/releases/tag/4.0.1-phpunit/php-code-coverageinstalledinversion11.0.12Releasenotes:https://github.com/sebastianbergmann/php-code-coverage/releases/tag/11.0.12-phar-io/versioninstalledinversion3.2.1Releasenotes:https://github.com/phar-io/version/releases/tag/3.2.1-phar-io/manifestinstalledinversion2.0.4Releasenotes:https://github.com/phar-io/manifest/releases/tag/2.0.4-myclabs/deep-copyinstalledinversion1.14.0Releasenotes:https://github.com/myclabs/DeepCopy/releases/tag/1.14.0-phpunit/phpunitinstalledinversion11.5.56Releasenotes:https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.56-phpspec/prophecyinstalledinversionv1.26.1Releasenotes:https://github.com/phpspec/prophecy/releases/tag/v1.26.1-phpspec/prophecy-phpunitinstalledinversionv2.5.0Releasenotes:https://github.com/phpspec/prophecy-phpunit/releases/tag/v2.5.-softcreatr/jsonpnpmwarndeprecatedwhatwg-encoding@2.0.0:Use@exodus/bytesinsteadforamorespec-conformantandfasterimplementationnpmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupportednpmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.npmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.menpmwarndeprecatedabab@2.0.6:Useyourplatform'snativeatob()andbtoa()methodsinsteadnpmwarndeprecateddomexception@4.0.0:Useyourplatform'snativeDOMExceptioninsteadnpmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinsteadnpmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainsteadnpmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.athinstalledinversion0.10.0Releasenotes:https://github.com/SoftCreatR/JSONPath/releases/tag/0.10.0-vincentlanglet/twig-cs-fixerinstalledinversion4.0.2Releasenotes:https://github.com/VincentLanglet/Twig-CS-Fixer/releases/tag/4added611packages,andaudited612packagesin7s171packagesarelookingforfundingrun`npmfund`fordetailsfound0vulnerabilitiesnpmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.npmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinsteadnpmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupportednpmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.menpmwarndeprecatedrimraf@2.7.1:Rimrafversionspriortov4arenolongersuppnpmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainsteadnpmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.>star_wars@1.0.0postinstall>patch-packageNopatchfilesfoundpatch-package6.5.1Applyingpatches...added475packages,andaudited476packagesin6s169packagesarelookingforfunding2vulnerabilities(1low,1high)Toaddressallissues(includingbreakingchanges),run:npmauditfix--forceRun`npmaudit`fordetails.>star_wars@1.0.0build>npmrunclean&&mkdir-pbuild/js&&npmrunconcat&&npmrunuglify&&npmrunsass:prod&&npmrunpostcss:prod&&npmruncopy>star_wars@1.0.0clean>rm-rfbuild>star_wars@1.0.0concat>findjs-name'*.js'!-name'*.min.js'-execcat{}+>build/js/star_wars.min.js>star_wars@1.0.0uglify>terserbuild/js/star_wars.min.js-obuild/js/star_wars.min.js-cdrop_console=true-mreserved=['jQuery','Drupal']2>/dev/null||true>star_wars@1.0.0sass:prod>sassscss/styles.scssbuild/css/star_wars.min.css--no-source-map--style=compressed>star_wars@1.0.0postcss:prod>postcssbuild/css/star_wars.min.css-obuild/css/star_wars.min.css--no-map>star_wars@1.0.0copy>npmruncopy:images&&npmruncopy:fonts>star_wars@1.0.0copy:images>mkdir-pbuild/images&&cp-rimages/*build/images/2>/dev/null||true>star_wars@1.0.0copy:fonts>mkdir-pbuild/fonts&&cp-rfonts/*build/fonts/2>/dev/null||true[INFO]Startedsiteprovisioning.Drupalcoreversion:11.4.5Drushversion:13.7.6.0Webrootpath:/app/webPublicfilespath:sites/default/filesPrivatefilespath:sites/default/files/privateTemporaryfilespath:/tmpConfigfilespath:/app/config/defaultDBdumpfilepath:/app/.data/db.sql(present)Profile:standardConfigurationfilespresent:NoExistingsitefound:NoProvisiontype:databaseFallbacktoprofile:NoOverwriteexistingDB:YesSkipDBsanitization:NoSkippost-provisionoperations:NoVerifyconfigafterupdate:NoUsemaintenancemode:Yes[INFO]Provisioningsitefromthedatabasedumpfile.Dumpfilepath:/app/.data/db.sqlExistingsitewasnotfound.Freshsitecontentwillbeimportedfromthedatabasedumpfile.[INFO]Starteddatabasefileimport.//Doyoureallywanttodropalltablesinthedatabasedrupal?:yes.Importeddatabasefromthedumpfile.[OK]Finisheddatabasefileimport.[INFO]CurrentDrupalenvironment:local[TASK]Enablingmaintenancemode.[OK]Enabledmaintenancemode.(1s)[TASK]Runningdatabaseupdates.[success]Nopendingupdates.[OK]Completedrunningdatabaseupdates.(2s)[TASK]Clearingcacheafterdatabaseupdates.[success]Cacherebuildcomplete.[OK]Cachewascleared.(2s)[TASK]Rebuildingcache.[OK]Cachewasrebuilt.(1s)[TASK]Runningdeploymenthooks.[success]Nopendingdeployhooks.[OK]Completeddeploymenthooks.(1s)[INFO]Sanitizingdatabase.[notice]TheDrush\Commands\sql\sanitize\SanitizeUserTableCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeCommentsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeUserFieldsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeSessionsCommands::messagessanThefollowingoperationswillbeperformed:*Sanitizeuserpasswords.*Sanitizeuseremails.*Preserveuseremailsandpasswordsforthespecifiedroles.*Sanitizetextfieldsassociatedwithusers.//Doyouwanttosanitizethecurrentdatabase?:yes.[success]Userpasswordssanitized.[success]Useremailssanitized.[OK]Sanitizeddatabaseusingdrushsql:sanitize.[OK]Appliedcustomsanitizationcommandsfromfile.[OK]Resetuser0usernameandemail.[TASK]Runningcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".==>Starteddemomodulesoperations.Environment:local>Creatingthecontentmodel.0/2[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]Applyingrecipe2/2[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]AppliedBasicpagerecipe.[OK]Basicpageappliedsuccessfully<Createdthecontentmodel.>Settingsitename.<Setsitename.>Settinguptheadministrationnavigation.[notice]Alreadyinstalled:navigation<Setuptheadministrationnavigation.>Installingcontribmodules.Thefollowingmodule(s)willbeinstalled:coffee,config_split,config_update,media,environment_indicator,navigation_extra_tools,pathauto,redirect,reroute_email,robotstxt,shield,stage_file_proxy,xmlsitemap,token//Doyouwanttocontinue?:yes.[success]Modulecoffeehasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_splithasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_updatehasbeeninstalled.[success]Modulemediahasbeeninstalled.(Permissions-Configure)[success]Moduleenvironment_indicatorhasbeeninstalled.(Permissions-Configure)[success]Modulenavigation_extra_toolshasbeeninstalled.(Permissions)[success]Modulepathautohasbeeninstalled.(Permissions-Configure)[success]Moduleredirecthasbeeninstalled.(Permissions-Configure)[success]Modulereroute_emailhasbeeninstalled.(Permissions-Configure)[success]Modulerobotstxthasbeeninstalled.(Permissions-Configure)[success]Moduleshieldhasbeeninstalled.(Permissions-Configure)[success]Modulestage_file_proxyhasbeeninstalled.(Permissions-Configure)[success]Modulexmlsitemaphasbeeninstalled.(Permissions-Configure)[success]Moduletokenhasbeeninstalled.<Installedcontribmodules.>InstallingRedismodule.[success]Moduleredishasbeeninstalled.(Permissions-Configure)<InstalledRedismodule.>InstallingandconfiguringClamAV.[success]Moduleclamavhasbeeninstalled.(Permissions-Configure)//Doyouwanttoupdatemode_daemon_tcpip.hostnamekeyinclamav.settings//config?:yes.<InstalledandconfiguredClamAV.>InstallingSolrsearchmodules.Thefollowingmodule(s)willbeinstalled:search_api,search_api_solr,language[success]Modulesearch_apihasbeeninstalled.(Permissions-Configure)[success]Modulesearch_api_solrhasbeeninstalled.[success]Modulelanguagehasbeeninstalled.(Permissions-Configure)<InstalledSolrsearchmodules.>Installingcustomsitemodules.[success]Modulesw_basehasbeeninstalled.Thefollowingmodule(s)willbeinstalled:sw_search,workflows,content_moderation[success]Modulesw_searchhasbeeninstalled.[success]Moduleworkflowshasbeeninstalled.(Permissions-Configure)[success]Modulecontent_moderationhasbeeninstalled.(Permissions-Configure)Thefollowingmodule(s)willbeinstalled:sw_demo,drupal_helpers,testmode[success]Modulesw_demohasbeeninstalled.[success]Moduledrupal_helpershasbeeninstalled.[success]Moduletestmodehasbeeninstalled.(Configure)<Installedcustomsitemodules.>Runningdeploymenthooks.---------------------------------------------------------------------------ModuleHookDescriptionsw_baseinstall_active_themeInstallsdefaultandcustomtheme.@codeCoverageIgnoresw_democonfigure_testmodeConfiguretestmodetofilterthepagesview.Registersthe'sw_demo_pages'viewwithtestmodesothatonlycontentmatchingthe[TEST]prefixappearsduringtestruns.sw_democreate_pages_menu_linkCreate"Pages"menulinkinthemainnavigation.Demonstratesusingthedrupal_helpersmoduletomanagemenulinkswithindeployhooks.sw_demoplace_counter_blockPlacecounterblockinthe"content"region.@codeCoverageIgnoresw_searchadd_editorial_workflowAttacheditorialworkflowtothepagecontenttype.Computedbasefieldslike'moderation_state'areonlyavailablewhenaworkflowisattachedtothecontenttype.//Doyouwishtorunthespecifiedpendingdeployhooks?:yes.>[notice]Deployhookstarted:sw_base_deploy_install_active_theme>[notice]Performed:sw_base_deploy_install_active_theme>[notice]Deployhookstarted:sw_demo_deploy_configure_testmode>[notice]Configuredtestmodetofilterthepagesview.>[notice]Performed:sw_demo_deploy_configure_testmode>[notice]Deployhookstarted:sw_demo_deploy_create_pages_menu_link>[notice]Created"Pages"menulinkinmainnavigation.>[notice]Performed:sw_demo_deploy_create_pages_menu_link>[notice]Deployhookstarted:sw_demo_deploy_place_counter_block>[notice]Counterblockplacedinthe"content"region.>[notice]Performed:sw_demo_deploy_place_counter_block>[notice]Deployhookstarted:sw_search_deploy_add_editorial_workflow>[notice]Attachededitorialworkflowtopagecontenttype.>[notice]Performed:sw_search_deploy_add_editorial_workflow[success]Finishedperformingdeployhooks.<Randeploymenthooks.==>Finisheddemomodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".(34s)[TASK]Runningcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".==>Starteddevelopmentmodulesoperations.>InstallingSingleDirectoryComponentdevelopmenttools.[success]Modulesdc_develhasbeeninstalled.<InstalledSingleDirectoryComponentdevelopmenttools.>InstallingDevelmodule.[success]Moduledevelhasbeeninstalled.(Permissions-Configure)<InstalledDevelmodule.>InstallingTestmodemodule.[notice]Alreadyinstalled:testmode<InstalledTestmodemodule.>InstallingGeneratedcontentmodule.Startedcreationofgeneratedcontentfrommodules:sw_demo,generated_content.Created"page"node"Demopage1accusamusanimide"[ID:2]Created"page"node"Demopage2asperioresatquem"[ID:3]Created"page"node"Demopage3debitisdelectuse"[ID:4]Created"page"node"Demopage4inmolestiaeoccae"[ID:5]Created"page"node"Demopage5doloribusiustoof"[ID:6]Created"page"node"Demopage6dolorumevenietli"[ID:7]Created"page"node"Demopage7facereidmaximeni"[ID:8]Created"page"node"Demopage8mollitianonsunta"[ID:9]Created"page"node"Demopage9distinctioharump"[ID:10]Created"page"node"Demopage10idimpeditmaximem"[ID:11]Created"page"node"Demopage11culpadebitisnobi"[ID:12]Created"page"node"Demopage12eosiustooptioqui"[ID:13]Created"page"node"Demopage13etitaqueproviden"[ID:14]Created"page"node"Demopage14animiautculpamai"[ID:15]Created"page"node"Demopage15maioresmolestiae"[ID:16]Created"page"node"Demopage16occaecatiperfere"[ID:17]Created"page"node"Demopage17fugaidimpeditnec"[ID:18]Created"page"node"Demopage18estiustomaximequ"[ID:19]Created"page"node"Demopage19consequaturdeser"[ID:20]Created"page"node"Demopage20doloreseosmaxime"[ID:21]Createdgeneratedcontententities"node"withbundle"page".Createdallgeneratedcontent.Finishedcreationofgeneratedcontent.[success]Modulegenerated_contenthasbeeninstalled.(Permissions)<InstalledGeneratedcontentmodule.==>Finisheddevelopmentmodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".(13s)[TASK]Runningcustompost-installscript"./scripts/provision-30-search-index.sh".==>Startedsearchindexingoperations.Searchindexingskip:0>Resettingsearchindextracker.[success]Contentwassuccessfullyscheduledforreindexing.<Resetsearchindextracker.>Runningsearchindexing.[success]Found21itemstoindexforContent.Indexingallitems.[success]Indexingamaximumnumberof21items(50itemsperbatchrun)fortheindex'Content'.>[notice]Successfullyindexed21itemsonContent.>[notice]Message:Successfullyindexed21items.><Completedsearchindexing.==>Finishedsearchindexingoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-30-search-index.sh".(2s)[TASK]Runningcustompost-installscript"./scripts/provision-40-example.sh".==>Startedexampleoperations.Runningexampleoperationsinnon-productionenvironment.>Performinganexampleoperation.Replacethiswithyourowncommands.<Performedanexampleoperation.Freshdatabasedetected.Performingadditionalexampleoperations.==>Finishedexampleoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-40-example.sh".(0s)[TASK]Disablingmaintenancemode.[OK]Disabledmaintenancemode.(1s)[OK]Finishedsiteprovisioning(1m2s).[INFO]Projectinformation:Projectname:star_warsDockerComposeprojectname:vortex_videosSitelocalURL:http://vortex_videos.docker.amazee.ioPathtowebroot:/app/webDBhost:databaseDBusername:drupalDBpassword:drupalDBport:3306DBportonhost:65358('ahoydb'tostartSequelAce)SolrURLonhost:http://127.0.0.1:65357SeleniumVNCURLonhost:http://localhost:65379/?autoconnect=1&password=secretMailhogURL:http://mailhog.docker.amazee.io/Xdebug:Disabled('ahoydebug'toenable)Siteloginlink:http://vortex_videos.docker.amazee.io/user/reset/1/1787192699/[REDACTED]/login$$a$ah$aho$ahoyb$ahoybu$ahoybui$ahoybuil#5DONE0.0s#6[databaseinternal]loadbuilddefinitionfromdatabase.dockerfile#6transferringdockerfile:816Bdone#6WARN:SecretsUsedInArgOrEnv:DonotuseARGorENVinstructionsforsensitivedata(ENV"MYSQL_PASSWORD")(line18)#6DONE0.0s#42[clamav]exporti#50writingimagesha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660#5320.74-Lockingconsolidation/filter-via-dot-access-data(2.0#5320.74-Lockingdoc#5320.74-Lockingdrupal/core-composer-scaff#5320.74-Lockingdrupal/robotstxt(#5320.74-Lockingerg#5320.74-Lockinglocalhei#5320.74-Lockingpear/pear-core-minimal#5320.74-Lo#5320.74-Locki##5320.74-Lockingsymfony/dependency-injection(#5320.74-Lockingsymfony#5320.74-Lockingsymfony/psr-http-message-b#5322.10-Downloadingsymfony/se#5322.10-Downloadingsymfony/translation-contracts(v3.7#5322.11-#5322.11-Downloadingsymfony/polyfil#5322.11-Downloadingdoctrine#5322.11-Download#5#5322.12-Downloading#53#5322.500/121[>---------------------------]0%12/121[==>-------------------------]9%19/121[====>-----------------------]15%28/121[======>---------------------]23%37/121[========>-------------------]30%52/121[============>---------------]42%61/121[==============>-------------]50%90/121[====================>-------]74%112/121[=========================>--]92%#5328.04-Installingsymfony/deprecation-contracts(#5328.04-Installingdrevops/vortex-tooling(1.4.0#5328.05-Installingsymfony/routing#5328.05-Installingrevolt/event-loop(v1.0.9#5328.05-Installingralouphie/geta#5328.06-Installingdrupal/config_split(2.0.2#5328.06-Installingdrupal/pathauto(1.#5328.07-Installingdflydev/dot-access-data#5328.07-Installingconsolidation/output-formatters(4.7.1#5328.07-Installinglaravel/prompts(v0.3.23#5328.07-Installingconsolidation/filter64/118[===============>------------]54%97/118[=======================>----]82%110/118[==========================>-]93%#5331.16-Skip[web-root]/.ht.router.php:#5331.16-Skip[web-root]/sites/example.sites.php:overrContainervortex_videos-wait-for-dependencies-1Waiting4.9sContainervortex_videos-wait-for-dependencies-1Waiting5.6sContainervortex_videos-wait-for-dependencies-1Waiting7.2sContainervortex_videos-wait-for-dependencies-1Waiting10.5sContainervortex_videos-wait-for-dependencies-1Waiting11.5s-Lockingdantleech/-Lockingdrupal/xmlsitemap(2.0.0-Locki-Lockingpear/console_getopt(-Lockingphps-Locking-Lockingsoftcreatr/jsonpath(0.-Lockingsymfony/http-client-Lockingvincentlanglet/twig0/83[>---------------------------]0%10/83[===>------------------------]12%17/83[=====>----------------------]20%26/83[========>-------------------]31%34/83[===========>----------------]40%45/83[===============>------------]54%50/83[================>-----------]60%60/83[====================>-------]72%67/83[======================>-----]80%76/83[=========================>--]91%0/8[>---------------------------]0%7/8[========================>---]87%0/187[>---------------------------]0%40/187[=====>----------------------]21%57/187[========>-------------------]30%79/187[===========>----------------]42%95/187[==============>-------------]50%114/187[=================>----------]60%133/187[===================>--------]71%143/187[=====================>------]76%152/187[======================>-----]81%175/187[==========================>-]93%183/187[===========================>]97%184/187[===========================>]98%185/187[===========================>]98%186/187[===========================>]99%Changelogssummary:-pyrech/composer-changelogsinstalledinversionv2.2.0Releasenotes:https://github.com/pyrech/composer-changelogs/releases/tag/v2.2.0-ergeb-ergebnis/json-printerinstalledinversion3.8.1Releasenotes:https://github.com/ergebnis/json-printer/releases/tag/3.8.1-phpstan/exte-phpstan/extension-installerinstalledinversion1.4.3Releasenotes:https://github.com/phpstan/extension-installer/releases/tag/1.4.3Releasenotes:https://github.com/symReleasenotes:https://github.com/symfony/polyfill-intl-normalizer/releases/tag/v1.38.0-dantleech/gherkin-lintinstalledinversion0.2.4Releasenotes:https://github.com/dantleech/gherkin-lint-php/releases/tag/0.2Releasenotes:https://github.com/symfony/yReleasenotes:https://github.com/symfony/yaml/releases/tag/v7.4.15-symfony/translation-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/sReleasenotes:https://github.Releasenotes:https://github.com/symfony/http-client-contracts/releases/tag/-drevops/phpcs-standard-drevops/phpcs-standardinstalledinversion1.0.0Releasenotes:https://github.com/drevops/phpcs-standard/releases/tag/1.0.0Releasenotes:htt-symfony/error-handlerinstalledinversionReleasenotes:https://github.com/php-fig/hReleasenotes:https://github.com/php-fig/http-factory/releases/tag/1.1.0-guzzlehttp/psr7installedinversion2.13.0Releasenotes:https://github.com/guzzle/psr7/releases/tag/2.13.0Releasenotes:https://github.com/drupal/core/releases/tag/ReleaseReleasenotes:https://gReleasenotes:https://github.com/doctrine/common/releases/tag/3.5.0-drupal/develinstalledinversion5.5.0-webflo/drupal-finderinstalledinversion1.3.1Releasenotes:https://github.com/webflo/drupal-finder/releases/tag/1.3.1Releasenotes:https://github.com/symfony/bReleasenotes:https://github.com/symfony/browser-kit/releases/tag/v8.1.1-behat/mink-browserkit-driverinstalledinversionv2.3.0Releasenotes:https://github.com/minkphp/MinkBrowserKitDriver/releases/tag/v2.3.0-drupal/drupal-extensioninstalledinversionv6.1.0Releasenotes:https://github.com/jhedstrom/drupalextension/releases/tag/v6.1-drupal/reroute_emailinstalledinversion2.3.0-rc2-drupal/robotstxtinstalledinversion1.6.0-drupal/sdc_develinstalledinversion1.0.3Releasenotes:https://github.com/dfly-league/containerinstalledinversionReleasenotes:https://github.com/thephpleague/container/releases/tag/4.2.Releasenotes:https://github.com/thephpleague/container/releases/tag/4.2.5-laravel/promptsinstalledinversionv0.3.23Releasenotes:https://gitReleasenotes:https://github.com/symfony/polyfill-php81/releases/tag/v1.38.1-dru-drush/drushinstalledinversion13.7.6Releasenotes:https://github.com/drush-ops/drush/releases/tag/13.7.6Releasenotes:https://githuReleasenotes:https://github.com/PHPCSStandards/PHPCSUtils/releases/tag/1.2.3-phpcompatibility/php-compatibilityinstalledinversion10.0.0-alpha2Releasenotes:https://github.com/PHPCompatibility/PHPCompatibility/releases/Releasenotes:https://github.coReleasenotes:https://github.com/staabm/side-effects-detector/releases/tag/1.0.5-sebastian/versioninstalledinversion5.0.2Releasenotes:https://github.com/sebastianbergmann/version/releases/tag/5.0.-sebastian/typeinstalledinversion5.1.3Releasenotes:https://github.com/sebastianbergmann/type/releases/tag/5.1.3Releasenotes:https://github.com/sebastianbergmann/global-state/releaseReleasenotes:https://github.com/sebastianbergmann/global-state/releases/tag/7.0.2-sebastian/exporterinstalledinversion6.3.2Releasenotes:https://github.com/sebastianbergmann/exporter/releases/tag/6.3.2-sebastian/environmentinstalledinversion7.2.1Releasenotes:https://github.com/sebastianbergmann/environment/releases/tag/7.2.1-phpunit/php-text-templateinstalledinversi-phpunit/php-text-templateinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/php-text-template/releases/tag/4.0.1-phpunit/php-invokerinstalledinversion5.0.1Releasenotes:https://github.com/sebastianbergmann/php-invoker/releases/tag/Releasenotes:h-phpspec/prophecy-php-softcreatr/jsonpnavigation.Siteloginlink: \ No newline at end of file diff --git a/.vortex/docs/static/img/doctor-info.json b/.vortex/docs/static/img/doctor-info.json index 01d39feb0..c47c0113b 100644 --- a/.vortex/docs/static/img/doctor-info.json +++ b/.vortex/docs/static/img/doctor-info.json @@ -1,40 +1,40 @@ -{"version":2,"width":80,"height":42,"title":"Vortex ahoy doctor info Demo","command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy doctor info'"} -[0,"o","$ "] -[0.05,"o","a"] -[0.1,"o","h"] -[0.15,"o","o"] -[0.2,"o","y"] -[0.25,"o"," "] -[0.3,"o","d"] -[0.35,"o","o"] -[0.4,"o","c"] -[0.45,"o","t"] -[0.5,"o","o"] -[0.55,"o","r"] -[0.6,"o"," "] -[0.65,"o","i"] -[0.7,"o","n"] -[0.75,"o","f"] -[0.8,"o","o"] -[0.85,"o","\r\n"] -[1.85,"o","System information report\r\n\r\nOPERATING SYSTEM\r\n"] -[2.15,"o","ProductName:\t\tmacOS\r\nProductVersion:\t\t26.6.2\r\nBuildVersion:\t\t25G83\r\n"] -[2.45,"o","\r\nDOCKER\r\n"] -[2.75,"o","Path to binary: /opt/homebrew/bin/docker\r\n"] -[3.05,"o","Docker version 29.7.2, build a7dcaa6fdb\r\n"] -[3.35,"o","Client: Docker Engine - Community\r\n Version: 29.7.2\r\n Context: desktop-linux\r\n Debug Mode: false\r\n Plugins:\r\n agent: Docker AI Agent Runner (Docker Inc.)\r\n Version: v1.115.0\r\n Path: /home/user/.docker/cli-plugins/docker-agent\r\n ai: Docker AI Agent - Ask Gordon (Docker Inc.)\r\n Version: v1.27.0\r\n Path: /home/user/.docker/cli-plugins/docker-ai\r\n buildx: Docker Buildx (Docker Inc.)\r\n Version: v0.35.0-desktop.2\r\n Path: /home/user/.docker/cli-plugins/docker-buildx\r\n compose: Docker Compose (Docker Inc.)\r\n Version: v5.3.1\r\n Path: /home/user/.docker/cli-plugins/docker-compose\r\n debug: Get a shell into any image or container (Docker Inc.)\r\n Version: 0.0.47\r\n Path: /home/user/.docker/cli-plugins/docker-debug\r\n desktop: Docker Desktop commands (Docker Inc.)\r\n Version: v0.4.3\r\n Path: /home/user/.docker/cli-plugins/docker-desktop\r\n dhi: CLI for manag"] -[3.65,"o","ing Docker Hardened Images (Docker Inc.)\r\n Version: v0.0.7\r\n Path: /home/user/.docker/cli-plugins/docker-dhi\r\n extension: Manages Docker extensions (Docker Inc.)\r\n Version: v0.2.31\r\n Path: /home/user/.docker/cli-plugins/docker-extension\r\n init: Creates Docker-related starter files for your project (Docker Inc.)\r\n Version: v1.4.0\r\n Path: /home/user/.docker/cli-plugins/docker-init\r\n mcp: Docker MCP Plugin (Docker Inc.)\r\n Version: v0.43.3\r\n Path: /home/user/.docker/cli-plugins/docker-mcp\r\n model: Docker Model Runner (Docker Inc.)\r\n Version: v1.2.6\r\n Path: /home/user/.docker/cli-plugins/docker-model\r\n offload: Docker Offload (Docker Inc.)\r\n Version: v0.6.9\r\n Path: /home/user/.docker/cli-plugins/docker-offload\r\n pass: Docker Pass Secrets Manager Plugin (beta) (Docker Inc.)\r\n Version: v0.2.0\r\n Path: /home/user/.docker/cli-p"] -[3.95,"o","lugins/docker-pass\r\n sandbox: \"docker sandbox\" is deprecated, use Docker Sandboxes instead (Docker Inc.)\r\n Version: v0.13.0\r\n Path: /home/user/.docker/cli-plugins/docker-sandbox\r\n scout: Docker Scout (Docker Inc.)\r\n Version: v1.24.0\r\n Path: /home/user/.docker/cli-plugins/docker-scout\r\n\r\nServer:\r\n Containers: [COUNT]\r\n Running: [COUNT]\r\n Paused: [COUNT]\r\n Stopped: [COUNT]\r\n Images: [COUNT]\r\n Server Version: 29.6.2\r\n Storage Driver: overlay2\r\n Backing Filesystem: extfs\r\n Supports d_type: true\r\n Using metacopy: false\r\n Native Overlay Diff: true\r\n userxattr: false\r\n Logging Driver: json-file\r\n Cgroup Driver: cgroupfs\r\n Cgroup Version: 2\r\n Plugins:\r\n Volume: local\r\n Network: bridge host ipvlan macvlan null overlay\r\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\r\n CDI spec directories:\r\n /etc/cdi\r\n /var/run/cdi\r\n Discovered Devices:\r\n cdi: docker.com/gpu=webgpu\r\n Swarm: inactive\r\n Runtimes: io.containerd.runc.v2 runc\r\n Default Runtime: runc\r\n"] -[4.25,"o"," Init Binary: docker-init\r\n containerd version: [HASH_REDACTED]\r\n runc version: v1.3.6-0-g491b69ba\r\n init version: de40ad0\r\n Security Options:\r\n seccomp\r\n Profile: builtin\r\n cgroupns\r\n Kernel Version: 6.12.76-linuxkit\r\n Operating System: Docker Desktop\r\n OSType: linux\r\n Architecture: aarch64\r\n CPUs: 4\r\n Total Memory: [SIZE]\r\n Name: docker-desktop\r\n ID: [REDACTED]\r\n Docker Root Dir: /var/lib/docker\r\n Debug Mode: false\r\n HTTP Proxy: http.docker.internal:3128\r\n HTTPS Proxy: http.docker.internal:3128\r\n No Proxy: hubproxy.docker.internal\r\n Labels:\r\n com.docker.desktop.address=unix:///home/user/Library/Containers/com.docker.docker/Data/docker-cli.sock\r\n Experimental: false\r\n Insecure Registries:\r\n hubproxy.docker.internal:5555\r\n ::1/128\r\n [IP_REDACTED]/8\r\n Live Restore Enabled: false\r\n Firewall Backend: iptables\r\n\r\n"] -[4.55,"o","\r\nDOCKER COMPOSE V2\r\nVersion: "] -[4.85,"o","Docker Compose version v5.3.1\r\n"] -[5.15,"o","\r\nDOCKER-COMPOSE V1\r\n"] -[5.45,"o","Path to binary: \r\nVersion: "] -[5.75,"o","Docker Compose V1 is not installed.\r\n\r\nPYGMY\r\n"] -[6.05,"o","Path to binary: /opt/homebrew/bin/pygmy\r\nVersion: "] -[6.35,"o","Pygmy v0.14.0\r\n"] -[6.65,"o","\r\nAHOY\r\n"] -[6.95,"o","Path to binary: /opt/homebrew/bin/ahoy\r\nVersion: "] -[7.25,"o","v3.0.0-pre.1\r\n"] -[7.55,"o","\r\n"] -[10.55,"o",""] +{"version":2,"width":80,"height":42,"timestamp":1787182466,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy doctor info'","title":"Vortex ahoy doctor info Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.064086, "o", "$ "] +[0.569213, "o", "a"] +[0.623608, "o", "h"] +[0.676907, "o", "o"] +[0.731095, "o", "y"] +[0.781408, "o", " "] +[0.836426, "o", "d"] +[0.889307, "o", "o"] +[0.944336, "o", "c"] +[0.997771, "o", "t"] +[1.052816, "o", "o"] +[1.107841, "o", "r"] +[1.161581, "o", " "] +[1.214033, "o", "i"] +[1.264456, "o", "n"] +[1.316773, "o", "f"] +[1.366969, "o", "o"] +[1.822705, "o", "\r\n"] +[1.960116, "o", "System information report\r\n\r\nOPERATING SYSTEM\r\n"] +[1.973261, "o", "ProductName:\t\tmacOS\r\nProductVersion:\t\t26.6.2\r\nBuildVersion:\t\t25G83\r\n"] +[1.973655, "o", "\r\nDOCKER\r\n"] +[1.984894, "o", "Path to binary: /opt/homebrew/bin/docker\r\n"] +[1.998232, "o", "Docker version 29.7.2, build a7dcaa6fdb\r\n"] +[2.532131, "o", "Client: Docker Engine - Community\r\n Version: 29.7.2\r\n Context: desktop-linux\r\n Debug Mode: false\r\n Plugins:\r\n agent: Docker AI Agent Runner (Docker Inc.)\r\n Version: v1.115.0\r\n Path: /home/user/.docker/cli-plugins/docker-agent\r\n ai: Docker AI Agent - Ask Gordon (Docker Inc.)\r\n Version: v1.27.0\r\n Path: /home/user/.docker/cli-plugins/docker-ai\r\n buildx: Docker Buildx (Docker Inc.)\r\n Version: v0.35.0-desktop.2\r\n Path: /home/user/.docker/cli-plugins/docker-buildx\r\n compose: Docker Compose (Docker Inc.)\r\n Version: v5.3.1\r\n Path: /home/user/.docker/cli-plugins/docker-compose\r\n debug: Get a shell into any image or container (Docker Inc.)\r\n Version: 0.0.47\r\n Path: /home/user/.docker/cli-plugins/docker-debug\r\n desktop: Docker Desktop commands (Docker Inc.)\r\n Version: v0.4.3\r\n Path: /home/user/.docker/cli-plugins/docker-desktop\r\n dhi: CLI for manag"] +[2.532147, "o", "ing Docker Hardened Images (Docker Inc.)\r\n Version: v0.0.7\r\n Path: /home/user/.docker/cli-plugins/docker-dhi\r\n extension: Manages Docker extensions (Docker Inc.)\r\n Version: v0.2.31\r\n Path: /home/user/.docker/cli-plugins/docker-extension\r\n init: Creates Docker-related starter files for your project (Docker Inc.)\r\n Version: v1.4.0\r\n Path: /home/user/.docker/cli-plugins/docker-init\r\n mcp: Docker MCP Plugin (Docker Inc.)\r\n Version: v0.43.3\r\n Path: /home/user/.docker/cli-plugins/docker-mcp\r\n model: Docker Model Runner (Docker Inc.)\r\n Version: v1.2.6\r\n Path: /home/user/.docker/cli-plugins/docker-model\r\n offload: Docker Offload (Docker Inc.)\r\n Version: v0.6.9\r\n Path: /home/user/.docker/cli-plugins/docker-offload\r\n pass: Docker Pass Secrets Manager Plugin (beta) (Docker Inc.)\r\n Version: v0.2.0\r\n Path: /home/user/.docker/cli-p"] +[2.532161, "o", "lugins/docker-pass\r\n sandbox: \"docker sandbox\" is deprecated, use Docker Sandboxes instead (Docker Inc.)\r\n Version: v0.13.0\r\n Path: /home/user/.docker/cli-plugins/docker-sandbox\r\n scout: Docker Scout (Docker Inc.)\r\n Version: v1.24.0\r\n Path: /home/user/.docker/cli-plugins/docker-scout\r\n\r\nServer:\r\n Containers: 351\r\n Running: 27\r\n Paused: 0\r\n Stopped: 324\r\n Images: 294\r\n Server Version: 29.6.2\r\n Storage Driver: overlay2\r\n Backing Filesystem: extfs\r\n Supports d_type: true\r\n Using metacopy: false\r\n Native Overlay Diff: true\r\n userxattr: false\r\n Logging Driver: json-file\r\n Cgroup Driver: cgroupfs\r\n Cgroup Version: 2\r\n Plugins:\r\n Volume: local\r\n Network: bridge host ipvlan macvlan null overlay\r\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\r\n CDI spec directories:\r\n /etc/cdi\r\n /var/run/cdi\r\n Discovered Devices:\r\n cdi: docker.com/gpu=webgpu\r\n Swarm: inactive\r\n Runtimes: io.containerd.runc.v2 runc\r\n Default Runtime: runc\r\n"] +[2.532183, "o", " Init Binary: docker-init\r\n containerd version: [HASH_REDACTED]\r\n runc version: v1.3.6-0-g491b69ba\r\n init version: de40ad0\r\n Security Options:\r\n seccomp\r\n Profile: builtin\r\n cgroupns\r\n Kernel Version: 6.12.76-linuxkit\r\n Operating System: Docker Desktop\r\n OSType: linux\r\n Architecture: aarch64\r\n CPUs: 4\r\n Total Memory: 15.6GiB\r\n Name: docker-desktop\r\n ID: [REDACTED]\r\n Docker Root Dir: /var/lib/docker\r\n Debug Mode: false\r\n HTTP Proxy: http.docker.internal:3128\r\n HTTPS Proxy: http.docker.internal:3128\r\n No Proxy: hubproxy.docker.internal\r\n Labels:\r\n com.docker.desktop.address=unix:///home/user/Library/Containers/com.docker.docker/Data/docker-cli.sock\r\n Experimental: false\r\n Insecure Registries:\r\n hubproxy.docker.internal:5555\r\n ::1/128\r\n [IP_REDACTED]/8\r\n Live Restore Enabled: false\r\n Firewall Backend: iptables\r\n\r\n"] +[2.532896, "o", "\r\nDOCKER COMPOSE V2\r\nVersion: "] +[2.587482, "o", "Docker Compose version v5.3.1\r\n"] +[2.591331, "o", "\r\nDOCKER-COMPOSE V1\r\n"] +[2.613337, "o", "Path to binary: \r\nVersion: "] +[2.615353, "o", "Docker Compose V1 is not installed.\r\n\r\nPYGMY\r\n"] +[2.631339, "o", "Path to binary: /opt/homebrew/bin/pygmy\r\nVersion: "] +[2.639682, "o", "Pygmy v0.14.0\r\n"] +[2.64031, "o", "\r\nAHOY\r\n"] +[2.655517, "o", "Path to binary: /opt/homebrew/bin/ahoy\r\nVersion: "] +[2.662342, "o", "v3.0.0-pre.1\r\n"] +[2.662893, "o", "\r\n"] +[2.669508, "x", "0"] diff --git a/.vortex/docs/static/img/doctor-info.png b/.vortex/docs/static/img/doctor-info.png index 74f83c717..64a6197c6 100644 Binary files a/.vortex/docs/static/img/doctor-info.png and b/.vortex/docs/static/img/doctor-info.png differ diff --git a/.vortex/docs/static/img/doctor-info.svg b/.vortex/docs/static/img/doctor-info.svg index acb2fbf4c..f8c085199 100644 --- a/.vortex/docs/static/img/doctor-info.svg +++ b/.vortex/docs/static/img/doctor-info.svg @@ -1 +1 @@ -$ahoy$ahoydoctor$ahoydoctorinfoSysteminformationreportOPERATINGSYSTEMProductName:macOSProductVersion:26.6.2BuildVersion:25G83DOCKERPathtobinary:/opt/homebrew/bin/dockerDockerversion29.7.2,builda7dcaa6fdbContext:desktop-linuxDebugMode:falsePlugins:agent:DockerAIAgentRunner(DockerInc.)Version:v1.115.0Path:/home/user/.docker/cli-plugins/docker-agentai:DockerAIAgent-AskGordon(DockerInc.)Version:v1.27.0Path:/home/user/.docker/cli-plugins/docker-aibuildx:DockerBuildx(DockerInc.)Version:v0.35.0-desktop.2Path:/home/user/.docker/cli-plugins/docker-buildxcompose:DockerCompose(DockerInc.)Version:v5.3.1Path:/home/user/.docker/cli-plugins/docker-composedebug:Getashellintoanyimageorcontainer(DockerInc.)Version:0.0.47Path:/home/user/.docker/cli-plugins/docker-debugdesktop:DockerDesktopcommands(DockerInc.)Version:v0.4.3Path:/home/user/.docker/cli-plugins/docker-desktopVersion:v0.6.9Path:/home/user/.docker/cli-plugins/docker-offloadpass:DockerPassSecretsManagerPlugin(beta)(DockerInc.)Version:v0.2.0Log:awslogsfluentdgcplogsgelfjournaldjson-filelocalsplunksyslogCDIspecdirectories:/etc/cdi/var/run/cdiDiscoveredDevices:cdi:docker.com/gpu=webgpuSwarm:inactiveRuntimes:io.containerd.runc.v2runcDefaultRuntime:runcInitBinary:docker-initcontainerdversion:[HASH_REDACTED]runcversion:v1.3.6-0-g491b69bainitversion:de40ad0SecurityOptions:seccompProfile:builtincgroupnsKernelVersion:6.12.76-linuxkitOperatingSystem:DockerDesktopOSType:linuxArchitecture:aarch64CPUs:4TotalMemory:[SIZE]Name:docker-desktopID:[REDACTED]DockerRootDir:/var/lib/dockerHTTPProxy:http.docker.internal:3128HTTPSProxy:http.docker.internal:3128NoProxy:hubproxy.docker.internalLabels:com.docker.desktop.address=unix:///home/user/Library/Containers/com.docker.docker/Data/docker-cli.sockExperimental:falseInsecureRegistries:hubproxy.docker.internal:5555::1/128[IP_REDACTED]/8LiveRestoreEnabled:falseFirewallBackend:iptablesDOCKERCOMPOSEV2Version:Version:DockerComposeversionv5.3.1DOCKER-COMPOSEV1Pathtobinary:Version:DockerComposeV1isnotinstalled.PYGMYPathtobinary:/opt/homebrew/bin/pygmyVersion:Pygmyv0.14.0AHOYPathtobinary:/opt/homebrew/bin/ahoyVersion:v3.0.0-pre.1$$a$ah$aho$ahoyd$ahoydo$ahoydoc$ahoydoct$ahoydocto$ahoydoctori$ahoydoctorin$ahoydoctorinfClient:DockerEngine-CommunityVersion:29.7.2dhi:CLIformanagdhi:CLIformanagingDockerHardenedImages(DockerInc.)Version:v0.0.7Path:/home/user/.docker/cli-plugins/docker-dhiextension:ManagesDockerextensions(DockerInc.)Version:v0.2.31Path:/home/user/.docker/cli-plugins/docker-extensioninit:CreatesDocker-relatedstarterfilesforyourproject(DockerInc.)Version:v1.4.0Path:/home/user/.docker/cli-plugins/docker-initmcp:DockerMCPPlugin(DockerInc.)Version:v0.43.3Path:/home/user/.docker/cli-plugins/docker-mcpmodel:DockerModelRunner(DockerInc.)Version:v1.2.6Path:/home/user/.docker/cli-plugins/docker-modeloffload:DockerOffload(DockerInc.)Path:/home/user/.docker/cli-pPath:/home/user/.docker/cli-plugins/docker-passsandbox:"dockersandbox"isdeprecated,useDockerSandboxesinstead(DockerInc.)Version:v0.13.0Path:/home/user/.docker/cli-plugins/docker-sandboxscout:DockerScout(DockerInc.)Version:v1.24.0Path:/home/user/.docker/cli-plugins/docker-scoutServer:Containers:[COUNT]Running:[COUNT]Paused:[COUNT]Stopped:[COUNT]Images:[COUNT]ServerVersion:29.6.2StorageDriver:overlay2BackingFilesystem:extfsSupportsd_type:trueUsingmetacopy:falseNativeOverlayDiff:trueuserxattr:falseLoggingDriver:json-fileCgroupDriver:cgroupfsCgroupVersion:2Volume:localNetwork:bridgehostipvlanmacvlannulloverlay \ No newline at end of file +$ahoy$ahoydoctor$ahoydoctorinfoSysteminformationreportOPERATINGSYSTEMProductName:macOSProductVersion:26.6.2BuildVersion:25G83DOCKERPathtobinary:/opt/homebrew/bin/dockerDockerversion29.7.2,builda7dcaa6fdbContext:desktop-linuxDebugMode:falsePlugins:agent:DockerAIAgentRunner(DockerInc.)Version:v1.115.0Path:/home/user/.docker/cli-plugins/docker-agentai:DockerAIAgent-AskGordon(DockerInc.)Version:v1.27.0Path:/home/user/.docker/cli-plugins/docker-aibuildx:DockerBuildx(DockerInc.)Version:v0.35.0-desktop.2Path:/home/user/.docker/cli-plugins/docker-buildxcompose:DockerCompose(DockerInc.)Version:v5.3.1Path:/home/user/.docker/cli-plugins/docker-composedebug:Getashellintoanyimageorcontainer(DockerInc.)Version:0.0.47Path:/home/user/.docker/cli-plugins/docker-debugdesktop:DockerDesktopcommands(DockerInc.)Version:v0.4.3Path:/home/user/.docker/cli-plugins/docker-desktopVersion:v0.6.9Path:/home/user/.docker/cli-plugins/docker-offloadpass:DockerPassSecretsManagerPlugin(beta)(DockerInc.)Version:v0.2.0Log:awslogsfluentdgcplogsgelfjournaldjson-filelocalsplunksyslogCDIspecdirectories:/etc/cdi/var/run/cdiDiscoveredDevices:cdi:docker.com/gpu=webgpuSwarm:inactiveRuntimes:io.containerd.runc.v2runcDefaultRuntime:runcInitBinary:docker-initcontainerdversion:[HASH_REDACTED]runcversion:v1.3.6-0-g491b69bainitversion:de40ad0SecurityOptions:seccompProfile:builtincgroupnsKernelVersion:6.12.76-linuxkitOperatingSystem:DockerDesktopOSType:linuxArchitecture:aarch64CPUs:4TotalMemory:15.6GiBName:docker-desktopID:[REDACTED]DockerRootDir:/var/lib/dockerHTTPProxy:http.docker.internal:3128HTTPSProxy:http.docker.internal:3128NoProxy:hubproxy.docker.internalLabels:com.docker.desktop.address=unix:///home/user/Library/Containers/com.docker.docker/Data/docker-cli.sockExperimental:falseInsecureRegistries:hubproxy.docker.internal:5555::1/128[IP_REDACTED]/8LiveRestoreEnabled:falseFirewallBackend:iptablesDOCKERCOMPOSEV2Version:Version:DockerComposeversionv5.3.1DOCKER-COMPOSEV1Pathtobinary:Version:DockerComposeV1isnotinstalled.PYGMYPathtobinary:/opt/homebrew/bin/pygmyVersion:Pygmyv0.14.0AHOYPathtobinary:/opt/homebrew/bin/ahoyVersion:v3.0.0-pre.1$$a$ah$aho$ahoyd$ahoydo$ahoydoc$ahoydoct$ahoydocto$ahoydoctori$ahoydoctorin$ahoydoctorinfClient:DockerEngine-CommunityVersion:29.7.2dhi:CLIformanagdhi:CLIformanagingDockerHardenedImages(DockerInc.)Version:v0.0.7Path:/home/user/.docker/cli-plugins/docker-dhiextension:ManagesDockerextensions(DockerInc.)Version:v0.2.31Path:/home/user/.docker/cli-plugins/docker-extensioninit:CreatesDocker-relatedstarterfilesforyourproject(DockerInc.)Version:v1.4.0Path:/home/user/.docker/cli-plugins/docker-initmcp:DockerMCPPlugin(DockerInc.)Version:v0.43.3Path:/home/user/.docker/cli-plugins/docker-mcpmodel:DockerModelRunner(DockerInc.)Version:v1.2.6Path:/home/user/.docker/cli-plugins/docker-modeloffload:DockerOffload(DockerInc.)Path:/home/user/.docker/cli-pPath:/home/user/.docker/cli-plugins/docker-passsandbox:"dockersandbox"isdeprecated,useDockerSandboxesinstead(DockerInc.)Version:v0.13.0Path:/home/user/.docker/cli-plugins/docker-sandboxscout:DockerScout(DockerInc.)Version:v1.24.0Path:/home/user/.docker/cli-plugins/docker-scoutServer:Containers:351Running:27Paused:0Stopped:324Images:294ServerVersion:29.6.2StorageDriver:overlay2BackingFilesystem:extfsSupportsd_type:trueUsingmetacopy:falseNativeOverlayDiff:trueuserxattr:falseLoggingDriver:json-fileCgroupDriver:cgroupfsCgroupVersion:2Volume:localNetwork:bridgehostipvlanmacvlannulloverlay \ No newline at end of file diff --git a/.vortex/docs/static/img/doctor.json b/.vortex/docs/static/img/doctor.json index e12ab5e95..81a9010dd 100644 --- a/.vortex/docs/static/img/doctor.json +++ b/.vortex/docs/static/img/doctor.json @@ -1,24 +1,24 @@ -{"version":2,"width":80,"height":42,"title":"Vortex ahoy doctor Demo","command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy doctor'"} -[0,"o","$ "] -[0.05,"o","a"] -[0.1,"o","h"] -[0.15,"o","o"] -[0.2,"o","y"] -[0.25,"o"," "] -[0.3,"o","d"] -[0.35,"o","o"] -[0.4,"o","c"] -[0.45,"o","t"] -[0.5,"o","o"] -[0.55,"o","r"] -[0.6,"o","\r\n"] -[1.6,"o","\u001b[36m[INFO] Checking project requirements.\u001b[0m\r\n"] -[2.1,"o","\u001b[32m[ OK ] All required tools are present.\u001b[0m\r\n"] -[2.6,"o","\u001b[32m[ OK ] Port 80 is available.\u001b[0m\r\n"] -[3.1,"o","\u001b[32m[ OK ] Pygmy is running.\u001b[0m\r\n"] -[3.6,"o","\u001b[32m[ OK ] All containers are running.\u001b[0m\r\n"] -[4.1,"o","\u001b[33m[WARN] SSH key is not added to pygmy.\u001b[0m\r\n The SSH key will not be available in the CLI container. Run 'pygmy restart' and then 'ahoy up'.\r\n"] -[4.6,"o","\u001b[32m[ OK ] Web server is running and accessible at http://vortex_videos.docker.amazee.io.\u001b[0m\r\n"] -[5.1,"o","\u001b[32m[ OK ] Bootstrapped website at http://vortex_videos.docker.amazee.io.\u001b[0m\r\n"] -[5.6,"o","\u001b[32m[ OK ] All required checks have passed.\u001b[0m\r\n\r\n"] -[8.6,"o",""] +{"version":2,"width":80,"height":42,"timestamp":1787182443,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy doctor'","title":"Vortex ahoy doctor Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.066879, "o", "$ "] +[0.572009, "o", "a"] +[0.626776, "o", "h"] +[0.681802, "o", "o"] +[0.73658, "o", "y"] +[0.791629, "o", " "] +[0.845757, "o", "d"] +[0.899562, "o", "o"] +[0.950788, "o", "c"] +[1.001602, "o", "t"] +[1.052548, "o", "o"] +[1.107243, "o", "r"] +[1.560228, "o", "\r\n"] +[2.403516, "o", "\u001b[36m[INFO] Checking project requirements.\u001b[0m\r\n"] +[2.432005, "o", "\u001b[32m[ OK ] All required tools are present.\u001b[0m\r\n"] +[2.695369, "o", "\u001b[32m[ OK ] Port 80 is available.\u001b[0m\r\n"] +[13.434807, "o", "\u001b[32m[ OK ] Pygmy is running.\u001b[0m\r\n"] +[13.780409, "o", "\u001b[32m[ OK ] All containers are running.\u001b[0m\r\n"] +[22.346479, "o", "\u001b[33m[WARN] SSH key is not added to pygmy.\u001b[0m\r\n The SSH key will not be available in the CLI container. Run 'pygmy restart' and then 'ahoy up'.\r\n"] +[22.583594, "o", "\u001b[32m[ OK ] Web server is running and accessible at http://vortex_videos.docker.amazee.io.\u001b[0m\r\n"] +[22.608754, "o", "\u001b[32m[ OK ] Bootstrapped website at http://vortex_videos.docker.amazee.io.\u001b[0m\r\n"] +[22.611429, "o", "\u001b[32m[ OK ] All required checks have passed.\u001b[0m\r\n\r\n"] +[22.617406, "x", "0"] diff --git a/.vortex/docs/static/img/doctor.png b/.vortex/docs/static/img/doctor.png index 7b575de98..12652330a 100644 Binary files a/.vortex/docs/static/img/doctor.png and b/.vortex/docs/static/img/doctor.png differ diff --git a/.vortex/docs/static/img/doctor.svg b/.vortex/docs/static/img/doctor.svg index cf4430308..1655517a6 100644 --- a/.vortex/docs/static/img/doctor.svg +++ b/.vortex/docs/static/img/doctor.svg @@ -1 +1 @@ -$ahoy$ahoydoctor[INFO]Checkingprojectrequirements.[OK]Allrequiredtoolsarepresent.[OK]Port80isavailable.[OK]Pygmyisrunning.[OK]Allcontainersarerunning.[WARN]SSHkeyisnotaddedtopygmy.TheSSHkeywillnotbeavailableintheCLIcontainer.Run'pygmyrestart'andthen'ahoyup'.[OK]Webserverisrunningandaccessibleathttp://vortex_videos.docker.amazee.io.[OK]Bootstrappedwebsiteathttp://vortex_videos.docker.amazee.io.[OK]Allrequiredcheckshavepassed.$$a$ah$aho$ahoyd$ahoydo$ahoydoc$ahoydoct$ahoydocto \ No newline at end of file +$ahoy$ahoydoctor[INFO]Checkingprojectrequirements.[OK]Allrequiredtoolsarepresent.[OK]Port80isavailable.[OK]Pygmyisrunning.[OK]Allcontainersarerunning.[WARN]SSHkeyisnotaddedtopygmy.TheSSHkeywillnotbeavailableintheCLIcontainer.Run'pygmyrestart'andthen'ahoyup'.[OK]Webserverisrunningandaccessibleathttp://vortex_videos.docker.amazee.io.[OK]Bootstrappedwebsiteathttp://vortex_videos.docker.amazee.io.$$a$ah$aho$ahoyd$ahoydo$ahoydoc$ahoydoct$ahoydocto[OK]Allrequiredcheckshavepassed. \ No newline at end of file diff --git a/.vortex/docs/static/img/info.json b/.vortex/docs/static/img/info.json index 7a61bcebf..ca5fcfe38 100644 --- a/.vortex/docs/static/img/info.json +++ b/.vortex/docs/static/img/info.json @@ -1,18 +1,18 @@ -{"version":2,"width":80,"height":42,"title":"Vortex ahoy info Demo","command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy info'"} -[0,"o","$ "] -[0.05,"o","a"] -[0.1,"o","h"] -[0.15,"o","o"] -[0.2,"o","y"] -[0.25,"o"," "] -[0.3,"o","i"] -[0.35,"o","n"] -[0.4,"o","f"] -[0.45,"o","o"] -[0.5,"o","\r\n"] -[1.5,"o","\u001b[36m[INFO] Project information:\u001b[0m\r\n\r\n Project name : star_wars\r\n Docker Compose project name : vortex_videos\r\n Site local URL : http://vortex_videos.docker.amazee.io\r\n"] -[2,"o"," Path to web root : /app/web\r\n DB host : database\r\n DB username : drupal\r\n DB password : drupal\r\n"] -[2.5,"o"," DB port : 3306\r\n DB port on host : [PORT] ('ahoy db' to start SequelAce)\r\n"] -[3,"o"," Solr URL on host : http://127.0.0.1:[PORT]\r\n Selenium VNC URL on host : http://localhost:[PORT]/?autoconnect=1&password=secret\r\n Mailhog URL : http://mailhog.docker.amazee.io/\r\n"] -[3.5,"o"," Xdebug : Disabled ('ahoy debug' to enable)\r\n\r\n Use 'ahoy login' to generate Drupal login link.\r\n\r\n"] -[6.5,"o",""] +{"version":2,"width":80,"height":42,"timestamp":1787182440,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy info'","title":"Vortex ahoy info Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.06462, "o", "$ "] +[0.569672, "o", "a"] +[0.619716, "o", "h"] +[0.670766, "o", "o"] +[0.725138, "o", "y"] +[0.7797, "o", " "] +[0.834454, "o", "i"] +[0.887539, "o", "n"] +[0.939244, "o", "f"] +[0.993222, "o", "o"] +[1.450008, "o", "\r\n"] +[1.965364, "o", "\u001b[36m[INFO] Project information:\u001b[0m\r\n\r\n Project name : star_wars\r\n Docker Compose project name : vortex_videos\r\n Site local URL : http://vortex_videos.docker.amazee.io\r\n"] +[1.965723, "o", " Path to web root : /app/web\r\n DB host : database\r\n DB username : drupal\r\n DB password : drupal\r\n"] +[1.965727, "o", " DB port : 3306\r\n DB port on host : 51391 ('ahoy db' to start SequelAce)\r\n"] +[1.965882, "o", " Solr URL on host : http://127.0.0.1:51389\r\n Selenium VNC URL on host : http://localhost:51399/?autoconnect=1&password=secret\r\n Mailhog URL : http://mailhog.docker.amazee.io/\r\n"] +[1.995207, "o", " Xdebug : Disabled ('ahoy debug' to enable)\r\n\r\n Use 'ahoy login' to generate Drupal login link.\r\n\r\n"] +[2.009735, "x", "0"] diff --git a/.vortex/docs/static/img/info.png b/.vortex/docs/static/img/info.png index 356f79e4a..8854a4596 100644 Binary files a/.vortex/docs/static/img/info.png and b/.vortex/docs/static/img/info.png differ diff --git a/.vortex/docs/static/img/info.svg b/.vortex/docs/static/img/info.svg index 03a9e598d..29e7442f0 100644 --- a/.vortex/docs/static/img/info.svg +++ b/.vortex/docs/static/img/info.svg @@ -1 +1 @@ -$ahoy$ahoyinfo[INFO]Projectinformation:Projectname:star_warsDockerComposeprojectname:vortex_videosSitelocalURL:http://vortex_videos.docker.amazee.ioPathtowebroot:/app/webDBhost:databaseDBusername:drupalDBpassword:drupalDBport:3306DBportonhost:[PORT]('ahoydb'tostartSequelAce)SolrURLonhost:http://127.0.0.1:[PORT]SeleniumVNCURLonhost:http://localhost:[PORT]/?autoconnect=1&password=secretMailhogURL:http://mailhog.docker.amazee.io/Xdebug:Disabled('ahoydebug'toenable)Use'ahoylogin'togenerateDrupalloginlink.$$a$ah$aho$ahoyi$ahoyin$ahoyinf \ No newline at end of file +$ahoy$ahoyinfo[INFO]Projectinformation:Projectname:star_warsDockerComposeprojectname:vortex_videosSitelocalURL:http://vortex_videos.docker.amazee.ioPathtowebroot:/app/webDBhost:databaseDBusername:drupalDBpassword:drupalDBport:3306DBportonhost:51391('ahoydb'tostartSequelAce)SolrURLonhost:http://127.0.0.1:51389SeleniumVNCURLonhost:http://localhost:51399/?autoconnect=1&password=secretMailhogURL:http://mailhog.docker.amazee.io/$$a$ah$aho$ahoyi$ahoyin$ahoyinfXdebug:Disabled('ahoydebug'toenable)Use'ahoylogin'togenerateDrupalloginlink. \ No newline at end of file diff --git a/.vortex/docs/static/img/installer.json b/.vortex/docs/static/img/installer.json index 477cb35d3..2a705c7c5 100644 --- a/.vortex/docs/static/img/installer.json +++ b/.vortex/docs/static/img/installer.json @@ -1,86 +1,216 @@ -{"version":2,"width":80,"height":42,"title":"Vortex Installer Demo","command":"/home/user/demo/installer.exp"} -[0,"o","\r\r\n \u001b[36m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m \u2588\u2588\u2557 \u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2557 \u2588\u2588\u2557\u001b[39m\r\r\n \u001b[36m \u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2554\u2550\u2550\u2550\u2588\u2588\u2557 \u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557 \u255a\u2550\u2550\u2588\u2588\u2554\u2550\u2550\u255d \u2588\u2588\u2554\u2550\u2550\u2550\u2550\u255d \u255a\u2588\u2588\u2557\u2588\u2588\u2554\u255d\u001b[39m\r\r\n \u001b[36m \u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d \u2588\u2588\u2551 \u2588\u2588\u2588\u2588\u2588\u2557 \u255a\u2588\u2588\u2588\u2554\u255d\u001b[39m\r\r\n \u001b[36m \u255a\u2588\u2588\u2557 \u2588\u2588\u2554\u255d \u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557 \u2588\u2588\u2551 \u2588\u2588\u2554\u2550\u2550\u255d \u2588\u2588\u2554\u2588\u2588\u2557\u001b[39m\r\r\n \u001b[36m \u255a\u2588\u2588\u2588\u2588\u2554\u255d \u255a\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255d \u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2551 \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u2588\u2588\u2554\u255d \u2588\u2588\u2557\u001b[39m\r\r\n \u001b[36m \u255a\u2550\u2550\u2550\u255d \u255a\u2550\u2550\u2550\u2550\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u2550\u2550\u2550\u2550\u2550\u255d \u255a\u2550\u255d \u255a\u2550\u255d\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m Drupal project template\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m by DrevOps\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u001b[39m\r\r\n \u001b[2m Installer version: development\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[90m\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[32mWelcome to the Vortex interactive installer\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[32m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m This tool will guide you through installing the latest \u001b[4mdevelopment\u001b[0m\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m version of Vortex into your project.\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m You will be asked a few questions to tailor the configuration to your\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m site.\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m No changes will be made until you confirm everything at the end.\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Press \u001b[33mCtrl+C\u001b[39m at any time to exit the installer.\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Press \u001b[33mCtrl+U\u001b[39m at any time to go back to the previous step.\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m\u2802\u001b[39m \u001b[33mValidating repository and reference\u001b[39m\r\r\n\u001b[999D"] -[0.1,"o","\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m\u2726 Validating repository and reference\u001b[39m\r\r\n\r\r\n\r\r\n "] -[0.2,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mChecking repository \"/home/user/vortex\" and reference\u001b[22m\r\r\n \u001b[2m\"HEAD\"\u001b[22m\r\r\n\r\r\n\r\r\n "] -[0.3,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m\u2713 Repository and reference validated successfully\u001b[39m\r\r\n\r\r\n\r\r\n "] -[0.4,"o","\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n \r\r\n \u001b[2mPress any key to continue...\u001b[22m\r\r\n\r\r\n \u001b[46m\u001b[30m General information \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m star wars\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[1.4,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m star wa\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[1.5,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u001b[7mE\u001b[27m.g. My Site\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[2.5,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m S\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[2.6,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m St\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[3.6,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Star Wars\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[3.7,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mSite name \u001b[2m(1/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Star Wars \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mSite machine name \u001b[2m(2/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m star_wars\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name for the project directory and in the code.\u001b[39m\r\r\n\u001b[1G"] -[4.7,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mSite machine name \u001b[2m(2/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m star_wars \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Star Wars Org\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[4.8,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Star Wars O\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[4.9,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u001b[7mE\u001b[27m.g. My Org\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[5.9,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m R\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[6,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Re\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[7,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Rebellion\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G"] -[8,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Rebellion \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mOrganization machine name \u001b[2m(4/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m rebellion\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in the code.\u001b[39m\r\r\r\n\u001b[1G"] -[9,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mOrganization machine name \u001b[2m(4/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m rebellion \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mPublic domain \u001b[2m(5/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m star-wars.com\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Domain name without protocol and trailing slash.\u001b[39m\r\r\n\u001b[1G"] -[10,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mPublic domain \u001b[2m(5/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m star-wars.com \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Drupal \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mHow would you like your site to be created on the first run? \u001b[2m(6/36)\u001b[\u2026\u001b[39m \u001b[90m\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Choose how your site will be created the first time after this \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m installer finishes: \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mDrupal, installed from profile\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m from one of the standard Drupal installation profiles. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mDrupal CMS, installed from profile\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m from the Drupal CMS recipe. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mDrupal, loaded from the demo database\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Creates a site by \u001b[4mloading an existing demo database\u001b[0m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m provided with the installer. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mDrupal, installed from profile\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mDrupal CMS, installed from profile\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m Drupal, loaded from the demo database \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07. Applies only on the first run of the installer.\u001b[39m\r\r\n\u001b[1G"] -[11,"o","\u001b[24A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mHow would you like your site to be created on the first run? \u001b[2m(6/36)\u001b[\u2026\u001b[22m \u001b[90m\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Choose how your site will be created the first time after this \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m installer finishes: \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mDrupal, installed from profile\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m from one of the standard Drupal installation profiles. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mDrupal CMS, installed from profile\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m from the Drupal CMS recipe. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mDrupal, loaded from the demo database\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Creates a site by \u001b[4mloading an existing demo database\u001b[0m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m provided with the installer. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Drupal, loaded from the demo database \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mProfile \u001b[2m(7/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m Standard \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mMinimal\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mDemo Umami\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mCustom (next prompt)\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07 to select which Drupal profile to use.\u001b[39m\r\r\n\u001b[1G"] -[12,"o","\u001b[8A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mProfile \u001b[2m(7/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Standard \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mModules \u001b[2m(8/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a \u25fc\u001b[39m Coffee \u001b[36m\u2503\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mConfig split\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mConfig update\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mDevel\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mDrupal helpers\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mEnvironment indicator\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mGenerated content\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mNavigation extra tools\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mPathauto\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mRedirect\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 18 selected \u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06, \u2b07 and Space bar to select one or more modules.\u001b[39m\r\r\n\u001b[1G"] -[13,"o","\u001b[14A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mModules \u001b[2m(8/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Coffee \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Config split \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Config update \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Devel \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Drupal helpers \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Environment indicator \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Generated content \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Navigation extra tools \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Pathauto \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Redirect \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Reroute email \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Robots.txt \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m SDC Devel \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Seckit \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Shield \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Stage file proxy \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Testmode \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m XML Sitemap \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mCustom modules prefix \u001b[2m(9/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m sw\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name in custom modules\u001b[39m\r\r\n\u001b[1G"] -[14,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mCustom modules prefix \u001b[2m(9/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m sw \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mCustom modules \u001b[2m(10/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Select which custom modules to include in your project: \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mBase\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Starter module with common site utilities (mail handling, \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m deploy hooks) and test scaffolding for Unit, Kernel, \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Functional, and FunctionalJavascript tests. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mSearch\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Custom Solr search integration module. Requires the Solr \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m service to be selected. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mDemo\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Demonstrates how Vortex tooling works: includes a counter \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m block with CSS/JS, PHPUnit example tests across all test \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m types, and a Behat feature. Safe to remove on real projects. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a \u25fc\u001b[39m Base - starter module with utilities and test scaffolding \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mSearch - custom Solr search integration\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mDemo - counter block and example tests to demonstrate tooling\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06, \u2b07 and Space bar to select one or more modules.\u001b[39m\r\r\n\u001b[1G"] -[15,"o","\u001b[25A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mCustom modules \u001b[2m(10/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Select which custom modules to include in your project: \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mBase\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Starter module with common site utilities (mail handling, \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m deploy hooks) and test scaffolding for Unit, Kernel, \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Functional, and FunctionalJavascript tests. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mSearch\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Custom Solr search integration module. Requires the Solr \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m service to be selected. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mDemo\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Demonstrates how Vortex tooling works: includes a counter \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m block with CSS/JS, PHPUnit example tests across all test \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m types, and a Behat feature. Safe to remove on real projects. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Base - starter module with utilities and test scaffolding \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Search - custom Solr search integration \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Demo - counter block and example tests to demonstrate tooling \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mTheme \u001b[2m(11/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mOlivero\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mClaro\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mStark\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m Custom (next prompt) \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07 to select which Drupal theme to use.\u001b[39m\r\r\n\u001b[1G"] -[16,"o","\u001b[8A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mTheme \u001b[2m(11/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Custom (next prompt) \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mCustom theme machine name \u001b[2m(12/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m star_wars\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m We will use this name as a custom theme name\u001b[39m\r\r\n\u001b[1G"] -[17,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mCustom theme machine name \u001b[2m(12/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m star_wars \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mBuild front-end assets in the container? \u001b[2m(13/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[32m\u25cf\u001b[39m Yes \u001b[2m/ \u25cb No\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Disable to build theme assets on the host or as part of deployment.\u001b[39m\r\r\n\u001b[1G"] -[18,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mBuild front-end assets in the container? \u001b[2m(13/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Yes \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Code repository \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mRepository provider \u001b[2m(14/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Vortex offers full automation with GitHub, while support for \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m other providers is limited. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m GitHub \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mOther\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07 to select your code repository provider.\u001b[39m\r\r\n\u001b[1G"] -[19,"o","\u001b[11A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mRepository provider \u001b[2m(14/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Vortex offers full automation with GitHub, while support for \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m other providers is limited. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m GitHub \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mRelease versioning scheme \u001b[2m(15/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Choose your versioning scheme: \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mCalendar Versioning (CalVer)\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[4myear.month.patch\u001b[0m (E.g., \u001b[4m24.1.0\u001b[0m) \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m https://calver.org \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mSemantic Versioning (SemVer)\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[4mmajor.minor.patch\u001b[0m (E.g., \u001b[4m1.0.0\u001b[0m) \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m https://semver.org \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mOther\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Custom versioning scheme of your choice. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m Calendar Versioning (CalVer) \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mSemantic Versioning (SemVer)\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mOther\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07 to select your version scheme.\u001b[39m\r\r\n\u001b[1G"] -[20,"o","\u001b[22A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mRelease versioning scheme \u001b[2m(15/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Choose your versioning scheme: \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mCalendar Versioning (CalVer)\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[4myear.month.patch\u001b[0m (E.g., \u001b[4m24.1.0\u001b[0m) \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m https://calver.org \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mSemantic Versioning (SemVer)\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[4mmajor.minor.patch\u001b[0m (E.g., \u001b[4m1.0.0\u001b[0m) \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m https://semver.org \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mOther\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Custom versioning scheme of your choice. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Calendar Versioning (CalVer) \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Environment \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mTimezone \u001b[2m(16/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m UTC\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2mUTC\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07, or start typing to select the timezone for your project.\u001b[39m\r\r\n\u001b[1G"] -[21,"o","\u001b[7A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mTimezone \u001b[2m(16/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m UTC \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mServices \u001b[2m(17/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a \u25fc\u001b[39m ClamAV \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mSolr\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mRedis\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06, \u2b07 and Space bar to select one or more services.\u001b[39m\r\r\n\u001b[1G"] -[22,"o","\u001b[7A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mServices \u001b[2m(17/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m ClamAV \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Solr \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Redis \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mDevelopment tools \u001b[2m(18/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a \u25fc\u001b[39m PHP CodeSniffer \u001b[36m\u2503\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mPHPStan\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mRector\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mESLint\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mStylelint\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mJest\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mPHPUnit\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mBehat\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mTwig CS Fixer\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mDCLint\u001b[22m \u001b[90m\u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500 11 selected \u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06, \u2b07 and Space bar to select one or more tools.\u001b[39m\r\r\n\u001b[1G"] -[23,"o","\u001b[14A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mDevelopment tools \u001b[2m(18/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m PHP CodeSniffer \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m PHPStan \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Rector \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m ESLint \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Stylelint \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Jest \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m PHPUnit \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Behat \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Twig CS Fixer \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m DCLint \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Hadolint \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Hosting \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mHosting provider \u001b[2m(19/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mAcquia Cloud\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mLagoon\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mOther\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m None \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06, \u2b07 and Space bar to select your hosting provider.\u001b[39m\r\r\n\u001b[1G"] -[24,"o","\u001b[8A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mHosting provider \u001b[2m(19/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m None \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mCustom web root directory \u001b[2m(20/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m web\u001b[7m \u001b[27m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Custom directory where the web server serves the site.\u001b[39m\r\r\n\u001b[1G"] -[25,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mCustom web root directory \u001b[2m(20/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m web \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Deployment \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mDeployment types \u001b[2m(21/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u25fb Code artifact \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25fb\u001b[22m \u001b[2mLagoon webhook\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u25fc\u001b[39m \u001b[2mCustom webhook\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06, \u2b07 and Space bar to select one or more deployment types.\u001b[39m\r\r\n\u001b[1G"] -[26,"o","\u001b[7A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mDeployment types \u001b[2m(21/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Custom webhook \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Workflow \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mProvision type \u001b[2m(22/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Provisioning sets up the site in an environment using an \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m already assembled codebase. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mImport from database dump\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Provisions the site by importing a database dump \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m typically copied from production into lower \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m environments. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mInstall from profile\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Provisions the site by installing a fresh Drupal \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m site from a profile every time an environment is \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m created. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m Import from database dump \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mInstall from profile\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07 to select the provision type.\u001b[39m\r\r\n\u001b[1G"] -[27,"o","\u001b[21A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mProvision type \u001b[2m(22/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Provisioning sets up the site in an environment using an \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m already assembled codebase. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mImport from database dump\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Provisions the site by importing a database dump \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m typically copied from production into lower \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m environments. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u25cb \u001b[1mInstall from profile\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Provisions the site by installing a fresh Drupal \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m site from a profile every time an environment is \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m created. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Import from database dump \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mDatabase source \u001b[2m(23/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m URL download \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mFTP download\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mAcquia backup\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mLagoon environment\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mContainer registry\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mS3 bucket\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mNone\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07 to select the database fetch source.\u001b[39m\r\r\n\u001b[1G"] -[28,"o","\u001b[11A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mDatabase source \u001b[2m(23/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m URL download \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mUse a second database for migrations? \u001b[2m(24/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb Yes /\u001b[22m \u001b[32m\u25cf\u001b[39m No \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Adds a second database service for Drupal migrations.\u001b[39m\r\r\n\u001b[1G"] -[29,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mUse a second database for migrations? \u001b[2m(24/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m No \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Notifications \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mNotification channels \u001b[2m(25/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a \u25fc\u001b[39m Email \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25fb\u001b[22m \u001b[2mGitHub\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25fb\u001b[22m \u001b[2mJIRA\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25fb\u001b[22m \u001b[2mNew Relic\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25fb\u001b[22m \u001b[2mSlack\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25fb\u001b[22m \u001b[2mWebhook\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06, \u2b07 and Space bar to select one or more notification channels.\u001b[39m\r\r\n\u001b[1G"] -[30,"o","\u001b[10A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mNotification channels \u001b[2m(25/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Email \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Continuous Integration \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mContinuous Integration provider \u001b[2m(26/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m GitHub Actions \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mCircleCI\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mNone\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07 to select the CI provider.\u001b[39m\r\r\n\u001b[1G"] -[31,"o","\u001b[7A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mContinuous Integration provider \u001b[2m(26/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m GitHub Actions \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mVisual regression testing with Diffy? \u001b[2m(27/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Diffy-powered visual regression workflow to compare deployed \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m environments. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Automatically triggers comparisons for dependency-update \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m pull requests matching the configured branch pattern \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m (`deps/*` by default). \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Runs comparisons for pull requests tagged with the `VR` \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m label and posts a sticky comment. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Also supports manual runs against any URL. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb Yes /\u001b[22m \u001b[32m\u25cf\u001b[39m No \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Requires a Diffy account.\u001b[39m\r\r\n\u001b[1G"] -[32,"o","\u001b[19A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mVisual regression testing with Diffy? \u001b[2m(27/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Diffy-powered visual regression workflow to compare deployed \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m environments. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Automatically triggers comparisons for dependency-update \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m pull requests matching the configured branch pattern \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m (`deps/*` by default). \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Runs comparisons for pull requests tagged with the `VR` \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m label and posts a sticky comment. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Also supports manual runs against any URL. \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u251c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2524\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m No \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mScan for committed secrets with Gitleaks? \u001b[2m(28/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[32m\u25cf\u001b[39m Yes \u001b[2m/ \u25cb No\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Runs in CI to detect hardcoded passwords, API keys and tokens.\u001b[39m\r\r\n\u001b[1G"] -[33,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mScan for committed secrets with Gitleaks? \u001b[2m(28/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Yes \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Automations \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mDependency updates provider \u001b[2m(29/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m Renovate GitHub app \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mRenovate self-hosted in CI\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mNone\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07 to select the dependency updates provider.\u001b[39m\r\r\n\u001b[1G"] -[34,"o","\u001b[7A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mDependency updates provider \u001b[2m(29/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Renovate GitHub app \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mCode coverage provider \u001b[2m(30/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb\u001b[22m \u001b[2mCodecov\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[36m\u203a\u001b[39m \u001b[36m\u25cf\u001b[39m None \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Use \u2b06 and \u2b07 to select the code coverage provider.\u001b[39m\r\r\n\u001b[1G"] -[35,"o","\u001b[6A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mCode coverage provider \u001b[2m(30/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m None \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mAuto-assign the author to their PR? \u001b[2m(31/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[32m\u25cf\u001b[39m Yes \u001b[2m/ \u25cb No\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Helps to keep the PRs organized.\u001b[39m\r\r\n\u001b[1G"] -[36,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mAuto-assign the author to their PR? \u001b[2m(31/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Yes \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mAuto-add a CONFLICT label to a PR when conflicts occur? \u001b[2m(32/36)\u001b[22m\u001b[39m \u001b[90m\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[32m\u25cf\u001b[39m Yes \u001b[2m/ \u25cb No\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Helps to keep quickly identify PRs that need attention.\u001b[39m\r\r\n\u001b[1G"] -[37,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mAuto-add a CONFLICT label to a PR when conflicts occur? \u001b[2m(32/36)\u001b[22m\u001b[22m \u001b[90m\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Yes \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Documentation \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mPreserve project documentation? \u001b[2m(33/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[32m\u25cf\u001b[39m Yes \u001b[2m/ \u25cb No\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Helps to maintain the project documentation within the repository.\u001b[39m\r\r\n\u001b[1G"] -[38,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mPreserve project documentation? \u001b[2m(33/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Yes \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m AI \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mProvide AI agent instructions? \u001b[2m(34/36)\u001b[22m\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[32m\u25cf\u001b[39m Yes \u001b[2m/ \u25cb No\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Provides AI coding agents with better context about the project.\u001b[39m\r\r\n\u001b[1G"] -[39,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mProvide AI agent instructions? \u001b[2m(34/36)\u001b[22m\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Yes \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m \u001b[39m\u001b[49m\r\r\n \u001b[46m\u001b[30m Installation summary \u001b[39m\u001b[49m\r\r\n \u001b[46m\u001b[30m \u001b[39m\u001b[49m\r\r\n\r\r\n\r\r\n \u001b[90m\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u252c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mGeneral information\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Site name \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m Star Wars \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Site machine name \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m star_wars \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Organization name \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m Rebellion \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Organization machine name \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m rebellion \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Public domain \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m star-wars.com \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mDrupal\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Starter \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m load_demodb \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Modules \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m coffee, config_split,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m config_update, devel,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m drupal_helpers,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m environment_indicator,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m generated_content,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m navigation_extra_tools, pathauto,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m redirect, reroute_email,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m robotstxt, sdc_devel, seckit,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m shield, stage_file_proxy,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m testmode, xmlsitemap \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Webroot \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m web \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Profile \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m standard \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Module prefix \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m sw \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Custom modules \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m base, search, demo \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Theme machine name \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m star_wars \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Build front-end in container \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mCode repository\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Code provider \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m github \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Version scheme \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m calver \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mEnvironment\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Timezone \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m UTC \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Services \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m clamav, redis, solr \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Tools \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m behat, dclint, eslint, hadolint,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m jest, phpcs, phpstan, phpunit,\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m rector, stylelint, twig_cs_fixer \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mHosting\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Hosting provider \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m none \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mDeployment\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Deployment types \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m webhook \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mWorkflow\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Provision type \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m database \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Database source \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m url \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Migration database \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m No \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mNotifications\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Channels \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m email \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mContinuous Integration\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m CI provider \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m gha \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Visual regression testing \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m No \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Secret scanning with Gitleaks \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mAutomations\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Dependency updates provider \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m renovatebot_app \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Code coverage provider \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m none \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Auto-assign PR author \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Auto-add a CONFLICT label to PRs \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mDocumentation\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Preserve project documentation \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mAI\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m AI agent instructions \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[36m\u001b[1mLocations\u001b[22m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Current directory \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m /home/user/vortex/.art\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m ifacts/tmp/videos-workspace \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Destination directory \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m /home/user/www/drevops/vortex/.art\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m ifacts/tmp/videos-workspace/star_w\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m ars \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Vortex repository \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m /home/user/vortex \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Vortex reference \u001b[39m\u001b[90m\u2502\u001b[39m\u001b[39m HEAD \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2534\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n Vortex will be installed into your project's directory \"/home/user/demo/star_wars\"\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mProceed with installing Vortex?\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[32m\u25cf\u001b[39m Yes \u001b[2m/ \u25cb No\u001b[22m \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[1G"] -[40,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mProceed with installing Vortex?\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m Yes \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Starting project installation \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m\u2802\u001b[39m \u001b[33mDownloading Vortex\u001b[39m\r\r\n\u001b[1G"] -[40.1,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2812\u001b[39m \u001b[33mDownloading Vortex\u001b[39m\r\r\n\u001b[999D"] -[40.2,"o","\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m\u2726 Downloading Vortex\u001b[39m\r\r\n\r\r\n\r\r\n "] -[40.3,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mDownloading from \"/home/user/vortex\" repository at ref\u001b[22m\r\r\n \u001b[2m\"HEAD\"\u001b[22m\r\r\n\r\r\n\r\r\n "] -[40.4,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m\u2713 Vortex downloaded (develop)\u001b[39m\r\r\n\r\r\n\r\r\n "] -[40.5,"o","\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m\u2802\u001b[39m \u001b[33mCustomizing Vortex for your project\u001b[39m\r\r\n\u001b[1G"] -[40.6,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2812\u001b[39m \u001b[33mCustomizing Vortex for your project\u001b[39m\r\r\n\u001b[999D"] -[41.6,"o","\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m\u2726 Customizing Vortex for your project\u001b[39m\r\r\n\r\r\n\r\r\n "] -[41.7,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m\u2713 Vortex was customized for your project\u001b[39m\r\r\n\r\r\n\r\r\n "] -[41.8,"o","\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m\u2802\u001b[39m \u001b[33mPreparing destination directory\u001b[39m\r\r\n\u001b[999D"] -[41.9,"o","\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m\u2726 Preparing destination directory\u001b[39m\r\r\n\r\r\n\r\r\n "] -[42,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mCreated directory \"/home/user/demo/star_wars\".\u001b[22m\r\r\n\r\r\n\r\r\n "] -[42.1,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mInitializing a new Git repository in directory \"/home/user/demo/star_wars\".\u001b[22m\r\r\n\r\r\n\r\r\n "] -[42.2,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m\u2713 Destination directory is ready\u001b[39m\r\r\n\r\r\n\r\r\n "] -[42.3,"o","\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m\u2802\u001b[39m \u001b[33mCopying files to the destination directory\u001b[39m\r\r\n\u001b[1G"] -[42.4,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2812\u001b[39m \u001b[33mCopying files to the destination directory\u001b[39m\r\r\n\u001b[999D"] -[42.5,"o","\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m\u2726 Copying files to the destination directory\u001b[39m\r\r\n\r\r\n\r\r\n "] -[42.6,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m\u2713 Files copied to destination directory\u001b[39m\r\r\n\r\r\n\r\r\n "] -[42.7,"o","\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m\u2802\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[1G"] -[42.8,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2812\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[1G"] -[42.9,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2810\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[1G"] -[43,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2830\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[1G"] -[43.1,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2820\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[1G"] -[43.2,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2824\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[1G"] -[43.3,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2804\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[1G"] -[43.4,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2806\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[1G"] -[43.5,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2802\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[1G"] -[43.6,"o","\u001b[2A\u001b[J\r\r\n \u001b[36m\u2812\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n\u001b[999D"] -[43.7,"o","\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m\u2726 Preparing demo content\u001b[39m\r\r\n\r\r\n\r\r\n "] -[43.8,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mCreated data directory \"/home/user/demo/star_wars/.data\".\u001b[22m\r\r\n\r\r\n\r\r\n "] -[43.9,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mNo database dump file was found in \"/home/user/demo/star_wars/.data\" directory.\u001b[22m\r\r\n\r\r\n\r\r\n "] -[44,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mFetched demo database from https://github.com/drevops/vortex/releases/download/1.40.0/db.demo.sql.\u001b[22m\r\r\n\r\r\n\r\r\n "] -[44.1,"o","\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m\u2713 Demo content prepared\u001b[39m\r\r\n\r\r\n\r\r\n "] -[44.2,"o","\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[90m\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[32mFinished installing Vortex\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[32m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Add and commit all files:\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m git add -A\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m git commit -m \"Initial commit.\"\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m \u250c\u001b[39m \u001b[36mRun the site build now?\u001b[39m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m \u001b[2m\u25cb Yes /\u001b[22m \u001b[32m\u25cf\u001b[39m No \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\u001b[90m Takes ~5-10 min; output will be streamed. You can skip and run later with\u2026\u001b[39m\r\r\n\u001b[1G"] -[45.2,"o","\u001b[5A\u001b[J\r\r\n\u001b[90m \u250c\u001b[39m \u001b[2mRun the site build now?\u001b[22m \u001b[90m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n\u001b[90m \u2502\u001b[39m No \u001b[90m\u2502\u001b[39m\r\r\n\u001b[90m \u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[90m\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[32mReady to build\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[32m\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Build the site:\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m ahoy build\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m Setup GitHub Actions:\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m https://www.vortextemplate.com/docs/continuous-integration/github-actions#\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m onboarding\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2502\u001b[39m\u001b[39m \u001b[39m\u001b[90m\u2502\u001b[39m\r\r\n \u001b[90m\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518\u001b[39m\r\r\n\r\r\n"] -[48.2,"o",""] +{"version":2,"width":80,"height":42,"timestamp":1786692508,"command":"/home/user/demo/installer.exp","title":"Vortex Installer Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.586236, "o", "\r\r\n \u001b[36m──────────────────────────────────────────────────────────────────────────────\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m ██╗ ██╗ ██████╗ ██████╗ ████████╗ ███████╗ ██╗ ██╗\u001b[39m\r\r\n \u001b[36m ██║ ██║ ██╔═══██╗ ██╔══██╗ ╚══██╔══╝ ██╔════╝ ╚██╗██╔╝\u001b[39m\r\r\n \u001b[36m ██║ ██║ ██║ ██║ ██████╔╝ ██║ █████╗ ╚███╔╝\u001b[39m\r\r\n \u001b[36m ╚██╗ ██╔╝ ██║ ██║ ██╔══██╗ ██║ ██╔══╝ ██╔██╗\u001b[39m\r\r\n \u001b[36m ╚████╔╝ ╚██████╔╝ ██║ ██║ "] +[0.586245, "o", " ██"] +[0.586334, "o", "║ ███████╗ ██╔╝ ██╗\u001b[39m\r\r\n \u001b[36m ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝ ╚═╝ ╚═╝\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m Drupal project template\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m by DrevOps\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m──────────────────────────────────────────────────────────────────────────────\u001b[39m\r\r\n \u001b[2m Installer version: development\u001b[22m\r\r\n\r\r\n"] +[0.589441, "o", "\r\r\n \u001b[90m┌───────────────────────────────────────────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32mWelcome to the Vortex interactive installer\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32m───────────────────────────────────────────\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m This tool will guide you through installing the latest \u001b[4mdevelopment\u001b[0m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m version of Vortex into your project.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m "] +[0.589474, "o", " "] +[0.589548, "o", " \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m You will be asked a few questions to tailor the configuration to your\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m site.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m No changes will be made until you confirm everything at the end.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Press \u001b[33mCtrl+C\u001b[39m at any time to exit the installer.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Press \u001b[33mCtrl+U\u001b[39m at any time to go back to the previous step.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└────────────────────────────────────────────"] +[0.589591, "o", "───"] +[0.58962, "o", "────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[0.589964, "o", "\u001b[?25l"] +[0.593101, "o", "\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mValidating repository and reference\u001b[39m\r\r\n"] +[0.600104, "o", "\u001b[999D\u001b[2A\u001b[J\u001b[?25h"] +[0.600215, "o", "\r\r\n \u001b[34m✦ Validating repository and reference\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mChecking repository \"/home/user/vortex\" and reference\u001b[22m\r\r\n \u001b[2m\"HEAD\"\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] +[0.600277, "o", "\r\r\n \u001b[32m✓ Repository and reference validated successfully\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n \r\r\n \u001b[2mPress any key to continue...\u001b[22m\r\r\n"] +[3.61231, "o", "\r\r\n \u001b[46m\u001b[30m General information \u001b[39m\u001b[49m\r\r\n\r\r\n"] +[3.625564, "o", "\u001b[?25l"] +[3.628552, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[3.783421, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star wa\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m\u001b[7mE\u001b[27m.g. My Site\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────"] +[3.78343, "o", "──"] +[4.459431, "o", "──────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m S\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m St\u001b[7m \u001b[27m "] +[4.45945, "o", " "] +[4.45966, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[5.463555, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[5.46632, "o", "\u001b[1G\u001b[5A\u001b[J"] +[5.46635, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mSite name \u001b[2m(1/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[5.466434, "o", "\u001b[?25h"] +[5.487431, "o", "\u001b[?25l"] +[5.489942, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite machine name \u001b[2m(2/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name for the project directory and in the code.\u001b[39m\r\r\n"] +[6.500885, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mSite machine name \u001b[2m(2/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[6.550655, "o", "\u001b[?25l"] +[6.553729, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars Org\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[6.708352, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars O\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m\u001b[7mE\u001b[27m.g. My Org\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────"] +[6.708367, "o", "───"] +[7.342213, "o", "───────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m R\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Re\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────"] +[7.342219, "o", "────"] +[7.342309, "o", "─────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[8.345271, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Rebellion\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[9.349961, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Rebellion \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization machine name \u001b[2m(4/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m rebellion\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the co"] +[9.349984, "o", "de.\u001b[39m\r"] +[9.350216, "o", "\r\r\n"] +[10.351141, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mOrganization machine name \u001b[2m(4/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m rebellion \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mPublic domain \u001b[2m(5/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star-wars.com\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Domain name without pro"] +[10.351161, "o", "tocol and"] +[10.351376, "o", " trailing slash.\u001b[39m\r\r\n"] +[11.355712, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mPublic domain \u001b[2m(5/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star-wars.com \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Drupal \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mHow would you like your site to be created on the first run? \u001b[2m(6/36)\u001b[…\u001b[39m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose how your site will be created the first time after this \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m installer finishes: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] +[11.356066, "o", " "] +[11.356169, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from one of the standard Drupal installation profiles. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal CMS, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from the Drupal CMS recipe. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, loaded from the demo database\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a site by \u001b[4mloadin"] +[11.356334, "o", "g an exist"] +[12.36047, "o", "ing demo database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m provided with the installer. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├─────────────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mDrupal, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mDrupal CMS, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Drupal, loaded from the demo database \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────────────────────"] +[12.36068, "o", "──"] +[12.360809, "o", "───────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇. Applies only on the first run of the installer.\u001b[39m\r\r\n"] +[13.370628, "o", "\u001b[1G\u001b[24A\u001b[J"] +[13.370764, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mHow would you like your site to be created on the first run? \u001b[2m(6/36)\u001b[…\u001b[22m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose how your site will be created the first time after this \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m installer finishes: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from one of the standard Drupal installation profiles. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal CMS, installed from profile\u001b[22m "] +[13.370833, "o", " \u001b[90m│\u001b"] +[13.371064, "o", "[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from the Drupal CMS recipe. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, loaded from the demo database\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a site by \u001b[4mloading an existing demo database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m provided with the installer. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├─────────────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Drupal, loaded from the demo database "] +[13.371083, "o", " "] +[13.371358, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[14.376982, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProfile \u001b[2m(7/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Standard \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mMinimal\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mDemo Umami\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mCustom (next prompt)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select which Drupal profile to use.\u001b[39m\r\r\n"] +[15.379477, "o", "\u001b[1G\u001b[8A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProfile \u001b[2m(7/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Standard \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mModules \u001b[2m(8/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m Coffee \u001b[36m┃\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mConfig split\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mConfig upda"] +[15.379494, "o", "te\u001b[22m "] +[15.379798, "o", " \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDevel\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDrupal helpers\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mEnvironment indicator\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mGenerated content\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mNavigation extra tools\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mPathauto\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mRedirect\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────────────────"] +[15.379809, "o", "───"] +[16.384273, "o", "─────────────────────── 18 selected ┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more modules.\u001b[39m\r\r\n\u001b[1G\u001b[14A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mModules \u001b[2m(8/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Coffee \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Config split \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Config update \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Devel \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Drupal helpers \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Environment indicator \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Generated content \u001b[90m│\u001b[39m\r"] +[16.384282, "o", "\r\n\u001b[90m │"] +[16.384417, "o", "\u001b[39m Navigation extra tools \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Pathauto \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Redirect \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Reroute email \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Robots.txt \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m SDC Devel \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Seckit \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Shield \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Stage file proxy \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Testmode \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m XML Sitemap \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────"] +[16.384436, "o", "───"] +[16.384564, "o", "───────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[17.388435, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom modules prefix \u001b[2m(9/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m sw\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in custom modules\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom modules prefix \u001b[2m(9/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m sw \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b"] +[17.388717, "o", "[39m\r\r\n\r\r\n"] +[17.388925, "o", "\u001b[?25h"] +[18.392388, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom modules \u001b[2m(10/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Select which custom modules to include in your project: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mBase\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Starter module with common site utilities (mail handling, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m deploy hooks) and test scaffolding for Unit, Kernel, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Functional, and FunctionalJavascript tests. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90"] +[18.392411, "o", "m │\u001b[39m"] +[18.39249, "o", " ○ \u001b[1mSearch\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom Solr search integration module. Requires the Solr \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m service to be selected. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDemo\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Demonstrates how Vortex tooling works: includes a counter \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m block with CSS/JS, PHPUnit example tests across all test \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m types, and a Behat feature. Safe to remove on real projects. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────"] +[18.392495, "o", "───"] +[18.392599, "o", "────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m Base - starter module with utilities and test scaffolding \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mSearch - custom Solr search integration\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDemo - counter block and example tests to demonstrate tooling\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more modules.\u001b[39m\r\r\n"] +[19.426416, "o", "\u001b[1G\u001b[25A"] +[19.426569, "o", "\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom modules \u001b[2m(10/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Select which custom modules to include in your project: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mBase\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Starter module with common site utilities (mail handling, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m deploy hooks) and test scaffolding for Unit, Kernel, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Functional, and FunctionalJavascript tests. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] +[19.426582, "o", "○ \u001b[1mSe"] +[19.426789, "o", "arch\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom Solr search integration module. Requires the Solr \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m service to be selected. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDemo\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Demonstrates how Vortex tooling works: includes a counter \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m block with CSS/JS, PHPUnit example tests across all test \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m types, and a Behat feature. Safe to remove on real projects. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────"] +[19.426849, "o", "───"] +[19.427029, "o", "───────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Base - starter module with utilities and test scaffolding \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Search - custom Solr search integration \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Demo - counter block and example tests to demonstrate tooling \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[20.42887, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mTheme \u001b[2m(11/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOlivero\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mClaro\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mStark\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Custom (next prompt) \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select which Drupal theme to use.\u001b[39m\r\r\n"] +[21.433761, "o", "\u001b[1G\u001b[8A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mTheme \u001b[2m(11/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom (next prompt) \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom theme machine name \u001b[2m(12/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use"] +[21.433785, "o", " this nam"] +[21.433991, "o", "e as a custom theme name\u001b[39m\r\r\n"] +[22.439066, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom theme machine name \u001b[2m(12/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mBuild front-end assets in the container? \u001b[2m(13/36)\u001b[22m\u001b[39m \u001b[90m────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Disable to build theme assets on the host or as part of deployment."] +[22.439076, "o", "\u001b[39m\r\r\n"] +[23.442516, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mBuild front-end assets in the container? \u001b[2m(13/36)\u001b[22m\u001b[22m \u001b[90m────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Code repository \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mRepository provider \u001b[2m(14/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Vortex offers full automation with GitHub, while support for \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m other providers is limited. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] +[23.442522, "o", " "] +[23.44267, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m GitHub \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select your code repository provider.\u001b[39m\r\r\n"] +[24.447566, "o", "\u001b[1G\u001b[11A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mRepository provider \u001b[2m(14/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Vortex offers full automation with GitHub, while support for \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m other providers is limited. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m GitHub \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────────────"] +[24.447583, "o", "───"] +[24.44781, "o", "───────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[25.452841, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mRelease versioning scheme \u001b[2m(15/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose your versioning scheme: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mCalendar Versioning (CalVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4myear.month.patch\u001b[0m (E.g., \u001b[4m24.1.0\u001b[0m) \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://calver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mSemantic Versioning (SemVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4mmajor.minor.patch\u001b[0m (E.g., \u001b[4m1.0.0\u001b[0m) "] +[25.452863, "o", " "] +[25.453165, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://semver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom versioning scheme of your choice. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Calendar Versioning (CalVer) \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mSemantic Versioning (SemVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOther\u001b[22m \u001b"] +[25.453181, "o", "[90m│\u001b["] +[25.453425, "o", "39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select your version scheme.\u001b[39m\r\r\n"] +[26.461963, "o", "\u001b[1G\u001b[22A\u001b[J"] +[26.461997, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mRelease versioning scheme \u001b[2m(15/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose your versioning scheme: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mCalendar Versioning (CalVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4myear.month.patch\u001b[0m (E.g., \u001b[4m24.1.0\u001b[0m) \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://calver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mSemantic Versioning (SemVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4mmajor.minor.patch\u001b[0m (E.g., \u001b[4m1.0.0\u001b[0m) "] +[26.462011, "o", " \u001b"] +[26.462081, "o", "[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://semver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom versioning scheme of your choice. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Calendar Versioning (CalVer) \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[27.467227, "o", "\r\r\n \u001b[46m\u001b[30m Environment \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mTimezone \u001b[2m(16/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m UTC\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2mUTC\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇, or start typing to select the timezone for your project.\u001b[39m\r\r\n"] +[28.471232, "o", "\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mTimezone \u001b[2m(16/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m UTC \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mServices \u001b[2m(17/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m ClamAV \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mSolr\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mRedis\u001b[22m "] +[28.471246, "o", " "] +[28.471488, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more services.\u001b[39m\r\r\n"] +[29.476571, "o", "\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mServices \u001b[2m(17/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m ClamAV \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Solr \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Redis \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDevelopment tools \u001b[2m(18/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m PHP CodeSniffer \u001b[36m┃\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39"] +[29.476617, "o", "m \u001b[36m"] +[29.476821, "o", "◼\u001b[39m \u001b[2mPHPStan\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mRector\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mESLint\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mStylelint\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mJest\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mPHPUnit\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mBehat\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mTwig CS Fixer\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDCLint\u001b[22m"] +[29.476832, "o", " "] +[30.479324, "o", " \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────────────────────────────────────────── 11 selected ┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more tools.\u001b[39m\r\r\n\u001b[1G\u001b[14A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDevelopment tools \u001b[2m(18/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m PHP CodeSniffer \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m PHPStan \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Rector \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ESLint \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Stylelint \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Jest "] +[30.479393, "o", " "] +[30.479424, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m PHPUnit \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Behat \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Twig CS Fixer \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m DCLint \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Hadolint \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[31.484461, "o", "\r\r\n \u001b[46m\u001b[30m Hosting \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mHosting provider \u001b[2m(19/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mAcquia Cloud\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mLagoon\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select your hosting provider.\u001b[39m\r\r\n\u001b[1G\u001b[8A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mHosting provider \u001b[2m(19/36)"] +[31.484506, "o", "\u001b[22m\u001b[22m \u001b"] +[31.48475, "o", "[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[32.489138, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom web root directory \u001b[2m(20/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m web\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Custom directory where the web server serves the site.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom web root directory \u001b[2m(20/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m web \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r"] +[32.489147, "o", "\r\n\r\r\n\u001b[?25"] +[32.489257, "o", "h"] +[33.493609, "o", "\r\r\n \u001b[46m\u001b[30m Deployment \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDeployment types \u001b[2m(21/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m ◻ Code artifact \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mLagoon webhook\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mCustom webhook\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more deployment types.\u001b[39m\r\r\n\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDeployment types \u001b[2m(21/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────"] +[33.493619, "o", "────"] +[33.493819, "o", "─┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom webhook \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[34.495525, "o", "\r\r\n \u001b[46m\u001b[30m Workflow \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProvision type \u001b[2m(22/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisioning sets up the site in an environment using an \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m already assembled codebase. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mImport from database dump\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by importing a database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m typically copied from production into lower \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] +[34.495543, "o", " "] +[34.495738, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mInstall from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by installing a fresh Drupal \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m site from a profile every time an environment is \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m created. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Import from database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mInstall from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────"] +[34.495744, "o", "───"] +[34.495841, "o", "───────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the provision type.\u001b[39m\r\r\n"] +[35.506922, "o", "\u001b[1G\u001b[21A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProvision type \u001b[2m(22/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisioning sets up the site in an environment using an \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m already assembled codebase. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mImport from database dump\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by importing a database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m typically copied from production into lower \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] +[35.506932, "o", "\u001b[90m│\u001b["] +[35.507048, "o", "39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mInstall from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by installing a fresh Drupal \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m site from a profile every time an environment is \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m created. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Import from database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[36.511925, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDatabase source \u001b[2m(23/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m URL download \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mFTP download\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mAcquia backup\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mLagoon environment\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mContainer registry\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mS3 bucket\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mNone\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────"] +[36.511953, "o", "───"] +[36.512102, "o", "────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the database fetch source.\u001b[39m\r\r\n"] +[37.516978, "o", "\u001b[1G\u001b[11A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDatabase source \u001b[2m(23/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m URL download \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mUse a second database for migrations? \u001b[2m(24/36)\u001b[22m\u001b[39m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○ Yes /\u001b[22m \u001b[32m●\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Adds a second database service for Drupa"] +[37.516985, "o", "l migrati"] +[37.517114, "o", "ons.\u001b[39m\r\r\n"] +[38.520481, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mUse a second database for migrations? \u001b[2m(24/36)\u001b[22m\u001b[22m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Notifications \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mNotification channels \u001b[2m(25/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m Email \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mGitHub\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mJIRA\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m "] +[38.520492, "o", "│\u001b[39m \u001b["] +[38.520691, "o", "2m◻\u001b[22m \u001b[2mNew Relic\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mSlack\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mWebhook\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more notification channels.\u001b[39m\r\r\n"] +[39.525189, "o", "\u001b[1G\u001b[10A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mNotification channels \u001b[2m(25/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Email \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Continuous Integration \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mContinuous Integration provider \u001b[2m(26/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m GitHub Actions \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mCircleCI\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mNone\u001b[22m "] +[39.525206, "o", " \u001b["] +[39.525455, "o", "90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the CI provider.\u001b[39m\r\r\n"] +[40.52938, "o", "\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mContinuous Integration provider \u001b[2m(26/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m GitHub Actions \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mVisual regression testing with Diffy? \u001b[2m(27/36)\u001b[22m\u001b[39m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Diffy-powered visual regression workflow to compare deployed \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Automatically trig"] +[40.529385, "o", "gers compar"] +[40.529492, "o", "isons for dependency-update \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m pull requests matching the configured branch pattern \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m (`deps/*` by default). \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Runs comparisons for pull requests tagged with the `VR` \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m label and posts a sticky comment. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Also supports manual runs against any URL. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○ Yes /\u001b[22m "] +[40.529496, "o", "\u001b[32m●\u001b["] +[41.533275, "o", "39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Requires a Diffy account.\u001b[39m\r\r\n\u001b[1G\u001b[19A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mVisual regression testing with Diffy? \u001b[2m(27/36)\u001b[22m\u001b[22m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Diffy-powered visual regression workflow to compare deployed \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Automatically triggers comparisons for dependency-update \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m pull requests matching the configured branch pattern \u001b[90m│\u001b[39m\r\r\n"] +[41.533311, "o", "\u001b[90m │\u001b["] +[41.533369, "o", "39m (`deps/*` by default). \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Runs comparisons for pull requests tagged with the `VR` \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m label and posts a sticky comment. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Also supports manual runs against any URL. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────"] +[41.533377, "o", "───"] +[42.539989, "o", "───────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mScan for committed secrets with Gitleaks? \u001b[2m(28/36)\u001b[22m\u001b[39m \u001b[90m───────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Runs in CI to detect hardcoded passwords, API keys and tokens.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mScan for committed secrets with Gitleaks? \u001b[2m(28/36)\u001b[22m\u001b[22m \u001b[90m───────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────"] +[42.540137, "o", "───"] +[42.540941, "o", "──────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[43.545171, "o", "\r\r\n \u001b[46m\u001b[30m Automations \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDependency updates provider \u001b[2m(29/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Renovate GitHub app \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mRenovate self-hosted in CI\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mNone\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the dependency updates provider.\u001b[39m\r\r\n\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDependency updates provider \u001b[2m(29/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Ren"] +[43.545239, "o", "ovate GitHub"] +[43.545456, "o", " app \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[44.550023, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCode coverage provider \u001b[2m(30/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mCodecov\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the code coverage provider.\u001b[39m\r\r\n\u001b[1G\u001b[6A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCode coverage provider \u001b[2m(30/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────────────"] +[44.550037, "o", "───"] +[44.550151, "o", "────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[45.555253, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mAuto-assign the author to their PR? \u001b[2m(31/36)\u001b[22m\u001b[39m \u001b[90m─────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Helps to keep the PRs organized.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mAuto-assign the author to their PR? \u001b[2m(31/36)\u001b[22m\u001b[22m \u001b[90m─────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mAuto-add"] +[45.55527, "o", " a CONFLICT"] +[45.555487, "o", " label to a PR when conflicts occur? \u001b[2m(32/36)\u001b[22m\u001b[39m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Helps to keep quickly identify PRs that need attention.\u001b[39m\r\r\n"] +[46.55922, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mAuto-add a CONFLICT label to a PR when conflicts occur? \u001b[2m(32/36)\u001b[22m\u001b[22m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Documentation \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mPreserve project documentation? \u001b[2m(33/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Helps to maintain the project documentation"] +[46.55923, "o", " within the "] +[46.559363, "o", "repository.\u001b[39m\r\r\n"] +[47.564068, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mPreserve project documentation? \u001b[2m(33/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m AI \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProvide AI agent instructions? \u001b[2m(34/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Provides AI coding agents"] +[47.564081, "o", " with better"] +[47.564241, "o", " context about the project.\u001b[39m\r\r\n"] +[48.565544, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProvide AI agent instructions? \u001b[2m(34/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m \u001b[39m\u001b[49m\r\r\n \u001b[46m\u001b[30m Installation summary \u001b[39m\u001b[49m\r\r\n \u001b[46m\u001b[30m \u001b[39m\u001b[49m\r\r\n\r\r\n\r\r\n \u001b[90m┌────────────────────────────────────┬────────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mGeneral information\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│"] +[48.565578, "o", "\u001b[39m\u001b[39m "] +[48.565638, "o", "Site name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Star Wars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Site machine name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m star_wars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Organization name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Rebellion \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Organization machine name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m rebellion \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Public domain \u001b[39m\u001b[90m│\u001b[39m\u001b[39m star-wars.com \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mDrupal\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Starter \u001b[39m\u001b[90m│\u001b[39m\u001b[39m load_demodb \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Modules \u001b[39m\u001b[90m│\u001b[39m\u001b[39m cof"] +[48.56566, "o", "fee, co"] +[49.569935, "o", "nfig_split,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m config_update, devel,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m drupal_helpers,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m environment_indicator,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m generated_content,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m navigation_extra_tools, pathauto,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m redirect, reroute_email,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m robotstxt, sdc_deve"] +[49.569986, "o", "l, seck"] +[49.570035, "o", "it,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m shield, stage_file_proxy,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m testmode, xmlsitemap \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Webroot \u001b[39m\u001b[90m│\u001b[39m\u001b[39m web \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Profile \u001b[39m\u001b[90m│\u001b[39m\u001b[39m standard \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Module prefix \u001b[39m\u001b[90m│\u001b[39m\u001b[39m sw \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Custom modules \u001b[39m\u001b[90m│\u001b[39m\u001b[39m base, search, demo \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Theme machine name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m star_wars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Build f"] +[49.570039, "o", "ront-end"] +[49.570122, "o", " in container \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mCode repository\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Code provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m github \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Version scheme \u001b[39m\u001b[90m│\u001b[39m\u001b[39m calver \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mEnvironment\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Timezone \u001b[39m\u001b[90m│\u001b[39m\u001b[39m UTC \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Services \u001b[39m\u001b[90m│\u001b[39m\u001b[39m clamav, redis, solr \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Tools \u001b[39m\u001b[90m│\u001b[39m\u001b[39m"] +[49.570167, "o", " behat,"] +[49.570255, "o", " dclint, eslint, hadolint,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m jest, phpcs, phpstan, phpunit,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m rector, stylelint, twig_cs_fixer \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mHosting\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Hosting provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m none \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mDeployment\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Deployment types \u001b[39m\u001b[90m│\u001b[39m\u001b[39m webhook \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mWorkflow\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m "] +[49.570274, "o", " "] +[49.570416, "o", " \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Provision type \u001b[39m\u001b[90m│\u001b[39m\u001b[39m database \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Database source \u001b[39m\u001b[90m│\u001b[39m\u001b[39m url \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Migration database \u001b[39m\u001b[90m│\u001b[39m\u001b[39m No \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mNotifications\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Channels \u001b[39m\u001b[90m│\u001b[39m\u001b[39m email \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mContinuous Integration\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m CI provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m gha \u001b[39m\u001b[90m│\u001b[39m\r\r\n"] +[49.570473, "o", " \u001b[90m"] +[49.570558, "o", "│\u001b[39m\u001b[39m Visual regression testing \u001b[39m\u001b[90m│\u001b[39m\u001b[39m No \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Secret scanning with Gitleaks \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mAutomations\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Dependency updates provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m renovatebot_app \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Code coverage provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m none \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Auto-assign PR author \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Auto-add a CONFLICT label to PRs \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mDocumentation\u001b[22m\u001b[39m "] +[49.570561, "o", " \u001b"] +[49.570674, "o", "[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Preserve project documentation \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mAI\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m AI agent instructions \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mLocations\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Current directory \u001b[39m\u001b[90m│\u001b[39m\u001b[39m /home/user/vortex/.art\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m ifacts/tmp/videos-workspace \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Destination directory \u001b[39m\u001b[90m│\u001b[39m\u001b[39m /home/user/www/"] +[49.570784, "o", "drevops/vortex/.art\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m ifacts/tmp/videos-workspace/star_w\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m ars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Vortex repository \u001b[39m\u001b[90m│\u001b[39m\u001b[39m /home/user/vortex \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Vortex reference \u001b[39m\u001b[90m│\u001b[39m\u001b[39m HEAD \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└────────────────────────────────────┴────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n Vortex will be installed into your project's directory \"/home/user/demo/star_wars\"\r\r\n"] +[51.575316, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProceed with installing Vortex?\u001b[39m \u001b[90m─────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[53.579106, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProceed with installing Vortex?\u001b[22m \u001b[90m─────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Starting project installation \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mDownloading Vortex\u001b[39m\r\r\n\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mDownloading Vortex\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Downloading Vortex\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mDownloading from \"/home/user/vortex\" repository at ref\u001b[22m\r\r\n \u001b[2m\"HEAD\"\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Vortex downloaded (develop)\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mCustomizing Vortex for your project\u001b[39m\r\r\n\u001b[1G\u001b["] +[53.579118, "o", "2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mCustom"] +[54.583548, "o", "izing Vortex for your project\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Customizing Vortex for your project\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Vortex was customized for your project\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mPreparing destination directory\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Preparing destination directory\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mCreated directory \"/home/user/demo/star_wars\".\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mInitializing a new Git repository in directory \"/home/user/demo/star_wars\".\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Destination directory is ready\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mCopying files to the destination directory\u001b[39m\r\r\n\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mCopying files to the destination directory\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Copying files to the destination directory\u001b[39m\r\r\n\r\r\n\r\r\n "] +[54.583561, "o", "\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Files copied to "] +[54.583715, "o", "destination directory\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] +[54.584055, "o", "\u001b[?25l"] +[54.593991, "o", "\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[54.681274, "o", "\u001b[1G\u001b[2A\u001b[J"] +[54.681442, "o", "\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[54.762607, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠐\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[54.843665, "o", "\u001b[1G\u001b[2A\u001b[J"] +[54.843704, "o", "\r\r\n \u001b[36m⠰\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[54.932565, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠠\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.012232, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠤\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.092349, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠄\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.171507, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠆\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.252497, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.332691, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.36287, "o", "\u001b[999D\u001b[2A\u001b[J\u001b[?25h"] +[55.363183, "o", "\r\r\n \u001b[34m✦ Preparing demo content\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mCreated data directory \"/home/user/demo/star_wars/.data\".\u001b[22m\r\r\n\r\r\n"] +[55.363319, "o", "\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mNo database dump file was found in \"/home/user/demo/star_wars/.data\" directory.\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mFetched demo database from https://github.com/drevops/vortex/releases/download/1.40.0/db.demo.sql.\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Demo content prepared\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] +[55.365555, "o", "\r\r\n \u001b[90m┌───────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32mFinished installing Vortex\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32m──────────────────────────\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Add and commit all files:\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m git add -A\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m git commit -m \"Initial commit.\"\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└───────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[55.389025, "o", "\u001b[?25l"] +[55.392382, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mRun the site build now?\u001b[39m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○ Yes /\u001b[22m \u001b[32m●\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Takes ~5-10 min; output will be streamed. You can skip and run later with…\u001b[39m\r\r\n"] +[57.40101, "o", "\u001b[1G\u001b[5A\u001b[J"] +[57.40112, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mRun the site build now?\u001b[22m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[57.413689, "o", "\r\r\n \u001b[90m┌────────────────────────────────────────────────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32mReady to build\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32m──────────────\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Build the site:\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m ahoy build\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m"] +[57.4137, "o", "│\u001b[39"] +[57.413848, "o", "m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Setup GitHub Actions:\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m https://www.vortextemplate.com/docs/continuous-integration/github-actions#\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m onboarding\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└────────────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[57.424736, "x", "0"] diff --git a/.vortex/docs/static/img/installer.png b/.vortex/docs/static/img/installer.png index ec347862f..821fd397f 100644 Binary files a/.vortex/docs/static/img/installer.png and b/.vortex/docs/static/img/installer.png differ diff --git a/.vortex/docs/static/img/installer.svg b/.vortex/docs/static/img/installer.svg index b743ea11e..ea71dbbbc 100644 --- a/.vortex/docs/static/img/installer.svg +++ b/.vortex/docs/static/img/installer.svg @@ -1 +1 @@ -──────────────────────────────────────────────────────────────────────────────██╗██╗██████╗██████╗████████╗███████╗██╗██╗██║██║██╔═══██╗██╔══██╗╚══██╔══╝██╔════╝╚██╗██╔╝██║██║██║██║██████╔╝██║█████╗╚███╔╝╚██╗██╔╝██║██║██╔══██╗██║██╔══╝██╔██╗╚████╔╝╚██████╔╝██║██║██║███████╗██╔╝██╗╚═══╝╚═════╝╚═╝╚═╝╚═╝╚══════╝╚═╝╚═╝DrupalprojecttemplatebyDrevOpsInstallerversion:development┌───────────────────────────────────────────────────────────────────────┐WelcometotheVortexinteractiveinstaller───────────────────────────────────────────ThistoolwillguideyouthroughinstallingthelatestdevelopmentversionofVortexintoyourproject.Youwillbeaskedafewquestionstotailortheconfigurationtoyoursite.Nochangeswillbemadeuntilyouconfirmeverythingattheend.PressCtrl+Catanytimetoexittheinstaller.PressCtrl+Uatanytimetogobacktothepreviousstep.└───────────────────────────────────────────────────────────────────────┘ValidatingrepositoryandreferenceCheckingrepository"/home/user/vortex"andreference"HEAD"RepositoryandreferencevalidatedsuccessfullyPressanykeytocontinue... General information Sitename(1/36)────────────────────────────────────────────┐└──────────────────────────────────────────────────────────────┘Wewillusethisnameintheprojectanddocumentation.Sitename(1/36)────────────────────────────────────────────┐StarWarsstar_wars Sitemachinename(2/36)────────────────────────────────────┐star_warsOrganizationname(3/36)────────────────────────────────────┐Organizationname(3/36)────────────────────────────────────┐RebellionOrganizationmachinename(4/36)────────────────────────────┐rebellionPublicdomain(5/36)────────────────────────────────────────┐star-wars.com Drupal Choosehowyoursitewillbecreatedthefirsttimeafterthisinstallerfinishes:Drupal,installedfromprofileCreatesanewsitebypopulatingafreshdatabasefromoneofthestandardDrupalinstallationprofiles.DrupalCMS,installedfromprofilefromtheDrupalCMSrecipe.Drupal,loadedfromthedemodatabaseCreatesasitebyloadinganexistingdemodatabaseprovidedwiththeinstaller.├─────────────────────────────────────────────────────────────────────┤└─────────────────────────────────────────────────────────────────────┘Howwouldyoulikeyoursitetobecreatedonthefirstrun?(6/36)Drupal,loadedfromthedemodatabaseProfile(7/36)──────────────────────────────────────────────┐StandardUse⬆,andSpacebartoselectoneormoremodules.RedirectRerouteemailRobots.txtSDCDevelSeckitShieldStagefileproxyTestmodeXMLSitemapCustommodulesprefix(9/36)────────────────────────────────┐swCustommodules(10/36)────────────────────────────────────────────┐Selectwhichcustommodulestoincludeinyourproject:BaseStartermodulewithcommonsiteutilities(mailhandling,deployhooks)andtestscaffoldingforUnit,Kernel,Functional,andFunctionalJavascripttests.SearchCustomSolrsearchintegrationmodule.RequirestheSolrservicetobeselected.DemoDemonstrateshowVortextoolingworks:includesacounterblockwithCSS/JS,PHPUnitexampletestsacrossalltesttypes,andaBehatfeature.Safetoremoveonrealprojects.├────────────────────────────────────────────────────────────────────┤Base-startermodulewithutilitiesandtestscaffoldingSearch-customSolrsearchintegrationDemo-counterblockandexampleteststodemonstratetooling└────────────────────────────────────────────────────────────────────┘Theme(11/36)───────────────────────────────────────────────┐Custom(nextprompt)Customthememachinename(12/36)───────────────────────────┐Yes/NoBuildfront-endassetsinthecontainer?(13/36)────────────┐Yes Code repository VortexoffersfullautomationwithGitHub,whilesupportforotherprovidersislimited.├──────────────────────────────────────────────────────────────┤OtherRepositoryprovider(14/36)─────────────────────────────────┐GitHubChooseyourversioningscheme:CalendarVersioning(CalVer)year.month.patch(E.g.,24.1.0)https://calver.orgSemanticVersioning(SemVer)major.minor.patch(E.g.,1.0.0)https://semver.orgOtherCustomversioningschemeofyourchoice.Releaseversioningscheme(15/36)───────────────────────────┐CalendarVersioning(CalVer) Environment Timezone(16/36)────────────────────────────────────────────┐UTCServices(17/36)────────────────────────────────────────────┐ClamAVSolrRedisDevelopmenttools(18/36)───────────────────────────────────┐PHPCodeSnifferPHPStanRectorESLintStylelintJestPHPUnitBehatTwigCSFixerDCLintHadolint Hosting NoneHostingprovider(19/36)────────────────────────────────────┐NoneCustomwebrootdirectory(20/36)───────────────────────────┐web Deployment Deploymenttypes(21/36)────────────────────────────────────┐Customwebhook Workflow Provisioningsetsupthesiteinanenvironmentusinganalreadyassembledcodebase.ImportfromdatabasedumpProvisionsthesitebyimportingadatabasedumptypicallycopiedfromproductionintolowerenvironments.InstallfromprofileProvisionsthesitebyinstallingafreshDrupalsitefromaprofileeverytimeanenvironmentiscreated.Provisiontype(22/36)──────────────────────────────────────┐ImportfromdatabasedumpNoneDatabasesource(23/36)─────────────────────────────────────┐URLdownloadYes/NoUseaseconddatabaseformigrations?(24/36)───────────────┐No Notifications Notificationchannels(25/36)───────────────────────────────┐Email Continuous Integration ContinuousIntegrationprovider(26/36)─────────────────────┐GitHubActionsDiffy-poweredvisualregressionworkflowtocomparedeployedenvironments.Automaticallytriggerscomparisonsfordependency-updatepullrequestsmatchingtheconfiguredbranchpattern(`deps/*`bydefault).Runscomparisonsforpullrequeststaggedwiththe`VR`labelandpostsastickycomment.AlsosupportsmanualrunsagainstanyURL.VisualregressiontestingwithDiffy?(27/36)───────────────┐ScanforcommittedsecretswithGitleaks?(28/36)───────────┐ Automations Dependencyupdatesprovider(29/36)─────────────────────────┐RenovateGitHubappCodecoverageprovider(30/36)──────────────────────────────┐Auto-assigntheauthortotheirPR?(31/36)─────────────────┐└─────────────────────────────────────────────────────────────────┘Auto-addaCONFLICTlabeltoaPRwhenconflictsoccur?(32/36)Yes Documentation WorkflowProvisiontypedatabaseDatabasesourceurlMigrationdatabaseNoNotificationsChannelsemailContinuousIntegrationCIproviderghaVisualregressiontestingNoSecretscanningwithGitleaksYesAutomationsDependencyupdatesproviderrenovatebot_appCodecoverageprovidernoneAuto-assignPRauthorYesAuto-addaCONFLICTlabeltoPRsYesDocumentationPreserveprojectdocumentationYesAIAIagentinstructionsYesLocationsCurrentdirectory/home/user/vortex/.artifacts/tmp/videos-workspaceDestinationdirectory/home/user/www/drevops/vortex/.artifacts/tmp/videos-workspace/star_warsVortexrepository/home/user/vortexVortexreferenceHEAD└────────────────────────────────────┴────────────────────────────────────┘Vortexwillbeinstalledintoyourproject'sdirectory"/home/user/demo/star_wars"ProceedwithinstallingVortex?─────────────────────────────┐ Starting project installation DownloadingVortexDownloadingfrom"/home/user/vortex"repositoryatrefVortexdownloaded(develop)CustomizingVortexforyourprojectVortexwascustomizedforyourprojectPreparingdestinationdirectoryCreateddirectory"/home/user/demo/star_wars".InitializinganewGitrepositoryindirectory"/home/user/demo/star_wars".DestinationdirectoryisreadyCopyingfilestothedestinationdirectoryFilescopiedtodestinationdirectoryPreparingdemocontentPreparingdemocontentPreparingdemocontentCreateddatadirectory"/home/user/demo/star_wars/.data".Nodatabasedumpfilewasfoundin"/home/user/demo/star_wars/.data"directory.Fetcheddemodatabasefromhttps://github.com/drevops/vortex/releases/download/1.40.0/db.demo.sql.Democontentprepared┌───────────────────────────────────┐FinishedinstallingVortex──────────────────────────Addandcommitallfiles:gitadd-Agitcommit-m"Initialcommit."└───────────────────────────────────┘Runthesitebuildnow?─────────────────────────────────────┐┌────────────────────────────────────────────────────────────────────────────┐Readytobuild──────────────Buildthesite:ahoybuildSetupGitHubActions:https://www.vortextemplate.com/docs/continuous-integration/github-actions#onboarding└────────────────────────────────────────────────────────────────────────────┘Validatingrepositoryandreferencestarwars starwa E.g.MySiteS St StarWars Sitemachinename(2/36)────────────────────────────────────┐Wewillusethisnamefortheprojectdirectoryandinthecode.StarWarsOrg StarWarsO E.g.MyOrgR Re Rebellion Organizationmachinename(4/36)────────────────────────────┐rebellion Wewillusethisnameinthecode.Publicdomain(5/36)────────────────────────────────────────┐star-wars.com Domainnamewithoutprotocolandtrailingslash.Howwouldyoulikeyoursitetobecreatedonthefirstrun?(6/36)Drupal,installedfromprofileDrupalCMS,installedfromprofileDrupal,loadedfromthedemodatabaseUseand⬇.Appliesonlyonthefirstrunoftheinstaller.Profile(7/36)──────────────────────────────────────────────┐StandardMinimalDemoUmamiCustom(nextprompt)UseandtoselectwhichDrupalprofiletouse.Modules(8/36)──────────────────────────────────────────────┐CoffeeConfigsplitConfigupdateDevelDrupalhelpersEnvironmentindicatorGeneratedcontentNavigationextratoolsPathautoRedirect└─────────────────────────────────────────────────18selectedModules(8/36)──────────────────────────────────────────────┐CoffeeConfigsplitConfigupdateDevelDrupalhelpersEnvironmentindicatorGeneratedcontentNavigationextratoolsPathautoCustommodulesprefix(9/36)────────────────────────────────┐sw WewillusethisnameincustommodulesCustommodules(10/36)─────────────────────────────────────────────┐Selectwhichcustommodulestoincludeinyourproject:BaseStartermodulewithcommonsiteutilities(mailhandling,deployhooks)andtestscaffoldingforUnit,Kernel,Functional,andFunctionalJavascripttests.SearchCustomSolrsearchintegrationmodule.RequirestheSolrservicetobeselected.DemoDemonstrateshowVortextoolingworks:includesacounterblockwithCSS/JS,PHPUnitexampletestsacrossalltesttypes,andaBehatfeature.Safetoremoveonrealprojects.Base-startermodulewithutilitiesandtestscaffoldingSearch-customSolrsearchintegrationDemo-counterblockandexampleteststodemonstratetoolingTheme(11/36)───────────────────────────────────────────────┐OliveroClaroStarkCustom(nextprompt)UseandtoselectwhichDrupalthemetouse.Customthememachinename(12/36)───────────────────────────┐WewillusethisnameasacustomthemenameBuildfront-endassetsinthecontainer?(13/36)────────────┐Disabletobuildthemeassetsonthehostoraspartofdeployment.Repositoryprovider(14/36)─────────────────────────────────┐GitHubUseandtoselectyourcoderepositoryprovider.Releaseversioningscheme(15/36)───────────────────────────┐CalendarVersioning(CalVer)SemanticVersioning(SemVer)Useandtoselectyourversionscheme.Timezone(16/36)────────────────────────────────────────────┐UTC UTCUseand⬇,orstarttypingtoselectthetimezoneforyourproject.Services(17/36)────────────────────────────────────────────┐ClamAVSolrRedisUse⬆,andSpacebartoselectoneormoreservices.Developmenttools(18/36)───────────────────────────────────┐PHPCodeSnifferPHPStanRectorESLintStylelintJestPHPUnitBehatTwigCSFixerDCLint└─────────────────────────────────────────────────11selectedUse⬆,andSpacebartoselectoneormoretools.Hostingprovider(19/36)────────────────────────────────────┐AcquiaCloudLagoonUse⬆,andSpacebartoselectyourhostingprovider.Customwebrootdirectory(20/36)───────────────────────────┐web Customdirectorywherethewebserverservesthesite.Deploymenttypes(21/36)────────────────────────────────────┐CodeartifactLagoonwebhookCustomwebhookUse⬆,andSpacebartoselectoneormoredeploymenttypes.Provisiontype(22/36)──────────────────────────────────────┐ImportfromdatabasedumpInstallfromprofileUseandtoselecttheprovisiontype.Databasesource(23/36)─────────────────────────────────────┐URLdownloadFTPdownloadAcquiabackupLagoonenvironmentContainerregistryS3bucketUseandtoselectthedatabasefetchsource.Useaseconddatabaseformigrations?(24/36)───────────────┐AddsaseconddatabaseserviceforDrupalmigrations.Notificationchannels(25/36)───────────────────────────────┐EmailGitHubJIRANewRelicSlackWebhookUse⬆,andSpacebartoselectoneormorenotificationchannels.ContinuousIntegrationprovider(26/36)─────────────────────┐GitHubActionsCircleCIUseandtoselecttheCIprovider.VisualregressiontestingwithDiffy?(27/36)───────────────┐RequiresaDiffyaccount.ScanforcommittedsecretswithGitleaks?(28/36)───────────┐RunsinCItodetecthardcodedpasswords,APIkeysandtokens.Dependencyupdatesprovider(29/36)─────────────────────────┐RenovateGitHubappRenovateself-hostedinCIUseandtoselectthedependencyupdatesprovider.Codecoverageprovider(30/36)──────────────────────────────┐CodecovUseandtoselectthecodecoverageprovider.Auto-assigntheauthortotheirPR?(31/36)─────────────────┐HelpstokeepthePRsorganized.Auto-addaCONFLICTlabeltoaPRwhenconflictsoccur?(32/36)Yes/NoHelpstokeepquicklyidentifyPRsthatneedattention.Preserveprojectdocumentation?(33/36)─────────────────────┐Helpstomaintaintheprojectdocumentationwithintherepository.Preserveprojectdocumentation?(33/36)─────────────────────┐ AI ProvideAIagentinstructions?(34/36)──────────────────────┐ProvidesAIcodingagentswithbettercontextabouttheproject.rector,stylelint,twig_cs_fixerHostingHostingprovidernoneDeploymentDeploymenttypeswebhookProceedwithinstallingVortex?─────────────────────────────┐DownloadingVortexDownloadingVortexCustomizingVortexforyourprojectCustomizingVortexforyourprojectPreparingdestinationdirectoryCopyingfilestothedestinationdirectoryCopyingfilestothedestinationdirectoryPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentRunthesitebuildnow?─────────────────────────────────────┐Takes~5-10min;outputwillbestreamed.Youcanskipandrunlaterwith… \ No newline at end of file +──────────────────────────────────────────────────────────────────────────────██╗██╗██████╗██████╗████████╗███████╗██╗██╗██║██║██╔═══██╗██╔══██╗╚══██╔══╝██╔════╝╚██╗██╔╝██║██║██║██║██████╔╝██║█████╗╚███╔╝╚██╗██╔╝██║██║██╔══██╗██║██╔══╝██╔██╗╚████╔╝╚██████╔╝██║██║██║███████╗██╔╝██╗╚═══╝╚═════╝╚═╝╚═╝╚═╝╚══════╝╚═╝╚═╝DrupalprojecttemplatebyDrevOpsInstallerversion:development┌───────────────────────────────────────────────────────────────────────┐WelcometotheVortexinteractiveinstaller───────────────────────────────────────────ThistoolwillguideyouthroughinstallingthelatestdevelopmentversionofVortexintoyourproject.Youwillbeaskedafewquestionstotailortheconfigurationtoyoursite.Nochangeswillbemadeuntilyouconfirmeverythingattheend.PressCtrl+Catanytimetoexittheinstaller.PressCtrl+Uatanytimetogobacktothepreviousstep.└────────────────────────────────────────────└───────────────────────────────────────────────└───────────────────────────────────────────────────────────────────────┘ValidatingrepositoryandreferenceCheckingrepository"/home/user/vortex"andreference"HEAD"RepositoryandreferencevalidatedsuccessfullyPressanykeytocontinue... General information Sitename(1/36)────────────────────────────────────────────┐└──────────────────────────────────────────────────────────────┘Wewillusethisnameintheprojectanddocumentation.E.g.MySiteSt Sitename(1/36)────────────────────────────────────────────┐StarWarsstar_wars Sitemachinename(2/36)────────────────────────────────────┐star_warsOrganizationname(3/36)────────────────────────────────────┐E.g.MyOrgRe Organizationname(3/36)────────────────────────────────────┐RebellionOrganizationmachinename(4/36)────────────────────────────┐rebellion Wewillusethisnameinthecode.Organizationmachinename(4/36)────────────────────────────┐rebellionPublicdomain(5/36)────────────────────────────────────────┐star-wars.com Publicdomain(5/36)────────────────────────────────────────┐star-wars.com Drupal Howwouldyoulikeyoursitetobecreatedonthefirstrun?(6/36)Choosehowyoursitewillbecreatedthefirsttimeafterthisinstallerfinishes:Drupal,installedfromprofileCreatesanewsitebypopulatingafreshdatabasefromoneofthestandardDrupalinstallationprofiles.DrupalCMS,installedfromprofilefromtheDrupalCMSrecipe.Drupal,loadedfromthedemodatabaseCreatesasitebyloadinganexistingdemodatabaseprovidedwiththeinstaller.├─────────────────────────────────────────────────────────────────────┤Drupal,installedfromprofileDrupalCMS,installedfromprofileDrupal,loadedfromthedemodatabase└─────────────────────────────────────────────────────────────────────┘Howwouldyoulikeyoursitetobecreatedonthefirstrun?(6/36)Drupal,loadedfromthedemodatabaseDrupal,loadedfromthedemodatabaseProfile(7/36)──────────────────────────────────────────────┐StandardModules(8/36)──────────────────────────────────────────────┐CoffeeConfigsplitConfigupdateDevelDrupalhelpersEnvironmentindicatorGeneratedcontentNavigationextratoolsPathautoRedirectModules(8/36)──────────────────────────────────────────────┐CoffeeConfigsplitConfigupdateDevelDrupalhelpersEnvironmentindicatorGeneratedcontentNavigationextratoolsPathautoRedirectRerouteemailRobots.txtSDCDevelSeckitShieldStagefileproxyTestmodeXMLSitemapCustommodulesprefix(9/36)────────────────────────────────┐swCustommodules(10/36)─────────────────────────────────────────────┐Selectwhichcustommodulestoincludeinyourproject:BaseStartermodulewithcommonsiteutilities(mailhandling,deployhooks)andtestscaffoldingforUnit,Kernel,Functional,andFunctionalJavascripttests.SearchCustomSolrsearchintegrationmodule.RequirestheSolrservicetobeselected.DemoDemonstrateshowVortextoolingworks:includesacounterblockwithCSS/JS,PHPUnitexampletestsacrossalltesttypes,andaBehatfeature.Safetoremoveonrealprojects.Base-startermodulewithutilitiesandtestscaffoldingSearch-customSolrsearchintegrationDemo-counterblockandexampleteststodemonstratetoolingUse⬆,andSpacebartoselectoneormoremodules.Custommodules(10/36)────────────────────────────────────────────┐Selectwhichcustommodulestoincludeinyourproject:BaseStartermodulewithcommonsiteutilities(mailhandling,deployhooks)andtestscaffoldingforUnit,Kernel,Functional,andFunctionalJavascripttests.SearchCustomSolrsearchintegrationmodule.RequirestheSolrservicetobeselected.DemoDemonstrateshowVortextoolingworks:includesacounterblockwithCSS/JS,PHPUnitexampletestsacrossalltesttypes,andaBehatfeature.Safetoremoveonrealprojects.├────────────────────────────────────────────────────────────────────┤Base-startermodulewithutilitiesandtestscaffoldingSearch-customSolrsearchintegrationDemo-counterblockandexampleteststodemonstratetooling└────────────────────────────────────────────────────────────────────┘Theme(11/36)───────────────────────────────────────────────┐Custom(nextprompt)Customthememachinename(12/36)───────────────────────────┐Customthememachinename(12/36)───────────────────────────┐Buildfront-endassetsinthecontainer?(13/36)────────────┐Yes/NoDisabletobuildthemeassetsonthehostoraspartofdeployment.Buildfront-endassetsinthecontainer?(13/36)────────────┐Yes Code repository Repositoryprovider(14/36)─────────────────────────────────┐VortexoffersfullautomationwithGitHub,whilesupportforotherprovidersislimited.├──────────────────────────────────────────────────────────────┤OtherRepositoryprovider(14/36)─────────────────────────────────┐GitHubReleaseversioningscheme(15/36)───────────────────────────┐Chooseyourversioningscheme:CalendarVersioning(CalVer)year.month.patch(E.g.,24.1.0)https://calver.orgSemanticVersioning(SemVer)major.minor.patch(E.g.,1.0.0)major.minor.patch(E.g.,1.0.0)https://semver.orgOtherCustomversioningschemeofyourchoice.CalendarVersioning(CalVer)SemanticVersioning(SemVer)Releaseversioningscheme(15/36)───────────────────────────┐CalendarVersioning(CalVer) Environment Timezone(16/36)────────────────────────────────────────────┐UTCServices(17/36)────────────────────────────────────────────┐ClamAVSolrRedisServices(17/36)────────────────────────────────────────────┐ClamAVSolrRedisDevelopmenttools(18/36)───────────────────────────────────┐PHPCodeSnifferPHPStanRectorESLintStylelintJestPHPUnitBehatTwigCSFixerDCLintDevelopmenttools(18/36)───────────────────────────────────┐PHPCodeSnifferPHPStanRectorESLintStylelintJestJestPHPUnitBehatTwigCSFixerDCLintHadolint Hosting Hostingprovider(19/36)Hostingprovider(19/36)────────────────────────────────────┐NoneCustomwebrootdirectory(20/36)───────────────────────────┐web Deployment Deploymenttypes(21/36)────────────────────────────────────┐Customwebhook Workflow Provisiontype(22/36)──────────────────────────────────────┐Provisioningsetsupthesiteinanenvironmentusinganalreadyassembledcodebase.ImportfromdatabasedumpProvisionsthesitebyimportingadatabasedumptypicallycopiedfromproductionintolowerenvironments.InstallfromprofileProvisionsthesitebyinstallingafreshDrupalsitefromaprofileeverytimeanenvironmentiscreated.ImportfromdatabasedumpInstallfromprofileProvisiontype(22/36)──────────────────────────────────────┐ImportfromdatabasedumpDatabasesource(23/36)─────────────────────────────────────┐URLdownloadFTPdownloadAcquiabackupLagoonenvironmentContainerregistryS3bucketNoneDatabasesource(23/36)─────────────────────────────────────┐URLdownloadUseaseconddatabaseformigrations?(24/36)───────────────┐Yes/NoUseaseconddatabaseformigrations?(24/36)───────────────┐No Notifications Notificationchannels(25/36)───────────────────────────────┐EmailGitHubJIRANotificationchannels(25/36)───────────────────────────────┐Email Continuous Integration ContinuousIntegrationprovider(26/36)─────────────────────┐GitHubActionsCircleCINoneContinuousIntegrationprovider(26/36)─────────────────────┐GitHubActionsVisualregressiontestingwithDiffy?(27/36)───────────────┐Diffy-poweredvisualregressionworkflowtocomparedeployedenvironments.Automaticallytriggerscomparisonsfordependency-updatepullrequestsmatchingtheconfiguredbranchpattern(`deps/*`bydefault).Runscomparisonsforpullrequeststaggedwiththe`VR`labelandpostsastickycomment.AlsosupportsmanualrunsagainstanyURL.VisualregressiontestingwithDiffy?(27/36)───────────────┐ScanforcommittedsecretswithGitleaks?(28/36)───────────┐ Automations Dependencyupdatesprovider(29/36)─────────────────────────┐RenovateGitHubappCodecoverageprovider(30/36)──────────────────────────────┐Auto-assigntheauthortotheirPR?(31/36)─────────────────┐└─────────────────────────────────────────────────────────────────┘Auto-addaCONFLICTlabeltoaPRwhenconflictsoccur?(32/36)Yes Documentation Preserveprojectdocumentation?(33/36)─────────────────────┐Preserveprojectdocumentation?(33/36)─────────────────────┐ AI ProvideAIagentinstructions?(34/36)──────────────────────┐ProvideAIagentinstructions?(34/36)──────────────────────┐ Installation summary ┌────────────────────────────────────┬────────────────────────────────────┐GeneralinformationSitenameStarWarsSitemachinenamestar_warsOrganizationnameRebellionOrganizationmachinenamerebellionPublicdomainstar-wars.comDrupalStarterload_demodbModulescoffee,config_split,config_update,devel,drupal_helpers,environment_indicator,generated_content,navigation_extra_tools,pathauto,redirect,reroute_email,robotstxt,sdc_devel,seckit,shield,stage_file_proxy,testmode,xmlsitemapWebrootwebProfilestandardModuleprefixswCustommodulesbase,search,demoThememachinenamestar_warsBuildfront-endincontainerYesCoderepositoryCodeprovidergithubVersionschemecalverEnvironmentTimezoneUTCServicesclamav,redis,solrToolsbehat,dclint,eslint,hadolint,jest,phpcs,phpstan,phpunit,rector,stylelint,twig_cs_fixerHostingHostingprovidernoneDeploymentDeploymenttypeswebhookWorkflowWorkflowProvisiontypedatabaseDatabasesourceurlMigrationdatabaseNoNotificationsChannelsemailContinuousIntegrationCIproviderghaVisualregressiontestingNoSecretscanningwithGitleaksYesAutomationsDependencyupdatesproviderrenovatebot_appCodecoverageprovidernoneAuto-assignPRauthorYesAuto-addaCONFLICTlabeltoPRsYesDocumentationDocumentationPreserveprojectdocumentationYesAIAIagentinstructionsYesLocationsCurrentdirectory/home/user/vortex/.artifacts/tmp/videos-workspaceDestinationdirectory/home/user/www/drevops/vortex/.artifacts/tmp/videos-workspace/star_warsVortexrepository/home/user/vortexVortexreferenceHEAD└────────────────────────────────────┴────────────────────────────────────┘Vortexwillbeinstalledintoyourproject'sdirectory"/home/user/demo/star_wars"ProceedwithinstallingVortex?─────────────────────────────┐ Starting project installation DownloadingVortexDownloadingfrom"/home/user/vortex"repositoryatrefVortexdownloaded(develop)CustomizingVortexforyourprojectVortexwascustomizedforyourprojectPreparingdestinationdirectoryCreateddirectory"/home/user/demo/star_wars".InitializinganewGitrepositoryindirectory"/home/user/demo/star_wars".DestinationdirectoryisreadyCopyingfilestothedestinationdirectoryFilescopiedtodestinationdirectoryPreparingdemocontentPreparingdemocontentPreparingdemocontentCreateddatadirectory"/home/user/demo/star_wars/.data".Nodatabasedumpfilewasfoundin"/home/user/demo/star_wars/.data"directory.Fetcheddemodatabasefromhttps://github.com/drevops/vortex/releases/download/1.40.0/db.demo.sql.Democontentprepared┌───────────────────────────────────┐FinishedinstallingVortex──────────────────────────Addandcommitallfiles:gitadd-Agitcommit-m"Initialcommit."└───────────────────────────────────┘Runthesitebuildnow?─────────────────────────────────────┐┌────────────────────────────────────────────────────────────────────────────┐Readytobuild──────────────Buildthesite:ahoybuild╚████╔╝╚██████╔╝██║██║╚████╔╝╚██████╔╝██║██║██Validatingrepositoryandreferencestarwars └──────────────────────────────────└────────────────────────────────────St StarWars Sitemachinename(2/36)────────────────────────────────────┐Wewillusethisnamefortheprojectdirectoryandinthecode.StarWarsOrg └─────└─────────Rebellion WewillusethisnameinthecoDomainnamewithoutproDomainnamewithoutprotocolandDomainnamewithoutprotocolandtrailingslash.CreatesasitebyloadinCreatesasitebyloadinganexist└────────────────────────────────────────────────────────────└──────────────────────────────────────────────────────────────Useand⬇.Appliesonlyonthefirstrunoftheinstaller.DrupalCMS,installedfromprofileProfile(7/36)──────────────────────────────────────────────┐StandardMinimalDemoUmamiCustom(nextprompt)UseandtoselectwhichDrupalprofiletouse.ConfigupdaConfigupdate└───────────────────────└──────────────────────────└────└───────├──────────────────────────────────────├─────────────────────────────────────────Se├──────────────────────────────────────────────├─────────────────────────────────────────────────Theme(11/36)───────────────────────────────────────────────┐OliveroClaroStarkCustom(nextprompt)UseandtoselectwhichDrupalthemetouse.WewilluseWewillusethisnamWewillusethisnameasacustomthemenameGitHubUseandtoselectyourcoderepositoryprovider.└────────────────────────────────────────────────────└───────────────────────────────────────────────────────OtherUseandtoselectyourversionscheme.Timezone(16/36)────────────────────────────────────────────┐UTC UTCUseand⬇,orstarttypingtoselectthetimezoneforyourproject.RedisUse⬆,andSpacebartoselectoneormoreservices.Deploymenttypes(21/36)───────────────────────────────Deploymenttypes(21/36)───────────────────────────────────└────────────────────────└───────────────────────────Useandtoselecttheprovisiontype.└───────────└──────────────Useandtoselectthedatabasefetchsource.AddsaseconddatabaseserviceforDrupaAddsaseconddatabaseserviceforDrupalmigratiAddsaseconddatabaseserviceforDrupalmigrations.NewRelicSlackWebhookUse⬆,andSpacebartoselectoneormorenotificationchannels.UseandtoselecttheCIprovider.AutomaticallytrigAutomaticallytriggerscomparYes/Yes/└────────────────────────────└───────────────────────────────└─────────────────────────────────────────RenRenovateGitHub└───────────────────└──────────────────────Auto-addAuto-addaCONFLICTAuto-addaCONFLICTlabeltoaPRwhenconflictsoccur?(32/36)Yes/NoHelpstokeepquicklyidentifyPRsthatneedattention.HelpstomaintaintheprojectdocumentationHelpstomaintaintheprojectdocumentationwithintheHelpstomaintaintheprojectdocumentationwithintherepository.ProvidesAIcodingagentsProvidesAIcodingagentswithbetterProvidesAIcodingagentswithbettercontextabouttheproject.ModulescofModulescoffee,corobotstxt,sdc_deverobotstxt,sdc_devel,seckBuildfBuildfront-endToolsToolsbehat,Destinationdirectory/home/user/www/ProceedwithinstallingVortex?─────────────────────────────┐CustomizingVortexforyourprojectCustomFilescopiedtoPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentRunthesitebuildnow?─────────────────────────────────────┐Takes~5-10min;outputwillbestreamed.Youcanskipandrunlaterwith…SetupGitHubActions:https://www.vortextemplate.com/docs/continuous-integration/github-actions#onboarding└────────────────────────────────────────────────────────────────────────────┘ \ No newline at end of file diff --git a/.vortex/docs/static/img/lint.json b/.vortex/docs/static/img/lint.json index 865f6cfeb..49195fd4e 100644 --- a/.vortex/docs/static/img/lint.json +++ b/.vortex/docs/static/img/lint.json @@ -1,44 +1,49 @@ -{"version":2,"width":80,"height":42,"title":"Vortex ahoy lint Demo","command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy lint'"} -[0,"o","$ "] -[0.05,"o","a"] -[0.1,"o","h"] -[0.15,"o","o"] -[0.2,"o","y"] -[0.25,"o"," "] -[0.3,"o","l"] -[0.35,"o","i"] -[0.4,"o","n"] -[0.45,"o","t"] -[0.5,"o","\r\n"] -[1.5,"o","."] -[1.9,"o","."] -[2.3,"o","."] -[2.7,"o","."] -[3.1,"o","."] -[3.5,"o","."] -[3.9,"o","."] -[4.3,"o","."] -[4.7,"o","."] -[5.1,"o",". 10 / 10 (100%)\r\n\r\n\r\n"] -[5.5,"o","Time: [TIME]; Memory: [MEMORY]\r\n"] -[5.9,"o","Note: Using configuration file /app/phpstan.neon.\r\n"] -[6.3,"o"," 0/60 [\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 0%"] -[6.7,"o","\u001b[1G\u001b[2K 60/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593] 100%"] -[7.1,"o","\r\n\r\n"] -[7.5,"o","\r\n [OK] No errors \r\n\r\n"] -[7.9,"o"," 0/60 [\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 0%"] -[8.3,"o","\u001b[1G\u001b[2K 60/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593] 100%"] -[8.7,"o","\r\n\r\n"] -[9.1,"o"," [OK] Rector is done! \r\n\r\n"] -[9.5,"o","\r\n"] -[9.9,"o"," [OK] Files linted: 3, notices: 0, warnings: 0, errors: 0 \r\n\r\n"] -[10.3,"o","\r\n> lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] -[10.7,"o","\r\n> lint-js\r\n> eslint web/modules/custom --ext .js --max-warnings=0 --no-error-on-unmatched-pattern\r\n\r\n"] -[11.1,"o","\r\n> lint-css\r\n> stylelint --allow-empty-input \"web/modules/custom/**/*.css\"\r\n\r\n"] -[11.5,"o","\r\n> star_wars@1.0.0 lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] -[11.9,"o","\r\n> star_wars@1.0.0 lint-js\r\n> eslint 'js/**/*.js' --ignore-pattern '*.min.js'\r\n\r\n"] -[12.3,"o","\r\n/app/web/themes/custom/star_wars/js/star_wars.js\r\n 1:1 warning Missing JSDoc @param \"Drupal\" declaration jsdoc/require-param\r\n\r\n\u2716 1 problem (0 errors, 1 warning)\r\n 0 errors and 1 warning potentially fixable with the `--fix` option.\r\n\r\n"] -[12.7,"o","\r\n> star_wars@1.0.0 lint-css\r\n> stylelint 'scss/**/*.scss'\r\n\r\n"] -[13.1,"o","Using config file \"gherkinlint.json\"\r\n"] -[13.5,"o","No problems found in 12 feature files (took [TIME])\r\n"] -[16.5,"o",""] +{"version":2,"width":80,"height":42,"timestamp":1787192719,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy lint'","title":"Vortex ahoy lint Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.034539,"o","$ "] +[0.287086,"o","a"] +[0.314593,"o","h"] +[0.342127,"o","o"] +[0.369659,"o","y"] +[0.397185,"o"," "] +[0.424772,"o","l"] +[0.451698,"o","i"] +[0.479403,"o","n"] +[0.505034,"o","t"] +[0.735594,"o","\r\n"] +[1.529786,"o","."] +[1.559516,"o","."] +[1.561747,"o","."] +[1.602369,"o","."] +[1.602772,"o","."] +[1.609707,"o","."] +[1.614412,"o","."] +[1.617594,"o","."] +[1.619339,"o","."] +[1.820184,"o",". 10 / 10 (100%)\r\n\r\n\r\n"] +[1.820695,"o","Time: 1.77 secs; Memory: 16MB\r\n"] +[2.184699,"o","Note: Using configuration file /app/phpstan.neon.\r\n"] +[3.536386,"o"," 0/60 [\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 0%"] +[6.235132,"o","\u001b[1G\u001b[2K 20/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 33%"] +[7.141948,"o","\u001b[1G\u001b[2K 40/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 66%"] +[7.61911,"o","\u001b[1G\u001b[2K 60/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593] 100%"] +[7.650902,"o","\r\n\r\n"] +[7.654597,"o","\r\n [OK] No errors \r\n\r\n"] +[9.338338,"o"," 0/60 [\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 0%"] +[24.26825,"o","\u001b[1G\u001b[2K 16/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 26%"] +[26.931119,"o","\u001b[1G\u001b[2K 28/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 46%"] +[27.441988,"o","\u001b[1G\u001b[2K 44/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 73%"] +[27.797076,"o","\u001b[1G\u001b[2K 60/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593] 100%"] +[27.814106,"o","\r\n\r\n"] +[27.81512,"o"," [OK] Rector is done! \r\n\r\n"] +[28.046353,"o","\r\n"] +[28.046874,"o"," [OK] Files linted: 3, notices: 0, warnings: 0, errors: 0 \r\n\r\n"] +[28.172157,"o","\r\n> lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] +[28.210545,"o","\r\n> lint-js\r\n> eslint web/modules/custom --ext .js --max-warnings=0 --no-error-on-unmatched-pattern\r\n\r\n"] +[29.172688,"o","\r\n> lint-css\r\n> stylelint --allow-empty-input \"web/modules/custom/**/*.css\"\r\n\r\n"] +[29.881316,"o","\r\n> star_wars@1.0.0 lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] +[29.929279,"o","\r\n> star_wars@1.0.0 lint-js\r\n> eslint 'js/**/*.js' --ignore-pattern '*.min.js'\r\n\r\n"] +[30.705164,"o","\r\n/app/web/themes/custom/star_wars/js/star_wars.js\r\n 1:1 warning Missing JSDoc @param \"Drupal\" declaration jsdoc/require-param\r\n\r\n\u2716 1 problem (0 errors, 1 warning)\r\n 0 errors and 1 warning potentially fixable with the `--fix` option.\r\n\r\n"] +[30.754667,"o","\r\n> star_wars@1.0.0 lint-css\r\n> stylelint 'scss/**/*.scss'\r\n\r\n"] +[31.323845,"o","Using config file \"gherkinlint.json\"\r\n"] +[31.368145,"o","No problems found in 12 feature files (took 0.049589872360229 seconds)\r\n"] +[31.378411,"x","0"] diff --git a/.vortex/docs/static/img/lint.png b/.vortex/docs/static/img/lint.png index 2bb35501c..b72cceddb 100644 Binary files a/.vortex/docs/static/img/lint.png and b/.vortex/docs/static/img/lint.png differ diff --git a/.vortex/docs/static/img/lint.svg b/.vortex/docs/static/img/lint.svg index e32e6ddd6..e10401b66 100644 --- a/.vortex/docs/static/img/lint.svg +++ b/.vortex/docs/static/img/lint.svg @@ -1 +1 @@ -$ahoy$ahoylint..........10/10(100%)Time:[TIME];Memory:[MEMORY]Note:Usingconfigurationfile/app/phpstan.neon.0/60[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]0%60/60[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]100%[OK]Noerrors[OK]Rectorisdone![OK]Fileslinted:3,notices:0,warnings:0,errors:0>lint>npmrunlint-js&&npmrunlint-css>lint-js>eslintweb/modules/custom--ext.js--max-warnings=0--no-error-on-unmatched-pattern>lint-css>stylelint--allow-empty-input"web/modules/custom/**/*.css">star_wars@1.0.0lint>star_wars@1.0.0lint-js>eslint'js/**/*.js'--ignore-pattern'*.min.js'/app/web/themes/custom/star_wars/js/star_wars.js1:1warningMissingJSDoc@param"Drupal"declarationjsdoc/require-param1problem(0errors,1warning)0errorsand1warningpotentiallyfixablewiththe`--fix`option.>star_wars@1.0.0lint-css>stylelint'scss/**/*.scss'Usingconfigfile"gherkinlint.json"Noproblemsfoundin12featurefiles(took[TIME])$$a$ah$aho$ahoyl$ahoyli$ahoylin............................................. \ No newline at end of file +$ahoy$ahoylint..........10/10(100%)Time:1.77secs;Memory:16MBNote:Usingconfigurationfile/app/phpstan.neon.0/60[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]0%60/60[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]100%[OK]Noerrors[OK]Rectorisdone![OK]Fileslinted:3,notices:0,warnings:0,errors:0>lint>npmrunlint-js&&npmrunlint-css>lint-js>eslintweb/modules/custom--ext.js--max-warnings=0--no-error-on-unmatched-pattern>lint-css>stylelint--allow-empty-input"web/modules/custom/**/*.css">star_wars@1.0.0lint>star_wars@1.0.0lint-js>eslint'js/**/*.js'--ignore-pattern'*.min.js'/app/web/themes/custom/star_wars/js/star_wars.js1:1warningMissingJSDoc@param"Drupal"declarationjsdoc/require-param1problem(0errors,1warning)0errorsand1warningpotentiallyfixablewiththe`--fix`option.>star_wars@1.0.0lint-css>stylelint'scss/**/*.scss'Usingconfigfile"gherkinlint.json"$$a$ah$aho$ahoyl$ahoyli$ahoylin.............................................20/60[▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░]33%40/60[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░]66%16/60[▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░]26%28/60[▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░]46%44/60[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░]73%Noproblemsfoundin12featurefiles(took0.049589872360229seconds) \ No newline at end of file diff --git a/.vortex/docs/static/img/provision.json b/.vortex/docs/static/img/provision.json index efe2bc607..36086900e 100644 --- a/.vortex/docs/static/img/provision.json +++ b/.vortex/docs/static/img/provision.json @@ -1,197 +1,198 @@ -{"version":2,"width":80,"height":42,"title":"Vortex ahoy provision Demo","command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy provision'"} -[0,"o","$ "] -[0.05,"o","a"] -[0.1,"o","h"] -[0.15,"o","o"] -[0.2,"o","y"] -[0.25,"o"," "] -[0.3,"o","p"] -[0.35,"o","r"] -[0.4,"o","o"] -[0.45,"o","v"] -[0.5,"o","i"] -[0.55,"o","s"] -[0.6,"o","i"] -[0.65,"o","o"] -[0.7,"o","n"] -[0.75,"o","\r\n"] -[1.75,"o","\u001b[36m[INFO] Started site provisioning.\u001b[0m\r\n"] -[1.9,"o","\r\n Drupal core version : 11.4.5\r\n Drush version : 13.7.6.0\r\n\r\n"] -[2.05,"o"," Web root path : /app/web\r\n Public files path : sites/default/files\r\n Private files path : sites/default/files/private\r\n Temporary files path : /tmp\r\n Config files path : /app/config/default\r\n"] -[2.2,"o"," DB dump file path : /app/.data/db.sql (present)\r\n"] -[2.35,"o","\r\n Profile : standard\r\n"] -[2.5,"o"," Configuration files present : No\r\n"] -[2.65,"o"," Existing site found : Yes\r\n\r\n Provision type : database\r\n"] -[2.8,"o"," Fallback to profile : No\r\n"] -[2.95,"o"," Overwrite existing DB : Yes\r\n"] -[3.1,"o"," Skip DB sanitization : No\r\n"] -[3.25,"o"," Skip post-provision operations : No\r\n"] -[3.4,"o"," Verify config after update : No\r\n"] -[3.55,"o"," Use maintenance mode : Yes\r\n\r\n"] -[3.7,"o","\u001b[36m[INFO] Provisioning site from the database dump file.\u001b[0m\r\n Dump file path: /app/.data/db.sql\r\n Existing site was found.\r\n"] -[3.85,"o"," Existing site content will be removed and fresh content will be imported from the database dump file.\r\n"] -[4,"o","\u001b[36m[INFO] Started database file import.\u001b[0m\r\n"] -[4.15,"o","\r\n"] -[4.3,"o"," // Do you really want to drop all tables in the database drupal?: yes. \r\n\r\n"] -[4.45,"o"," Imported database from the dump file.\r\n"] -[4.6,"o","\u001b[32m[ OK ] Finished database file import.\u001b[0m\r\n"] -[4.75,"o","\r\n"] -[4.9,"o","\u001b[36m[INFO] Current Drupal environment: local\u001b[0m\r\n\r\n"] -[5.05,"o","\u001b[34m[TASK] Enabling maintenance mode.\u001b[0m\r\n"] -[5.2,"o","\u001b[32m[ OK ] Enabled maintenance mode. ([TIME])\u001b[0m\r\n\r\n"] -[5.35,"o","\u001b[34m[TASK] Running database updates.\u001b[0m\r\n"] -[5.5,"o"," [success] No pending updates.\r\n"] -[5.65,"o","\u001b[32m[ OK ] Completed running database updates. ([TIME])\u001b[0m\r\n\r\n"] -[5.8,"o","\u001b[34m[TASK] Clearing cache after database updates.\u001b[0m\r\n"] -[5.95,"o"," [success] Cache rebuild complete.\r\n"] -[6.1,"o","\u001b[32m[ OK ] Cache was cleared. ([TIME])\u001b[0m\r\n\r\n\u001b[34m[TASK] Rebuilding cache.\u001b[0m\r\n"] -[6.25,"o"," [success] Cache rebuild complete.\r\n"] -[6.4,"o","\u001b[32m[ OK ] Cache was rebuilt. ([TIME])\u001b[0m\r\n\r\n"] -[6.55,"o","\u001b[34m[TASK] Running deployment hooks.\u001b[0m\r\n"] -[6.7,"o"," [success] No pending deploy hooks.\r\n"] -[6.85,"o","\u001b[32m[ OK ] Completed deployment hooks. ([TIME])\u001b[0m\r\n\r\n"] -[7,"o","\u001b[36m[INFO] Sanitizing database.\u001b[0m\r\n"] -[7.15,"o"," [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserTableCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeCommentsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserFieldsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeSessionsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\nThe following operations will be performed:\r\n"] -[7.3,"o"," * Sanitize user passwords.\r\n * Sanitize user emails.\r\n * Preserve user emails and passwords for the specified roles.\r\n * Sanitize text fields associated with users.\r\n\r\n"] -[7.45,"o"," // Do you want to sanitize the current database?: yes. \r\n\r\n"] -[7.6,"o"," [success] User passwords sanitized.\r\n [success] User emails sanitized.\r\n"] -[7.75,"o","\u001b[32m[ OK ] Sanitized database using drush sql:sanitize.\u001b[0m\r\n"] -[7.9,"o","\r\n"] -[8.05,"o","\u001b[32m[ OK ] Applied custom sanitization commands from file.\u001b[0m\r\n"] -[8.2,"o","\r\n"] -[8.35,"o","\r\n"] -[8.5,"o","\u001b[32m[ OK ] Reset user 0 username and email.\u001b[0m\r\n\r\n"] -[8.65,"o","\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\".\u001b[0m\r\n\r\n"] -[8.8,"o"," ==> Started demo modules operations.\r\n"] -[8.95,"o"," Environment: local\r\n"] -[9.1,"o"," > Creating the content model.\r\n"] -[9.25,"o","0/2 [\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591]\r\nApplying recipe\r\n"] -[9.4,"o","\r\n2/2 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593]\r\nApplied Basic page recipe.\r\n"] -[9.55,"o","\r\n [OK] Basic page applied successfully \r\n\r\n"] -[9.7,"o"," < Created the content model.\r\n > Setting site name.\r\n"] -[9.85,"o"," < Set site name.\r\n > Setting up the administration navigation.\r\n"] -[10,"o"," [notice] Already installed: navigation\r\n"] -[10.15,"o"," < Set up the administration navigation.\r\n > Installing contrib modules.\r\n"] -[10.3,"o","The following module(s) will be installed: coffee, config_split, config_update, media, environment_indicator, navigation_extra_tools, pathauto, redirect, reroute_email, robotstxt, shield, stage_file_proxy, xmlsitemap, token\r\n"] -[10.45,"o","\r\n"] -[10.6,"o"," // Do you want to continue?: yes. \r\n\r\n"] -[10.75,"o"," [success] Module coffee has been installed. (Permissions - Configure)\r\n"] -[10.9,"o"," [success] Module config_split has been installed. (Permissions - Configure)\r\n"] -[11.05,"o"," [success] Module config_update has been installed.\r\n"] -[11.2,"o"," [success] Module media has been installed. (Permissions - Configure)\r\n"] -[11.35,"o"," [success] Module environment_indicator has been installed. (Permissions - Configure)\r\n"] -[11.5,"o"," [success] Module navigation_extra_tools has been installed. (Permissions)\r\n"] -[11.65,"o"," [success] Module pathauto has been installed. (Permissions - Configure)\r\n"] -[11.8,"o"," [success] Module redirect has been installed. (Permissions - Configure)\r\n"] -[11.95,"o"," [success] Module reroute_email has been installed. (Permissions - Configure)\r\n"] -[12.1,"o"," [success] Module robotstxt has been installed. (Permissions - Configure)\r\n"] -[12.25,"o"," [success] Module shield has been installed. (Permissions - Configure)\r\n"] -[12.4,"o"," [success] Module stage_file_proxy has been installed. (Permissions - Configure)\r\n"] -[12.55,"o"," [success] Module xmlsitemap has been installed. (Permissions - Configure)\r\n"] -[12.7,"o"," [success] Module token has been installed.\r\n"] -[12.85,"o"," < Installed contrib modules.\r\n > Installing Redis module.\r\n"] -[13,"o"," [success] Module redis has been installed. (Permissions - Configure)\r\n"] -[13.15,"o"," < Installed Redis module.\r\n > Installing and configuring ClamAV.\r\n"] -[13.3,"o"," [success] Module clamav has been installed. (Permissions - Configure)\r\n"] -[13.45,"o","\r\n"] -[13.6,"o"," // Do you want to update mode_daemon_tcpip.hostname key in clamav.settings \r\n // config?: yes. \r\n\r\n"] -[13.75,"o"," < Installed and configured ClamAV.\r\n"] -[13.9,"o"," > Installing Solr search modules.\r\n"] -[14.05,"o","The following module(s) will be installed: search_api, search_api_solr, language\r\n"] -[14.2,"o","\r\n"] -[14.35,"o"," // Do you want to continue?: yes. \r\n\r\n"] -[14.5,"o"," [success] Module search_api has been installed. (Permissions - Configure)\r\n"] -[14.65,"o"," [success] Module search_api_solr has been installed.\r\n"] -[14.8,"o"," [success] Module language has been installed. (Permissions - Configure)\r\n"] -[14.95,"o"," < Installed Solr search modules.\r\n"] -[15.1,"o"," > Installing custom site modules.\r\n"] -[15.25,"o"," [success] Module sw_base has been installed.\r\n"] -[15.4,"o","The following module(s) will be installed: sw_search, workflows, content_moderation\r\n"] -[15.55,"o","\r\n"] -[15.7,"o"," // Do you want to continue?: yes. \r\n\r\n"] -[15.85,"o"," [success] Module sw_search has been installed.\r\n"] -[16,"o"," [success] Module workflows has been installed. (Permissions - Configure)\r\n"] -[16.15,"o"," [success] Module content_moderation has been installed. (Permissions - Configure)\r\n"] -[16.3,"o","The following module(s) will be installed: sw_demo, drupal_helpers, testmode\r\n"] -[16.45,"o","\r\n"] -[16.6,"o"," // Do you want to continue?: yes. \r\n\r\n"] -[16.75,"o"," [success] Module sw_demo has been installed.\r\n"] -[16.9,"o"," [success] Module drupal_helpers has been installed.\r\n"] -[17.05,"o"," [success] Module testmode has been installed. (Configure)\r\n"] -[17.2,"o"," < Installed custom site modules.\r\n > Running deployment hooks.\r\n"] -[17.35,"o"," ----------- ------------------------ ---------------------------------------- \r\n Module Hook Description \r\n ----------- ------------------------ ---------------------------------------- \r\n sw_base install_active_theme Installs default and custom theme. \r\n @codeCoverageIgnore \r\n sw_demo configure_testmode Configure testmode to filter the pages \r\n view. Registers the 'sw_demo_pages' \r\n view with testmode so that only \r\n content matching the [TEST] prefix \r\n appears during test runs. \r\n @codeCoverageIgnore \r\n sw_demo create_pages_menu_link Create \"Pages\" menu link in the main \r\n navigation. Demonstrates using the \r\n drupal_helpers module to manage menu \r\n links within deploy hooks. \r\n @codeCoverageIgnore \r\n sw_demo place_counter_block Place counter block in the \"content\" \r\n region. @codeCoverageIgnore \r\n sw_search add_editorial_workflow Attach editorial workflow to the page \r\n content type. Computed base fields \r\n like 'moderation_state' are only \r\n available when a workflow is attached \r\n to the content type. \r\n @codeCoverageIgnore \r\n ----------- ------------------------ ---------------------------------------- \r\n\r\n\r\n"] -[17.5,"o"," // Do you wish to run the specified pending deploy hooks?: yes. \r\n\r\n"] -[17.65,"o","> [notice] Deploy hook started: sw_base_deploy_install_active_theme\r\n"] -[17.8,"o","> [notice] Performed: sw_base_deploy_install_active_theme\r\n> [notice] Deploy hook started: sw_demo_deploy_configure_testmode\r\n"] -[17.95,"o","> [notice] Configured testmode to filter the pages view.\r\n> [notice] Performed: sw_demo_deploy_configure_testmode\r\n"] -[18.1,"o","> [notice] Deploy hook started: sw_demo_deploy_create_pages_menu_link\r\n"] -[18.25,"o","> [notice] Created \"Pages\" menu link in main navigation.\r\n> [notice] Performed: sw_demo_deploy_create_pages_menu_link\r\n"] -[18.4,"o","> [notice] Deploy hook started: sw_demo_deploy_place_counter_block\r\n"] -[18.55,"o","> [notice] Counter block placed in the \"content\" region.\r\n> [notice] Performed: sw_demo_deploy_place_counter_block\r\n"] -[18.7,"o","> [notice] Deploy hook started: sw_search_deploy_add_editorial_workflow\r\n"] -[18.85,"o","> [notice] Attached editorial workflow to page content type.\r\n> [notice] Performed: sw_search_deploy_add_editorial_workflow\r\n"] -[19,"o"," [success] Finished performing deploy hooks.\r\n"] -[19.15,"o"," < Ran deployment hooks.\r\n ==> Finished demo modules operations.\r\n\r\n"] -[19.3,"o","\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\". ([TIME])\u001b[0m\r\n\r\n"] -[19.45,"o","\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\".\u001b[0m\r\n\r\n"] -[19.6,"o"," ==> Started development modules operations.\r\n"] -[19.75,"o"," Environment: local\r\n"] -[19.9,"o"," > Installing Single Directory Component development tools.\r\n"] -[20.05,"o"," [success] Module sdc_devel has been installed.\r\n"] -[20.2,"o"," < Installed Single Directory Component development tools.\r\n > Installing Devel module.\r\n"] -[20.35,"o"," [success] Module devel has been installed. (Permissions - Configure)\r\n"] -[20.5,"o"," < Installed Devel module.\r\n > Installing Testmode module.\r\n"] -[20.65,"o"," [notice] Already installed: testmode\r\n"] -[20.8,"o"," < Installed Testmode module.\r\n > Installing Generated content module.\r\n"] -[20.95,"o","Started creation of generated content from modules: sw_demo, generated_content.\r\n"] -[21.1,"o","Created \"page\" node \"Demo page 1 accusamusanimide\" [ID: 2]\r\n"] -[21.25,"o","Created \"page\" node \"Demo page 2 asperioresatquem\" [ID: 3]\r\n"] -[21.4,"o","Created \"page\" node \"Demo page 3 debitisdelectuse\" [ID: 4]\r\n"] -[21.55,"o","Created \"page\" node \"Demo page 4 inmolestiaeoccae\" [ID: 5]\r\n"] -[21.7,"o","Created \"page\" node \"Demo page 5 doloribusiustoof\" [ID: 6]\r\n"] -[21.85,"o","Created \"page\" node \"Demo page 6 dolorumevenietli\" [ID: 7]\r\n"] -[22,"o","Created \"page\" node \"Demo page 7 facereidmaximeni\" [ID: 8]\r\n"] -[22.15,"o","Created \"page\" node \"Demo page 8 mollitianonsunta\" [ID: 9]\r\n"] -[22.3,"o","Created \"page\" node \"Demo page 9 distinctioharump\" [ID: 10]\r\n"] -[22.45,"o","Created \"page\" node \"Demo page 10 idimpeditmaximem\" [ID: 11]\r\n"] -[22.6,"o","Created \"page\" node \"Demo page 11 culpadebitisnobi\" [ID: 12]\r\n"] -[22.75,"o","Created \"page\" node \"Demo page 12 eosiustooptioqui\" [ID: 13]\r\n"] -[22.9,"o","Created \"page\" node \"Demo page 13 etitaqueproviden\" [ID: 14]\r\n"] -[23.05,"o","Created \"page\" node \"Demo page 14 animiautculpamai\" [ID: 15]\r\n"] -[23.2,"o","Created \"page\" node \"Demo page 15 maioresmolestiae\" [ID: 16]\r\n"] -[23.35,"o","Created \"page\" node \"Demo page 16 occaecatiperfere\" [ID: 17]\r\n"] -[23.5,"o","Created \"page\" node \"Demo page 17 fugaidimpeditnec\" [ID: 18]\r\n"] -[23.65,"o","Created \"page\" node \"Demo page 18 estiustomaximequ\" [ID: 19]\r\n"] -[23.8,"o","Created \"page\" node \"Demo page 19 consequaturdeser\" [ID: 20]\r\n"] -[23.95,"o","Created \"page\" node \"Demo page 20 doloreseosmaxime\" [ID: 21]\r\n"] -[24.1,"o","Created generated content entities \"node\" with bundle \"page\".\r\n"] -[24.25,"o","Created all generated content.\r\n"] -[24.4,"o","Finished creation of generated content.\r\n"] -[24.55,"o"," [success] Module generated_content has been installed. (Permissions)\r\n"] -[24.7,"o"," < Installed Generated content module.\r\n ==> Finished development modules operations.\r\n"] -[24.85,"o","\r\n"] -[25,"o","\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\". ([TIME])\u001b[0m\r\n\r\n"] -[25.15,"o","\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-30-search-index.sh\".\u001b[0m\r\n\r\n"] -[25.3,"o"," ==> Started search indexing operations.\r\n"] -[25.45,"o"," Environment: local\r\n Search indexing skip: 0\r\n\r\n"] -[25.6,"o"," > Resetting search index tracker.\r\n"] -[25.75,"o"," [success] Content was successfully scheduled for reindexing.\r\n"] -[25.9,"o"," < Reset search index tracker.\r\n > Running search indexing.\r\n"] -[26.05,"o"," [success] Found 21 items to index for Content. Indexing all items.\r\n [success] Indexing a maximum number of 21 items (50 items per batch run) for the index 'Content'.\r\n"] -[26.2,"o","> [notice] Successfully indexed 21 items on Content.\r\n"] -[26.35,"o","> [notice] Message: Successfully indexed 21 items.\r\n> \r\n"] -[26.5,"o"," < Completed search indexing.\r\n ==> Finished search indexing operations.\r\n"] -[26.65,"o","\r\n"] -[26.8,"o","\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-30-search-index.sh\". ([TIME])\u001b[0m\r\n\r\n\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-40-example.sh\".\u001b[0m\r\n\r\n"] -[26.95,"o"," ==> Started example operations.\r\n"] -[27.1,"o"," Environment: local\r\n"] -[27.25,"o"," Running example operations in non-production environment.\r\n > Performing an example operation.\r\n"] -[27.4,"o"," Replace this with your own commands.\r\n < Performed an example operation.\r\n Fresh database detected. Performing additional example operations.\r\n"] -[27.55,"o"," ==> Finished example operations.\r\n"] -[27.7,"o","\r\n"] -[27.85,"o","\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-40-example.sh\". ([TIME])\u001b[0m\r\n\r\n"] -[28,"o","\u001b[34m[TASK] Disabling maintenance mode.\u001b[0m\r\n"] -[28.15,"o","\u001b[32m[ OK ] Disabled maintenance mode. ([TIME])\u001b[0m\r\n\r\n"] -[28.3,"o","\u001b[32m[ OK ] Finished site provisioning ([TIME]).\u001b[0m\r\n"] -[28.45,"o","http://vortex_videos.docker.amazee.io/user/reset/1/[TIME]/[REDACTED]/login\r\n"] -[31.45,"o",""] +{"version":2,"width":80,"height":42,"timestamp":1786956232,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy provision'","title":"Vortex ahoy provision Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.090474, "o", "$ "] +[0.591406, "o", "a"] +[0.64803, "o", "h"] +[0.703018, "o", "o"] +[0.758502, "o", "y"] +[0.808704, "o", " "] +[0.863563, "o", "p"] +[0.919733, "o", "r"] +[0.973393, "o", "o"] +[1.023512, "o", "v"] +[1.074505, "o", "i"] +[1.129034, "o", "s"] +[1.187396, "o", "i"] +[1.240577, "o", "o"] +[1.292136, "o", "n"] +[1.752824, "o", "\r\n"] +[2.015306, "o", "\u001b[36m[INFO] Started site provisioning.\u001b[0m\r\n"] +[4.011752, "o", "\r\n Drupal core version : 11.4.5\r\n Drush version : 13.7.6.0\r\n\r\n"] +[4.012087, "o", " Web root path : /app/web\r\n Public files path : sites/default/files\r\n Private files path : sites/default/files/private\r\n Temporary files path : /tmp\r\n Config files path : /app/config/default\r\n"] +[4.01319, "o", " DB dump file path : /app/.data/db.sql (present)\r\n"] +[4.013252, "o", "\r\n Profile : standard\r\n"] +[4.013757, "o", " Configuration files present : No\r\n"] +[4.014172, "o", " Existing site found : Yes\r\n\r\n Provision type : database\r\n"] +[4.014595, "o", " Fallback to profile : No\r\n"] +[4.014953, "o", " Overwrite existing DB : Yes\r\n"] +[4.015266, "o", " Skip DB sanitization : No\r\n"] +[4.015893, "o", " Skip post-provision operations : No\r\n"] +[4.016295, "o", " Verify config after update : No\r\n"] +[4.016601, "o", " Use maintenance mode : Yes\r\n\r\n"] +[4.017743, "o", "\u001b[36m[INFO] Provisioning site from the database dump file.\u001b[0m\r\n Dump file path: /app/.data/db.sql\r\n Existing site was found.\r\n"] +[4.01784, "o", " Existing site content will be removed and fresh content will be imported from the database dump file.\r\n"] +[4.029782, "o", "\u001b[36m[INFO] Started database file import.\u001b[0m\r\n"] +[4.328482, "o", "\r\n"] +[4.332627, "o", " // Do you really want to drop all tables in the database drupal?: yes. \r\n\r\n"] +[5.625657, "o", " Imported database from the dump file.\r\n"] +[5.626223, "o", "\u001b[32m[ OK ] Finished database file import.\u001b[0m\r\n"] +[5.6264, "o", "\r\n"] +[6.213862, "o", "\u001b[36m[INFO] Current Drupal environment: local\u001b[0m\r\n\r\n"] +[6.215808, "o", "\u001b[34m[TASK] Enabling maintenance mode.\u001b[0m\r\n"] +[6.794007, "o", "\u001b[32m[ OK ] Enabled maintenance mode. (0s)\u001b[0m\r\n\r\n"] +[6.795626, "o", "\u001b[34m[TASK] Running database updates.\u001b[0m\r\n"] +[10.41456, "o", " [success] No pending updates.\r\n"] +[10.431016, "o", "\u001b[32m[ OK ] Completed running database updates. (4s)\u001b[0m\r\n\r\n"] +[10.431946, "o", "\u001b[34m[TASK] Clearing cache after database updates.\u001b[0m\r\n"] +[12.593758, "o", " [success] Cache rebuild complete.\r\n"] +[12.620892, "o", "\u001b[32m[ OK ] Cache was cleared. (2s)\u001b[0m\r\n\r\n\u001b[34m[TASK] Rebuilding cache.\u001b[0m\r\n"] +[14.856038, "o", " [success] Cache rebuild complete.\r\n"] +[14.867609, "o", "\u001b[32m[ OK ] Cache was rebuilt. (3s)\u001b[0m\r\n\r\n"] +[14.870027, "o", "\u001b[34m[TASK] Running deployment hooks.\u001b[0m\r\n"] +[15.522077, "o", " [success] No pending deploy hooks.\r\n"] +[15.560893, "o", "\u001b[32m[ OK ] Completed deployment hooks. (0s)\u001b[0m\r\n\r\n"] +[15.575088, "o", "\u001b[36m[INFO] Sanitizing database.\u001b[0m\r\n"] +[16.003599, "o", " [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserTableCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeCommentsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserFieldsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeSessionsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\nThe following operations will be performed:\r\n"] +[16.00427, "o", " * Sanitize user passwords.\r\n * Sanitize user emails.\r\n * Preserve user emails and passwords for the specified roles.\r\n * Sanitize text fields associated with users.\r\n\r\n"] +[16.007325, "o", " // Do you want to sanitize the current database?: yes. \r\n\r\n"] +[16.314901, "o", " [success] User passwords sanitized.\r\n [success] User emails sanitized.\r\n"] +[16.372833, "o", "\u001b[32m[ OK ] Sanitized database using drush sql:sanitize.\u001b[0m\r\n"] +[16.733037, "o", "\r\n"] +[16.745878, "o", "\u001b[32m[ OK ] Applied custom sanitization commands from file.\u001b[0m\r\n"] +[17.060442, "o", "\r\n"] +[17.37189, "o", "\r\n"] +[17.379667, "o", "\u001b[32m[ OK ] Reset user 0 username and email.\u001b[0m\r\n\r\n"] +[17.382116, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\".\u001b[0m\r\n\r\n"] +[17.390183, "o", " ==> Started demo modules operations.\r\n"] +[17.82906, "o", " Environment: local\r\n"] +[17.829718, "o", " > Creating the content model.\r\n"] +[18.408559, "o", "0/2 [░░░░░░░░░░░░░░░░░░░░░░░░░░░░]\r\nApplying recipe\r\n"] +[18.414766, "o", "\r\n2/2 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]\r\nApplied Basic page recipe.\r\n"] +[18.414788, "o", "\r\n [OK] Basic page applied successfully \r\n\r\n"] +[18.421763, "o", " < Created the content model.\r\n > Setting site name.\r\n"] +[19.209687, "o", " < Set site name.\r\n > Setting up the administration navigation.\r\n"] +[19.946601, "o", " [notice] Already installed: navigation\r\n"] +[20.368988, "o", " < Set up the administration navigation.\r\n > Installing contrib modules.\r\n"] +[21.015519, "o", "The following module(s) will be installed: coffee, config_split, config_update, media, environment_indicator, navigation_extra_tools, pathauto, redirect, reroute_email, robotstxt, shield, stage_file_proxy, xmlsitemap, token\r\n"] +[21.016927, "o", "\r\n"] +[21.020602, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[25.914066, "o", " [success] Module coffee has been installed. (Permissions - Configure)\r\n"] +[25.91692, "o", " [success] Module config_split has been installed. (Permissions - Configure)\r\n"] +[25.920299, "o", " [success] Module config_update has been installed.\r\n"] +[25.921787, "o", " [success] Module media has been installed. (Permissions - Configure)\r\n"] +[25.924641, "o", " [success] Module environment_indicator has been installed. (Permissions - Configure)\r\n"] +[25.926532, "o", " [success] Module navigation_extra_tools has been installed. (Permissions)\r\n"] +[25.929302, "o", " [success] Module pathauto has been installed. (Permissions - Configure)\r\n"] +[25.931842, "o", " [success] Module redirect has been installed. (Permissions - Configure)\r\n"] +[25.934465, "o", " [success] Module reroute_email has been installed. (Permissions - Configure)\r\n"] +[25.938024, "o", " [success] Module robotstxt has been installed. (Permissions - Configure)\r\n"] +[25.940137, "o", " [success] Module shield has been installed. (Permissions - Configure)\r\n"] +[25.947142, "o", " [success] Module stage_file_proxy has been installed. (Permissions - Configure)\r\n"] +[25.947366, "o", " [success] Module xmlsitemap has been installed. (Permissions - Configure)\r\n"] +[25.948528, "o", " [success] Module token has been installed.\r\n"] +[25.967614, "o", " < Installed contrib modules.\r\n > Installing Redis module.\r\n"] +[28.414333, "o", " [success] Module redis has been installed. (Permissions - Configure)\r\n"] +[28.423827, "o", " < Installed Redis module.\r\n > Installing and configuring ClamAV.\r\n"] +[31.086585, "o", " [success] Module clamav has been installed. (Permissions - Configure)\r\n"] +[31.838175, "o", "\r\n"] +[31.838336, "o", " // Do you want to update mode_daemon_tcpip.hostname key in clamav.settings \r\n // config?: yes. \r\n\r\n"] +[32.044802, "o", " < Installed and configured ClamAV.\r\n"] +[32.045238, "o", " > Installing Solr search modules.\r\n"] +[32.799435, "o", "The following module(s) will be installed: search_api, search_api_solr, language\r\n"] +[32.80154, "o", "\r\n"] +[32.804402, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[37.155617, "o", " [success] Module search_api has been installed. (Permissions - Configure)\r\n"] +[37.159425, "o", " [success] Module search_api_solr has been installed.\r\n"] +[37.163655, "o", " [success] Module language has been installed. (Permissions - Configure)\r\n"] +[37.18135, "o", " < Installed Solr search modules.\r\n"] +[37.181684, "o", " > Installing custom site modules.\r\n"] +[42.513276, "o", " [success] Module sw_base has been installed.\r\n"] +[43.529423, "o", "The following module(s) will be installed: sw_search, workflows, content_moderation\r\n"] +[43.530886, "o", "\r\n"] +[43.533823, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[47.5978, "o", " [success] Module sw_search has been installed.\r\n"] +[47.604669, "o", " [success] Module workflows has been installed. (Permissions - Configure)\r\n"] +[47.609063, "o", " [success] Module content_moderation has been installed. (Permissions - Configure)\r\n"] +[48.426318, "o", "The following module(s) will be installed: sw_demo, drupal_helpers, testmode\r\n"] +[48.428205, "o", "\r\n"] +[48.434242, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[51.864513, "o", " [success] Module sw_demo has been installed.\r\n"] +[51.866988, "o", " [success] Module drupal_helpers has been installed.\r\n"] +[51.872896, "o", " [success] Module testmode has been installed. (Configure)\r\n"] +[51.890423, "o", " < Installed custom site modules.\r\n > Running deployment hooks.\r\n"] +[53.349602, "o", " ----------- ------------------------ ---------------------------------------- \r\n Module Hook Description \r\n ----------- ------------------------ ---------------------------------------- \r\n sw_base install_active_theme Installs default and custom theme. \r\n @codeCoverageIgnore \r\n sw_demo configure_testmode Configure testmode to filter the pages \r\n view. Registers the 'sw_demo_pages' \r\n view with testmode so that only \r\n content matching the [TEST] prefix \r\n appears during test runs. \r\n @codeCoverageIgnore \r\n sw_demo create_pages_menu_link Create \"Pages\" menu link in the main \r\n navigation. "] +[53.349756, "o", " Demonstrates using the \r\n drupal_helpers module to manage menu \r\n links within deploy hooks. \r\n @codeCoverageIgnore \r\n sw_demo place_counter_block Place counter block in the \"content\" \r\n region. @codeCoverageIgnore \r\n sw_search add_editorial_workflow Attach editorial workflow to the page \r\n content type. Computed base fields \r\n like 'moderation_state' are only \r\n available when a workflow is attached \r\n to the content type. \r\n @codeCoverageIgnore \r\n ----------- ------------------------ ---------------------------------------- \r\n\r\n\r\n"] +[53.357363, "o", " // Do you wish to run the specified pending deploy hooks?: yes. \r\n\r\n"] +[54.184387, "o", "> [notice] Deploy hook started: sw_base_deploy_install_active_theme\r\n"] +[61.089765, "o", "> [notice] Performed: sw_base_deploy_install_active_theme\r\n> [notice] Deploy hook started: sw_demo_deploy_configure_testmode\r\n"] +[61.094033, "o", "> [notice] Configured testmode to filter the pages view.\r\n> [notice] Performed: sw_demo_deploy_configure_testmode\r\n"] +[61.09608, "o", "> [notice] Deploy hook started: sw_demo_deploy_create_pages_menu_link\r\n"] +[61.178243, "o", "> [notice] Created \"Pages\" menu link in main navigation.\r\n> [notice] Performed: sw_demo_deploy_create_pages_menu_link\r\n"] +[61.180346, "o", "> [notice] Deploy hook started: sw_demo_deploy_place_counter_block\r\n"] +[61.190452, "o", "> [notice] Counter block placed in the \"content\" region.\r\n> [notice] Performed: sw_demo_deploy_place_counter_block\r\n"] +[61.192018, "o", "> [notice] Deploy hook started: sw_search_deploy_add_editorial_workflow\r\n"] +[61.218099, "o", "> [notice] Attached editorial workflow to page content type.\r\n> [notice] Performed: sw_search_deploy_add_editorial_workflow\r\n"] +[61.55782, "o", " [success] Finished performing deploy hooks.\r\n"] +[61.580125, "o", " < Ran deployment hooks.\r\n ==> Finished demo modules operations.\r\n\r\n"] +[61.582688, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\". (44s)\u001b[0m\r\n\r\n"] +[61.584898, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\".\u001b[0m\r\n\r\n"] +[61.5912, "o", " ==> Started development modules operations.\r\n"] +[62.208613, "o", " Environment: local\r\n"] +[62.20922, "o", " > Installing Single Directory Component development tools.\r\n"] +[68.412075, "o", " [success] Module sdc_devel has been installed.\r\n"] +[68.432942, "o", " < Installed Single Directory Component development tools.\r\n > Installing Devel module.\r\n"] +[75.392859, "o", " [success] Module devel has been installed. (Permissions - Configure)\r\n"] +[75.410384, "o", " < Installed Devel module.\r\n > Installing Testmode module.\r\n"] +[76.353303, "o", " [notice] Already installed: testmode\r\n"] +[76.380481, "o", " < Installed Testmode module.\r\n > Installing Generated content module.\r\n"] +[81.524861, "o", "Started creation of generated content from modules: sw_demo, generated_content.\r\n"] +[81.807708, "o", "Created \"page\" node \"Demo page 1 accusamusanimide\" [ID: 2]\r\n"] +[81.819118, "o", "Created \"page\" node \"Demo page 2 asperioresatquem\" [ID: 3]\r\n"] +[81.834392, "o", "Created \"page\" node \"Demo page 3 debitisdelectuse\" [ID: 4]\r\n"] +[81.850244, "o", "Created \"page\" node \"Demo page 4 inmolestiaeoccae\" [ID: 5]\r\n"] +[81.865571, "o", "Created \"page\" node \"Demo page 5 doloribusiustoof\" [ID: 6]\r\n"] +[81.87975, "o", "Created \"page\" node \"Demo page 6 dolorumevenietli\" [ID: 7]\r\n"] +[81.901792, "o", "Created \"page\" node \"Demo page 7 facereidmaximeni\" [ID: 8]\r\n"] +[81.914032, "o", "Created \"page\" node \"Demo page 8 mollitianonsunta\" [ID: 9]\r\n"] +[81.927989, "o", "Created \"page\" node \"Demo page 9 distinctioharump\" [ID: 10]\r\n"] +[81.942871, "o", "Created \"page\" node \"Demo page 10 idimpeditmaximem\" [ID: 11]\r\n"] +[81.951845, "o", "Created \"page\" node \"Demo page 11 culpadebitisnobi\" [ID: 12]\r\n"] +[81.969565, "o", "Created \"page\" node \"Demo page 12 eosiustooptioqui\" [ID: 13]\r\n"] +[81.98258, "o", "Created \"page\" node \"Demo page 13 etitaqueproviden\" [ID: 14]\r\n"] +[81.995042, "o", "Created \"page\" node \"Demo page 14 animiautculpamai\" [ID: 15]\r\n"] +[82.00622, "o", "Created \"page\" node \"Demo page 15 maioresmolestiae\" [ID: 16]\r\n"] +[82.018357, "o", "Created \"page\" node \"Demo page 16 occaecatiperfere\" [ID: 17]\r\n"] +[82.030904, "o", "Created \"page\" node \"Demo page 17 fugaidimpeditnec\" [ID: 18]\r\n"] +[82.044723, "o", "Created \"page\" node \"Demo page 18 estiustomaximequ\" [ID: 19]\r\n"] +[82.057879, "o", "Created \"page\" node \"Demo page 19 consequaturdeser\" [ID: 20]\r\n"] +[82.069679, "o", "Created \"page\" node \"Demo page 20 doloreseosmaxime\" [ID: 21]\r\n"] +[82.070625, "o", "Created generated content entities \"node\" with bundle \"page\".\r\n"] +[82.099557, "o", "Created all generated content.\r\n"] +[82.100311, "o", "Finished creation of generated content.\r\n"] +[82.415769, "o", " [success] Module generated_content has been installed. (Permissions)\r\n"] +[82.554263, "o", " < Installed Generated content module.\r\n ==> Finished development modules operations.\r\n"] +[82.554453, "o", "\r\n"] +[82.557676, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\". (21s)\u001b[0m\r\n\r\n"] +[82.559096, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-30-search-index.sh\".\u001b[0m\r\n\r\n"] +[82.567735, "o", " ==> Started search indexing operations.\r\n"] +[83.199877, "o", " Environment: local\r\n Search indexing skip: 0\r\n\r\n"] +[83.201561, "o", " > Resetting search index tracker.\r\n"] +[83.943831, "o", " [success] Content was successfully scheduled for reindexing.\r\n"] +[83.977977, "o", " < Reset search index tracker.\r\n > Running search indexing.\r\n"] +[84.660622, "o", " [success] Found 21 items to index for Content. Indexing all items.\r\n [success] Indexing a maximum number of 21 items (50 items per batch run) for the index 'Content'.\r\n"] +[85.596078, "o", "> [notice] Successfully indexed 21 items on Content.\r\n"] +[85.614433, "o", "> [notice] Message: Successfully indexed 21 items.\r\n> \r\n"] +[85.687148, "o", " < Completed search indexing.\r\n ==> Finished search indexing operations.\r\n"] +[85.687468, "o", "\r\n"] +[85.691879, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-30-search-index.sh\". (3s)\u001b[0m\r\n\r\n\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-40-example.sh\".\u001b[0m\r\n\r\n"] +[85.701019, "o", " ==> Started example operations.\r\n"] +[86.331752, "o", " Environment: local\r\n"] +[86.332313, "o", " Running example operations in non-production environment.\r\n > Performing an example operation.\r\n"] +[86.332652, "o", " Replace this with your own commands.\r\n < Performed an example operation.\r\n Fresh database detected. Performing additional example operations.\r\n"] +[86.333024, "o", " ==> Finished example operations.\r\n"] +[86.333296, "o", "\r\n"] +[86.335711, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-40-example.sh\". (1s)\u001b[0m\r\n\r\n"] +[86.340827, "o", "\u001b[34m[TASK] Disabling maintenance mode.\u001b[0m\r\n"] +[87.181095, "o", "\u001b[32m[ OK ] Disabled maintenance mode. (1s)\u001b[0m\r\n\r\n"] +[87.183089, "o", "\u001b[32m[ OK ] Finished site provisioning (1m 25s).\u001b[0m\r\n"] +[91.079491, "o", "http://vortex_videos.docker.amazee.io/user/reset/1/1786956322/[REDACTED]/login\r\n"] +[91.126345, "x", "0"] diff --git a/.vortex/docs/static/img/provision.png b/.vortex/docs/static/img/provision.png index 39dac8aec..cc0f3849e 100644 Binary files a/.vortex/docs/static/img/provision.png and b/.vortex/docs/static/img/provision.png differ diff --git a/.vortex/docs/static/img/provision.svg b/.vortex/docs/static/img/provision.svg index 60eaeebaf..30cc4148d 100644 --- a/.vortex/docs/static/img/provision.svg +++ b/.vortex/docs/static/img/provision.svg @@ -1 +1 @@ -$ahoy$ahoyprovision[INFO]Startedsiteprovisioning.Drupalcoreversion:11.4.5Drushversion:13.7.6.0Webrootpath:/app/webPublicfilespath:sites/default/filesPrivatefilespath:sites/default/files/privateTemporaryfilespath:/tmpConfigfilespath:/app/config/defaultDBdumpfilepath:/app/.data/db.sql(present)Profile:standardConfigurationfilespresent:NoExistingsitefound:YesProvisiontype:databaseFallbacktoprofile:NoOverwriteexistingDB:YesSkipDBsanitization:NoSkippost-provisionoperations:NoVerifyconfigafterupdate:NoUsemaintenancemode:Yes[INFO]Provisioningsitefromthedatabasedumpfile.Dumpfilepath:/app/.data/db.sqlExistingsitewasfound.Existingsitecontentwillberemovedandfreshcontentwillbeimportedfromthedatabasedumpfile.[INFO]Starteddatabasefileimport.//Doyoureallywanttodropalltablesinthedatabasedrupal?:yes.Importeddatabasefromthedumpfile.[OK]Finisheddatabasefileimport.[INFO]CurrentDrupalenvironment:local[TASK]Enablingmaintenancemode.[OK]Enabledmaintenancemode.([TIME])[TASK]Runningdatabaseupdates.[success]Nopendingupdates.[OK]Completedrunningdatabaseupdates.([TIME])[TASK]Clearingcacheafterdatabaseupdates.[success]Cacherebuildcomplete.[OK]Cachewascleared.([TIME])[TASK]Rebuildingcache.[OK]Cachewasrebuilt.([TIME])[TASK]Runningdeploymenthooks.[success]Nopendingdeployhooks.[OK]Completeddeploymenthooks.([TIME])[INFO]Sanitizingdatabase.[notice]TheDrush\Commands\sql\sanitize\SanitizeUserTableCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeCommentsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeUserFieldsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeSessionsCommands::messagessanThefollowingoperationswillbeperformed:*Sanitizeuserpasswords.*Sanitizeuseremails.*Preserveuseremailsandpasswordsforthespecifiedroles.*Sanitizetextfieldsassociatedwithusers.//Doyouwanttosanitizethecurrentdatabase?:yes.[success]Userpasswordssanitized.[success]Useremailssanitized.[OK]Sanitizeddatabaseusingdrushsql:sanitize.[OK]Appliedcustomsanitizationcommandsfromfile.[OK]Resetuser0usernameandemail.[TASK]Runningcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".==>Starteddemomodulesoperations.Environment:local>Creatingthecontentmodel.0/2[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]Applyingrecipe2/2[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]AppliedBasicpagerecipe.[OK]Basicpageappliedsuccessfully<Createdthecontentmodel.>Settingsitename.<Setsitename.>Settinguptheadministrationnavigation.[notice]Alreadyinstalled:navigation<Setuptheadministrationnavigation.>Installingcontribmodules.Thefollowingmodule(s)willbeinstalled:coffee,config_split,config_update,media,environment_indicator,navigation_extra_tools,pathauto,redirect,reroute_email,robotstxt,shield,stage_file_proxy,xmlsitemap,token//Doyouwanttocontinue?:yes.[success]Modulecoffeehasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_splithasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_updatehasbeeninstalled.[success]Modulemediahasbeeninstalled.(Permissions-Configure)[success]Moduleenvironment_indicatorhasbeeninstalled.(Permissions-Configure)[success]Modulenavigation_extra_toolshasbeeninstalled.(Permissions)[success]Modulepathautohasbeeninstalled.(Permissions-Configure)[success]Moduleredirecthasbeeninstalled.(Permissions-Configure)[success]Modulereroute_emailhasbeeninstalled.(Permissions-Configure)[success]Modulerobotstxthasbeeninstalled.(Permissions-Configure)[success]Moduleshieldhasbeeninstalled.(Permissions-Configure)[success]Modulestage_file_proxyhasbeeninstalled.(Permissions-Configure)[success]Modulexmlsitemaphasbeeninstalled.(Permissions-Configure)[success]Moduletokenhasbeeninstalled.<Installedcontribmodules.>InstallingRedismodule.[success]Moduleredishasbeeninstalled.(Permissions-Configure)<InstalledRedismodule.>InstallingandconfiguringClamAV.[success]Moduleclamavhasbeeninstalled.(Permissions-Configure)//Doyouwanttoupdatemode_daemon_tcpip.hostnamekeyinclamav.settings//config?:yes.<InstalledandconfiguredClamAV.>InstallingSolrsearchmodules.Thefollowingmodule(s)willbeinstalled:search_api,search_api_solr,language[success]Modulesearch_apihasbeeninstalled.(Permissions-Configure)[success]Modulesearch_api_solrhasbeeninstalled.[success]Modulelanguagehasbeeninstalled.(Permissions-Configure)<InstalledSolrsearchmodules.>Installingcustomsitemodules.[success]Modulesw_basehasbeeninstalled.Thefollowingmodule(s)willbeinstalled:sw_search,workflows,content_moderation[success]Modulesw_searchhasbeeninstalled.[success]Moduleworkflowshasbeeninstalled.(Permissions-Configure)[success]Modulecontent_moderationhasbeeninstalled.(Permissions-Configure)Thefollowingmodule(s)willbeinstalled:sw_demo,drupal_helpers,testmode[success]Modulesw_demohasbeeninstalled.[success]Moduledrupal_helpershasbeeninstalled.[success]Moduletestmodehasbeeninstalled.(Configure)<Installedcustomsitemodules.>Runningdeploymenthooks.---------------------------------------------------------------------------ModuleHookDescriptionsw_baseinstall_active_themeInstallsdefaultandcustomtheme.@codeCoverageIgnoresw_democonfigure_testmodeConfiguretestmodetofilterthepagesview.Registersthe'sw_demo_pages'viewwithtestmodesothatonlycontentmatchingthe[TEST]prefixappearsduringtestruns.sw_democreate_pages_menu_linkCreate"Pages"menulinkinthemainnavigation.Demonstratesusingthedrupal_helpersmoduletomanagemenulinkswithindeployhooks.sw_demoplace_counter_blockPlacecounterblockinthe"content"region.@codeCoverageIgnoresw_searchadd_editorial_workflowAttacheditorialworkflowtothepagecontenttype.Computedbasefieldslike'moderation_state'areonlyavailablewhenaworkflowisattachedtothecontenttype.//Doyouwishtorunthespecifiedpendingdeployhooks?:yes.>[notice]Deployhookstarted:sw_base_deploy_install_active_theme>[notice]Performed:sw_base_deploy_install_active_theme>[notice]Deployhookstarted:sw_demo_deploy_configure_testmode>[notice]Configuredtestmodetofilterthepagesview.>[notice]Performed:sw_demo_deploy_configure_testmode>[notice]Deployhookstarted:sw_demo_deploy_create_pages_menu_link>[notice]Created"Pages"menulinkinmainnavigation.>[notice]Performed:sw_demo_deploy_create_pages_menu_link>[notice]Deployhookstarted:sw_demo_deploy_place_counter_block>[notice]Counterblockplacedinthe"content"region.>[notice]Performed:sw_demo_deploy_place_counter_block>[notice]Deployhookstarted:sw_search_deploy_add_editorial_workflow>[notice]Attachededitorialworkflowtopagecontenttype.>[notice]Performed:sw_search_deploy_add_editorial_workflow[success]Finishedperformingdeployhooks.<Randeploymenthooks.==>Finisheddemomodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".([TIME])[TASK]Runningcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".==>Starteddevelopmentmodulesoperations.>InstallingSingleDirectoryComponentdevelopmenttools.[success]Modulesdc_develhasbeeninstalled.<InstalledSingleDirectoryComponentdevelopmenttools.>InstallingDevelmodule.[success]Moduledevelhasbeeninstalled.(Permissions-Configure)<InstalledDevelmodule.>InstallingTestmodemodule.[notice]Alreadyinstalled:testmode<InstalledTestmodemodule.>InstallingGeneratedcontentmodule.Startedcreationofgeneratedcontentfrommodules:sw_demo,generated_content.Created"page"node"Demopage1accusamusanimide"[ID:2]Created"page"node"Demopage2asperioresatquem"[ID:3]Created"page"node"Demopage3debitisdelectuse"[ID:4]Created"page"node"Demopage4inmolestiaeoccae"[ID:5]Created"page"node"Demopage5doloribusiustoof"[ID:6]Created"page"node"Demopage6dolorumevenietli"[ID:7]Created"page"node"Demopage7facereidmaximeni"[ID:8]Created"page"node"Demopage8mollitianonsunta"[ID:9]Created"page"node"Demopage9distinctioharump"[ID:10]Created"page"node"Demopage10idimpeditmaximem"[ID:11]Created"page"node"Demopage11culpadebitisnobi"[ID:12]Created"page"node"Demopage12eosiustooptioqui"[ID:13]Created"page"node"Demopage13etitaqueproviden"[ID:14]Created"page"node"Demopage14animiautculpamai"[ID:15]Created"page"node"Demopage15maioresmolestiae"[ID:16]Created"page"node"Demopage16occaecatiperfere"[ID:17]Created"page"node"Demopage17fugaidimpeditnec"[ID:18]Created"page"node"Demopage18estiustomaximequ"[ID:19]Created"page"node"Demopage19consequaturdeser"[ID:20]Created"page"node"Demopage20doloreseosmaxime"[ID:21]Createdgeneratedcontententities"node"withbundle"page".Createdallgeneratedcontent.Finishedcreationofgeneratedcontent.[success]Modulegenerated_contenthasbeeninstalled.(Permissions)<InstalledGeneratedcontentmodule.==>Finisheddevelopmentmodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".([TIME])[TASK]Runningcustompost-installscript"./scripts/provision-30-search-index.sh".==>Startedsearchindexingoperations.Searchindexingskip:0>Resettingsearchindextracker.[success]Contentwassuccessfullyscheduledforreindexing.<Resetsearchindextracker.>Runningsearchindexing.[success]Found21itemstoindexforContent.Indexingallitems.[success]Indexingamaximumnumberof21items(50itemsperbatchrun)fortheindex'Content'.>[notice]Successfullyindexed21itemsonContent.>[notice]Message:Successfullyindexed21items.><Completedsearchindexing.==>Finishedsearchindexingoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-30-search-index.sh".([TIME])[TASK]Runningcustompost-installscript"./scripts/provision-40-example.sh".==>Startedexampleoperations.Runningexampleoperationsinnon-productionenvironment.>Performinganexampleoperation.Replacethiswithyourowncommands.<Performedanexampleoperation.Freshdatabasedetected.Performingadditionalexampleoperations.==>Finishedexampleoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-40-example.sh".([TIME])[TASK]Disablingmaintenancemode.[OK]Disabledmaintenancemode.([TIME])[OK]Finishedsiteprovisioning([TIME]).http://vortex_videos.docker.amazee.io/user/reset/1/[TIME]/[REDACTED]/login$$a$ah$aho$ahoyp$ahoypr$ahoypro$ahoyprov$ahoyprovi$ahoyprovis$ahoyprovisi$ahoyprovisio \ No newline at end of file +$ahoy$ahoyprovision[INFO]Startedsiteprovisioning.Drupalcoreversion:11.4.5Drushversion:13.7.6.0Webrootpath:/app/webPublicfilespath:sites/default/filesPrivatefilespath:sites/default/files/privateTemporaryfilespath:/tmpConfigfilespath:/app/config/defaultDBdumpfilepath:/app/.data/db.sql(present)Profile:standardConfigurationfilespresent:NoExistingsitefound:YesProvisiontype:databaseFallbacktoprofile:NoOverwriteexistingDB:YesSkipDBsanitization:NoSkippost-provisionoperations:NoVerifyconfigafterupdate:NoUsemaintenancemode:Yes[INFO]Provisioningsitefromthedatabasedumpfile.Dumpfilepath:/app/.data/db.sqlExistingsitewasfound.Existingsitecontentwillberemovedandfreshcontentwillbeimportedfromthedatabasedumpfile.[INFO]Starteddatabasefileimport.//Doyoureallywanttodropalltablesinthedatabasedrupal?:yes.Importeddatabasefromthedumpfile.[OK]Finisheddatabasefileimport.[INFO]CurrentDrupalenvironment:local[TASK]Enablingmaintenancemode.[OK]Enabledmaintenancemode.(0s)[TASK]Runningdatabaseupdates.[success]Nopendingupdates.[OK]Completedrunningdatabaseupdates.(4s)[TASK]Clearingcacheafterdatabaseupdates.[success]Cacherebuildcomplete.[OK]Cachewascleared.(2s)[TASK]Rebuildingcache.[OK]Cachewasrebuilt.(3s)[TASK]Runningdeploymenthooks.[success]Nopendingdeployhooks.[OK]Completeddeploymenthooks.(0s)[INFO]Sanitizingdatabase.[notice]TheDrush\Commands\sql\sanitize\SanitizeUserTableCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeCommentsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeUserFieldsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeSessionsCommands::messagessanThefollowingoperationswillbeperformed:*Sanitizeuserpasswords.*Sanitizeuseremails.*Preserveuseremailsandpasswordsforthespecifiedroles.*Sanitizetextfieldsassociatedwithusers.//Doyouwanttosanitizethecurrentdatabase?:yes.[success]Userpasswordssanitized.[success]Useremailssanitized.[OK]Sanitizeddatabaseusingdrushsql:sanitize.[OK]Appliedcustomsanitizationcommandsfromfile.[OK]Resetuser0usernameandemail.[TASK]Runningcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".==>Starteddemomodulesoperations.Environment:local>Creatingthecontentmodel.0/2[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]Applyingrecipe2/2[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]AppliedBasicpagerecipe.[OK]Basicpageappliedsuccessfully<Createdthecontentmodel.>Settingsitename.<Setsitename.>Settinguptheadministrationnavigation.[notice]Alreadyinstalled:navigation<Setuptheadministrationnavigation.>Installingcontribmodules.Thefollowingmodule(s)willbeinstalled:coffee,config_split,config_update,media,environment_indicator,navigation_extra_tools,pathauto,redirect,reroute_email,robotstxt,shield,stage_file_proxy,xmlsitemap,token//Doyouwanttocontinue?:yes.[success]Modulecoffeehasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_splithasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_updatehasbeeninstalled.[success]Modulemediahasbeeninstalled.(Permissions-Configure)[success]Moduleenvironment_indicatorhasbeeninstalled.(Permissions-Configure)[success]Modulenavigation_extra_toolshasbeeninstalled.(Permissions)[success]Modulepathautohasbeeninstalled.(Permissions-Configure)[success]Moduleredirecthasbeeninstalled.(Permissions-Configure)[success]Modulereroute_emailhasbeeninstalled.(Permissions-Configure)[success]Modulerobotstxthasbeeninstalled.(Permissions-Configure)[success]Moduleshieldhasbeeninstalled.(Permissions-Configure)[success]Modulestage_file_proxyhasbeeninstalled.(Permissions-Configure)[success]Modulexmlsitemaphasbeeninstalled.(Permissions-Configure)[success]Moduletokenhasbeeninstalled.<Installedcontribmodules.>InstallingRedismodule.[success]Moduleredishasbeeninstalled.(Permissions-Configure)<InstalledRedismodule.>InstallingandconfiguringClamAV.[success]Moduleclamavhasbeeninstalled.(Permissions-Configure)//Doyouwanttoupdatemode_daemon_tcpip.hostnamekeyinclamav.settings//config?:yes.<InstalledandconfiguredClamAV.>InstallingSolrsearchmodules.Thefollowingmodule(s)willbeinstalled:search_api,search_api_solr,language[success]Modulesearch_apihasbeeninstalled.(Permissions-Configure)[success]Modulesearch_api_solrhasbeeninstalled.[success]Modulelanguagehasbeeninstalled.(Permissions-Configure)<InstalledSolrsearchmodules.>Installingcustomsitemodules.[success]Modulesw_basehasbeeninstalled.Thefollowingmodule(s)willbeinstalled:sw_search,workflows,content_moderation[success]Modulesw_searchhasbeeninstalled.[success]Moduleworkflowshasbeeninstalled.(Permissions-Configure)[success]Modulecontent_moderationhasbeeninstalled.(Permissions-Configure)Thefollowingmodule(s)willbeinstalled:sw_demo,drupal_helpers,testmode[success]Modulesw_demohasbeeninstalled.[success]Moduledrupal_helpershasbeeninstalled.[success]Moduletestmodehasbeeninstalled.(Configure)<Installedcustomsitemodules.>Runningdeploymenthooks.---------------------------------------------------------------------------ModuleHookDescriptionsw_baseinstall_active_themeInstallsdefaultandcustomtheme.@codeCoverageIgnoresw_democonfigure_testmodeConfiguretestmodetofilterthepagesview.Registersthe'sw_demo_pages'viewwithtestmodesothatonlycontentmatchingthe[TEST]prefixappearsduringtestruns.sw_democreate_pages_menu_linkCreate"Pages"menulinkinthemainnavigation.Demonstratesusingthedrupal_helpersmoduletomanagemenulinkswithindeployhooks.sw_demoplace_counter_blockPlacecounterblockinthe"content"region.@codeCoverageIgnoresw_searchadd_editorial_workflowAttacheditorialworkflowtothepagecontenttype.Computedbasefieldslike'moderation_state'areonlyavailablewhenaworkflowisattachedtothecontenttype.//Doyouwishtorunthespecifiedpendingdeployhooks?:yes.>[notice]Deployhookstarted:sw_base_deploy_install_active_theme>[notice]Performed:sw_base_deploy_install_active_theme>[notice]Deployhookstarted:sw_demo_deploy_configure_testmode>[notice]Configuredtestmodetofilterthepagesview.>[notice]Performed:sw_demo_deploy_configure_testmode>[notice]Deployhookstarted:sw_demo_deploy_create_pages_menu_link>[notice]Created"Pages"menulinkinmainnavigation.>[notice]Performed:sw_demo_deploy_create_pages_menu_link>[notice]Deployhookstarted:sw_demo_deploy_place_counter_block>[notice]Counterblockplacedinthe"content"region.>[notice]Performed:sw_demo_deploy_place_counter_block>[notice]Deployhookstarted:sw_search_deploy_add_editorial_workflow>[notice]Attachededitorialworkflowtopagecontenttype.>[notice]Performed:sw_search_deploy_add_editorial_workflow[success]Finishedperformingdeployhooks.<Randeploymenthooks.==>Finisheddemomodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".(44s)[TASK]Runningcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".==>Starteddevelopmentmodulesoperations.>InstallingSingleDirectoryComponentdevelopmenttools.[success]Modulesdc_develhasbeeninstalled.<InstalledSingleDirectoryComponentdevelopmenttools.>InstallingDevelmodule.[success]Moduledevelhasbeeninstalled.(Permissions-Configure)<InstalledDevelmodule.>InstallingTestmodemodule.[notice]Alreadyinstalled:testmode<InstalledTestmodemodule.>InstallingGeneratedcontentmodule.Startedcreationofgeneratedcontentfrommodules:sw_demo,generated_content.Created"page"node"Demopage1accusamusanimide"[ID:2]Created"page"node"Demopage2asperioresatquem"[ID:3]Created"page"node"Demopage3debitisdelectuse"[ID:4]Created"page"node"Demopage4inmolestiaeoccae"[ID:5]Created"page"node"Demopage5doloribusiustoof"[ID:6]Created"page"node"Demopage6dolorumevenietli"[ID:7]Created"page"node"Demopage7facereidmaximeni"[ID:8]Created"page"node"Demopage8mollitianonsunta"[ID:9]Created"page"node"Demopage9distinctioharump"[ID:10]Created"page"node"Demopage10idimpeditmaximem"[ID:11]Created"page"node"Demopage11culpadebitisnobi"[ID:12]Created"page"node"Demopage12eosiustooptioqui"[ID:13]Created"page"node"Demopage13etitaqueproviden"[ID:14]Created"page"node"Demopage14animiautculpamai"[ID:15]Created"page"node"Demopage15maioresmolestiae"[ID:16]Created"page"node"Demopage16occaecatiperfere"[ID:17]Created"page"node"Demopage17fugaidimpeditnec"[ID:18]Created"page"node"Demopage18estiustomaximequ"[ID:19]Created"page"node"Demopage19consequaturdeser"[ID:20]Created"page"node"Demopage20doloreseosmaxime"[ID:21]Createdgeneratedcontententities"node"withbundle"page".Createdallgeneratedcontent.Finishedcreationofgeneratedcontent.[success]Modulegenerated_contenthasbeeninstalled.(Permissions)<InstalledGeneratedcontentmodule.==>Finisheddevelopmentmodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".(21s)[TASK]Runningcustompost-installscript"./scripts/provision-30-search-index.sh".==>Startedsearchindexingoperations.Searchindexingskip:0>Resettingsearchindextracker.[success]Contentwassuccessfullyscheduledforreindexing.<Resetsearchindextracker.>Runningsearchindexing.[success]Found21itemstoindexforContent.Indexingallitems.[success]Indexingamaximumnumberof21items(50itemsperbatchrun)fortheindex'Content'.>[notice]Successfullyindexed21itemsonContent.>[notice]Message:Successfullyindexed21items.><Completedsearchindexing.==>Finishedsearchindexingoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-30-search-index.sh".(3s)[TASK]Runningcustompost-installscript"./scripts/provision-40-example.sh".==>Startedexampleoperations.Runningexampleoperationsinnon-productionenvironment.>Performinganexampleoperation.Replacethiswithyourowncommands.<Performedanexampleoperation.Freshdatabasedetected.Performingadditionalexampleoperations.==>Finishedexampleoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-40-example.sh".(1s)[TASK]Disablingmaintenancemode.[OK]Disabledmaintenancemode.(1s)[OK]Finishedsiteprovisioning(1m25s).$$a$ah$aho$ahoyp$ahoypr$ahoypro$ahoyprov$ahoyprovi$ahoyprovis$ahoyprovisi$ahoyprovisionavigation.http://vortex_videos.docker.amazee.io/user/reset/1/1786956322/[REDACTED]/login \ No newline at end of file diff --git a/.vortex/docs/static/img/test-bdd.json b/.vortex/docs/static/img/test-bdd.json index c1e68d57f..ed8b52250 100644 --- a/.vortex/docs/static/img/test-bdd.json +++ b/.vortex/docs/static/img/test-bdd.json @@ -1,211 +1,211 @@ -{"version":2,"width":80,"height":42,"title":"Vortex ahoy test-bdd Demo","command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy test-bdd'"} -[0,"o","$ "] -[0.05,"o","a"] -[0.1,"o","h"] -[0.15,"o","o"] -[0.2,"o","y"] -[0.25,"o"," "] -[0.3,"o","t"] -[0.35,"o","e"] -[0.4,"o","s"] -[0.45,"o","t"] -[0.5,"o","-"] -[0.55,"o","b"] -[0.6,"o","d"] -[0.65,"o","d"] -[0.7,"o","\r\n"] -[1.7,"o","\u001b[32m.\u001b[39m"] -[1.8,"o","\u001b[32m.\u001b[39m"] -[1.9,"o","\u001b[32m.\u001b[39m"] -[2,"o","\u001b[32m.\u001b[39m"] -[2.1,"o","\u001b[32m.\u001b[39m"] -[2.2,"o","\u001b[32m.\u001b[39m"] -[2.3,"o","\u001b[32m.\u001b[39m"] -[2.4,"o","\u001b[32m.\u001b[39m"] -[2.5,"o","\u001b[32m.\u001b[39m"] -[2.6,"o","\u001b[32m.\u001b[39m"] -[2.7,"o","\u001b[32m.\u001b[39m"] -[2.8,"o","\u001b[32m.\u001b[39m"] -[2.9,"o","\u001b[32m.\u001b[39m"] -[3,"o","\u001b[32m.\u001b[39m"] -[3.1,"o","\u001b[32m.\u001b[39m"] -[3.2,"o","\u001b[32m.\u001b[39m"] -[3.3,"o","\u001b[32m.\u001b[39m"] -[3.4,"o","\u001b[32m.\u001b[39m"] -[3.5,"o","\u001b[32m.\u001b[39m"] -[3.6,"o","\u001b[32m.\u001b[39m"] -[3.7,"o","\u001b[32m.\u001b[39m"] -[3.8,"o","\u001b[32m.\u001b[39m"] -[3.9,"o","\u001b[32m.\u001b[39m"] -[4,"o","\u001b[32m.\u001b[39m"] -[4.1,"o","\u001b[32m.\u001b[39m"] -[4.2,"o","\u001b[32m.\u001b[39m"] -[4.3,"o","\u001b[32m.\u001b[39m"] -[4.4,"o","\u001b[32m.\u001b[39m"] -[4.5,"o","\u001b[32m.\u001b[39m"] -[4.6,"o","\u001b[32m.\u001b[39m"] -[4.7,"o","\u001b[32m.\u001b[39m"] -[4.8,"o","\u001b[32m.\u001b[39m"] -[4.9,"o","\u001b[32m.\u001b[39m"] -[5,"o","\u001b[32m.\u001b[39m"] -[5.1,"o","\u001b[32m.\u001b[39m"] -[5.2,"o","\u001b[32m.\u001b[39m"] -[5.3,"o","\u001b[32m.\u001b[39m"] -[5.4,"o","\u001b[32m.\u001b[39m"] -[5.5,"o","\u001b[32m.\u001b[39m"] -[5.6,"o","\u001b[32m.\u001b[39m"] -[5.7,"o","\u001b[32m.\u001b[39m"] -[5.8,"o","\u001b[32m.\u001b[39m"] -[5.9,"o","\u001b[32m.\u001b[39m"] -[6,"o","\u001b[32m.\u001b[39m"] -[6.1,"o","\u001b[32m.\u001b[39m"] -[6.2,"o","\u001b[32m.\u001b[39m"] -[6.3,"o","\u001b[32m.\u001b[39m"] -[6.4,"o","\u001b[32m.\u001b[39m"] -[6.5,"o","\u001b[32m.\u001b[39m"] -[6.6,"o","\u001b[32m.\u001b[39m"] -[6.7,"o","\u001b[32m.\u001b[39m"] -[6.8,"o","\u001b[32m.\u001b[39m"] -[6.9,"o","\u001b[32m.\u001b[39m"] -[7,"o","\u001b[32m.\u001b[39m"] -[7.1,"o","\u001b[32m.\u001b[39m"] -[7.2,"o","\u001b[32m.\u001b[39m"] -[7.3,"o","\u001b[32m.\u001b[39m"] -[7.4,"o","\u001b[32m.\u001b[39m"] -[7.5,"o","\u001b[32m.\u001b[39m"] -[7.6,"o","\u001b[32m.\u001b[39m"] -[7.7,"o","\u001b[32m.\u001b[39m"] -[7.8,"o","\u001b[32m.\u001b[39m"] -[7.9,"o","\u001b[32m.\u001b[39m"] -[8,"o","\u001b[32m.\u001b[39m"] -[8.1,"o","\u001b[32m.\u001b[39m"] -[8.2,"o","\u001b[32m.\u001b[39m"] -[8.3,"o","\u001b[32m.\u001b[39m"] -[8.4,"o","\u001b[32m.\u001b[39m"] -[8.5,"o","\u001b[32m.\u001b[39m"] -[8.6,"o","\u001b[32m.\u001b[39m 70\r\n"] -[8.7,"o","\u001b[32m.\u001b[39m"] -[8.8,"o","\u001b[32m.\u001b[39m"] -[8.9,"o","\u001b[32m.\u001b[39m"] -[9,"o","\u001b[32m.\u001b[39m"] -[9.1,"o","\u001b[32m.\u001b[39m"] -[9.2,"o","\u001b[32m.\u001b[39m"] -[9.3,"o","\u001b[32m.\u001b[39m"] -[9.4,"o","\u001b[32m.\u001b[39m"] -[9.5,"o","\u001b[32m.\u001b[39m"] -[9.6,"o","\u001b[32m.\u001b[39m"] -[9.7,"o","\u001b[32m.\u001b[39m"] -[9.8,"o","\u001b[32m.\u001b[39m"] -[9.9,"o","\u001b[32m.\u001b[39m"] -[10,"o","\u001b[32m.\u001b[39m"] -[10.1,"o","\u001b[32m.\u001b[39m"] -[10.2,"o","\u001b[32m.\u001b[39m"] -[10.3,"o","\u001b[32m.\u001b[39m"] -[10.4,"o","\u001b[32m.\u001b[39m"] -[10.5,"o","\u001b[32m.\u001b[39m"] -[10.6,"o","\u001b[32m.\u001b[39m"] -[10.7,"o","\u001b[32m.\u001b[39m"] -[10.8,"o","\u001b[32m.\u001b[39m"] -[10.9,"o","\u001b[32m.\u001b[39m"] -[11,"o","\u001b[32m.\u001b[39m"] -[11.1,"o","\u001b[32m.\u001b[39m"] -[11.2,"o","\u001b[32m.\u001b[39m"] -[11.3,"o","\u001b[32m.\u001b[39m"] -[11.4,"o","\u001b[32m.\u001b[39m"] -[11.5,"o","\u001b[32m.\u001b[39m"] -[11.6,"o","\u001b[32m.\u001b[39m"] -[11.7,"o","\u001b[32m.\u001b[39m"] -[11.8,"o","\u001b[32m.\u001b[39m"] -[11.9,"o","\u001b[32m.\u001b[39m"] -[12,"o","\u001b[32m.\u001b[39m"] -[12.1,"o","\u001b[32m.\u001b[39m"] -[12.2,"o","\u001b[32m.\u001b[39m"] -[12.3,"o","\u001b[32m.\u001b[39m"] -[12.4,"o","\u001b[32m.\u001b[39m"] -[12.5,"o","\u001b[32m.\u001b[39m"] -[12.6,"o","\u001b[32m.\u001b[39m"] -[12.7,"o","\u001b[32m.\u001b[39m"] -[12.8,"o","\u001b[32m.\u001b[39m"] -[12.9,"o","\u001b[32m.\u001b[39m"] -[13,"o","\u001b[32m.\u001b[39m"] -[13.1,"o","\u001b[32m.\u001b[39m"] -[13.2,"o","\u001b[32m.\u001b[39m"] -[13.3,"o","\u001b[32m.\u001b[39m"] -[13.4,"o","\u001b[32m.\u001b[39m"] -[13.5,"o","\u001b[32m.\u001b[39m"] -[13.6,"o","\u001b[32m.\u001b[39m"] -[13.7,"o","\u001b[32m.\u001b[39m"] -[13.8,"o","\u001b[32m.\u001b[39m"] -[13.9,"o","\u001b[32m.\u001b[39m"] -[14,"o","\u001b[32m.\u001b[39m"] -[14.1,"o","\u001b[32m.\u001b[39m"] -[14.2,"o","\u001b[32m.\u001b[39m"] -[14.3,"o","\u001b[32m.\u001b[39m"] -[14.4,"o","\u001b[32m.\u001b[39m"] -[14.5,"o","\u001b[32m.\u001b[39m"] -[14.6,"o","\u001b[32m.\u001b[39m"] -[14.7,"o","\u001b[32m.\u001b[39m"] -[14.8,"o","\u001b[32m.\u001b[39m"] -[14.9,"o","\u001b[32m.\u001b[39m"] -[15,"o","\u001b[32m.\u001b[39m"] -[15.1,"o","\u001b[32m.\u001b[39m"] -[15.2,"o","\u001b[32m.\u001b[39m"] -[15.3,"o","\u001b[32m.\u001b[39m"] -[15.4,"o","\u001b[32m.\u001b[39m"] -[15.5,"o","\u001b[32m.\u001b[39m"] -[15.6,"o","\u001b[32m.\u001b[39m 140\r\n"] -[15.7,"o","\u001b[32m.\u001b[39m"] -[15.8,"o","\u001b[32m.\u001b[39m"] -[15.9,"o","\u001b[32m.\u001b[39m"] -[16,"o","\u001b[32m.\u001b[39m"] -[16.1,"o","\u001b[32m.\u001b[39m"] -[16.2,"o","\u001b[32m.\u001b[39m"] -[16.3,"o","\u001b[32m.\u001b[39m"] -[16.4,"o","\u001b[32m.\u001b[39m"] -[16.5,"o","\u001b[32m.\u001b[39m"] -[16.6,"o","\u001b[32m.\u001b[39m"] -[16.7,"o","\u001b[32m.\u001b[39m"] -[16.8,"o","\u001b[32m.\u001b[39m"] -[16.9,"o","\u001b[32m.\u001b[39m"] -[17,"o","\u001b[32m.\u001b[39m"] -[17.1,"o","\u001b[32m.\u001b[39m"] -[17.2,"o","\u001b[32m.\u001b[39m"] -[17.3,"o","\u001b[32m.\u001b[39m"] -[17.4,"o","\u001b[32m.\u001b[39m"] -[17.5,"o","\u001b[32m.\u001b[39m"] -[17.6,"o","\u001b[32m.\u001b[39m"] -[17.7,"o","\u001b[32m.\u001b[39m"] -[17.8,"o","\u001b[32m.\u001b[39m"] -[17.9,"o","\u001b[32m.\u001b[39m"] -[18,"o","\u001b[32m.\u001b[39m"] -[18.1,"o","\u001b[32m.\u001b[39m"] -[18.2,"o","\u001b[32m.\u001b[39m"] -[18.3,"o","\u001b[32m.\u001b[39m"] -[18.4,"o","\u001b[32m.\u001b[39m"] -[18.5,"o","\u001b[32m.\u001b[39m"] -[18.6,"o","\u001b[32m.\u001b[39m"] -[18.7,"o","\u001b[32m.\u001b[39m"] -[18.8,"o","\u001b[32m.\u001b[39m"] -[18.9,"o","\u001b[32m.\u001b[39m"] -[19,"o","\u001b[32m.\u001b[39m"] -[19.1,"o","\u001b[32m.\u001b[39m"] -[19.2,"o","\u001b[32m.\u001b[39m"] -[19.3,"o","\u001b[32m.\u001b[39m"] -[19.4,"o","\u001b[32m.\u001b[39m"] -[19.5,"o","\u001b[32m.\u001b[39m"] -[19.6,"o","\u001b[32m.\u001b[39m"] -[19.7,"o","\u001b[32m.\u001b[39m"] -[19.8,"o","\u001b[32m.\u001b[39m"] -[19.9,"o","\u001b[32m.\u001b[39m"] -[20,"o","\u001b[32m.\u001b[39m"] -[20.1,"o","\u001b[32m.\u001b[39m"] -[20.2,"o","\u001b[32m.\u001b[39m"] -[20.3,"o","\u001b[32m.\u001b[39m"] -[20.4,"o","\u001b[32m.\u001b[39m"] -[20.5,"o","\u001b[32m.\u001b[39m"] -[20.6,"o","\u001b[32m.\u001b[39m"] -[20.7,"o","\u001b[32m.\u001b[39m"] -[20.8,"o","\r\n\r\n"] -[20.9,"o","28 scenarios (\u001b[32m28 passed\u001b[39m)\r\n191 steps (\u001b[32m191 passed\u001b[39m)\r\n"] -[21,"o","0m46.[TIME] ([SIZE])\r\n"] -[24,"o",""] +{"version":2,"width":80,"height":42,"timestamp":1787184980,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy test-bdd'","title":"Vortex ahoy test-bdd Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.06, "o", "$ "] +[0.565052, "o", "a"] +[0.619854, "o", "h"] +[0.674877, "o", "o"] +[0.728178, "o", "y"] +[0.783026, "o", " "] +[0.836511, "o", "t"] +[0.889636, "o", "e"] +[0.944654, "o", "s"] +[0.996142, "o", "t"] +[1.051174, "o", "-"] +[1.105678, "o", "b"] +[1.160552, "o", "d"] +[1.211561, "o", "d"] +[1.667381, "o", "\r\n"] +[3.518058, "o", "\u001b[32m.\u001b[39m"] +[5.892354, "o", "\u001b[32m.\u001b[39m"] +[6.383135, "o", "\u001b[32m.\u001b[39m"] +[7.06122, "o", "\u001b[32m.\u001b[39m"] +[7.915851, "o", "\u001b[32m.\u001b[39m"] +[8.435168, "o", "\u001b[32m.\u001b[39m"] +[9.055259, "o", "\u001b[32m.\u001b[39m"] +[9.552571, "o", "\u001b[32m.\u001b[39m"] +[10.039954, "o", "\u001b[32m.\u001b[39m"] +[10.449318, "o", "\u001b[32m.\u001b[39m"] +[11.062031, "o", "\u001b[32m.\u001b[39m"] +[11.647368, "o", "\u001b[32m.\u001b[39m"] +[12.094767, "o", "\u001b[32m.\u001b[39m"] +[12.47816, "o", "\u001b[32m.\u001b[39m"] +[12.899444, "o", "\u001b[32m.\u001b[39m"] +[13.283259, "o", "\u001b[32m.\u001b[39m"] +[13.962056, "o", "\u001b[32m.\u001b[39m"] +[14.252167, "o", "\u001b[32m.\u001b[39m"] +[14.686493, "o", "\u001b[32m.\u001b[39m"] +[15.446613, "o", "\u001b[32m.\u001b[39m"] +[15.92284, "o", "\u001b[32m.\u001b[39m"] +[16.387916, "o", "\u001b[32m.\u001b[39m"] +[16.467574, "o", "\u001b[32m.\u001b[39m"] +[16.495395, "o", "\u001b[32m.\u001b[39m"] +[16.497153, "o", "\u001b[32m.\u001b[39m"] +[16.500006, "o", "\u001b[32m.\u001b[39m"] +[16.521184, "o", "\u001b[32m.\u001b[39m"] +[16.522791, "o", "\u001b[32m.\u001b[39m"] +[16.524746, "o", "\u001b[32m.\u001b[39m"] +[16.526907, "o", "\u001b[32m.\u001b[39m"] +[16.528759, "o", "\u001b[32m.\u001b[39m"] +[16.530592, "o", "\u001b[32m.\u001b[39m"] +[16.532681, "o", "\u001b[32m.\u001b[39m"] +[16.535278, "o", "\u001b[32m.\u001b[39m"] +[16.555146, "o", "\u001b[32m.\u001b[39m"] +[16.556592, "o", "\u001b[32m.\u001b[39m"] +[16.561434, "o", "\u001b[32m.\u001b[39m"] +[16.563511, "o", "\u001b[32m.\u001b[39m"] +[16.565573, "o", "\u001b[32m.\u001b[39m"] +[16.567764, "o", "\u001b[32m.\u001b[39m"] +[16.569613, "o", "\u001b[32m.\u001b[39m"] +[16.580757, "o", "\u001b[32m.\u001b[39m"] +[16.604862, "o", "\u001b[32m.\u001b[39m"] +[16.60804, "o", "\u001b[32m.\u001b[39m"] +[16.609716, "o", "\u001b[32m.\u001b[39m"] +[16.698088, "o", "\u001b[32m.\u001b[39m"] +[16.701755, "o", "\u001b[32m.\u001b[39m"] +[17.392063, "o", "\u001b[32m.\u001b[39m"] +[17.393764, "o", "\u001b[32m.\u001b[39m"] +[17.884376, "o", "\u001b[32m.\u001b[39m"] +[17.887072, "o", "\u001b[32m.\u001b[39m"] +[18.582579, "o", "\u001b[32m.\u001b[39m"] +[19.758866, "o", "\u001b[32m.\u001b[39m"] +[20.10378, "o", "\u001b[32m.\u001b[39m"] +[20.188124, "o", "\u001b[32m.\u001b[39m"] +[20.190997, "o", "\u001b[32m.\u001b[39m"] +[20.194198, "o", "\u001b[32m.\u001b[39m"] +[20.19729, "o", "\u001b[32m.\u001b[39m"] +[20.200778, "o", "\u001b[32m.\u001b[39m"] +[20.203841, "o", "\u001b[32m.\u001b[39m"] +[20.206947, "o", "\u001b[32m.\u001b[39m"] +[20.209848, "o", "\u001b[32m.\u001b[39m"] +[20.212991, "o", "\u001b[32m.\u001b[39m"] +[20.215933, "o", "\u001b[32m.\u001b[39m"] +[20.220685, "o", "\u001b[32m.\u001b[39m"] +[20.223623, "o", "\u001b[32m.\u001b[39m"] +[20.22706, "o", "\u001b[32m.\u001b[39m"] +[20.230982, "o", "\u001b[32m.\u001b[39m"] +[20.522623, "o", "\u001b[32m.\u001b[39m"] +[20.524401, "o", "\u001b[32m.\u001b[39m 70\r\n"] +[20.534015, "o", "\u001b[32m.\u001b[39m"] +[20.537307, "o", "\u001b[32m.\u001b[39m"] +[20.540145, "o", "\u001b[32m.\u001b[39m"] +[20.829833, "o", "\u001b[32m.\u001b[39m"] +[20.832045, "o", "\u001b[32m.\u001b[39m"] +[20.834552, "o", "\u001b[32m.\u001b[39m"] +[21.422744, "o", "\u001b[32m.\u001b[39m"] +[22.386403, "o", "\u001b[32m.\u001b[39m"] +[23.169818, "o", "\u001b[32m.\u001b[39m"] +[23.175509, "o", "\u001b[32m.\u001b[39m"] +[23.212763, "o", "\u001b[32m.\u001b[39m"] +[23.214929, "o", "\u001b[32m.\u001b[39m"] +[23.781427, "o", "\u001b[32m.\u001b[39m"] +[23.952444, "o", "\u001b[32m.\u001b[39m"] +[23.959864, "o", "\u001b[32m.\u001b[39m"] +[24.086761, "o", "\u001b[32m.\u001b[39m"] +[24.089563, "o", "\u001b[32m.\u001b[39m"] +[24.092176, "o", "\u001b[32m.\u001b[39m"] +[24.095097, "o", "\u001b[32m.\u001b[39m"] +[24.098089, "o", "\u001b[32m.\u001b[39m"] +[24.127314, "o", "\u001b[32m.\u001b[39m"] +[24.129907, "o", "\u001b[32m.\u001b[39m"] +[24.806419, "o", "\u001b[32m.\u001b[39m"] +[24.878957, "o", "\u001b[32m.\u001b[39m"] +[24.884158, "o", "\u001b[32m.\u001b[39m"] +[24.991337, "o", "\u001b[32m.\u001b[39m"] +[24.994004, "o", "\u001b[32m.\u001b[39m"] +[24.996655, "o", "\u001b[32m.\u001b[39m"] +[25.000241, "o", "\u001b[32m.\u001b[39m"] +[25.4608, "o", "\u001b[32m.\u001b[39m"] +[25.82725, "o", "\u001b[32m.\u001b[39m"] +[26.210432, "o", "\u001b[32m.\u001b[39m"] +[26.594897, "o", "\u001b[32m.\u001b[39m"] +[27.075666, "o", "\u001b[32m.\u001b[39m"] +[27.528966, "o", "\u001b[32m.\u001b[39m"] +[28.012695, "o", "\u001b[32m.\u001b[39m"] +[28.409656, "o", "\u001b[32m.\u001b[39m"] +[28.892516, "o", "\u001b[32m.\u001b[39m"] +[29.292292, "o", "\u001b[32m.\u001b[39m"] +[29.763855, "o", "\u001b[32m.\u001b[39m"] +[30.162229, "o", "\u001b[32m.\u001b[39m"] +[30.629813, "o", "\u001b[32m.\u001b[39m"] +[31.03177, "o", "\u001b[32m.\u001b[39m"] +[31.530366, "o", "\u001b[32m.\u001b[39m"] +[31.924273, "o", "\u001b[32m.\u001b[39m"] +[32.36012, "o", "\u001b[32m.\u001b[39m"] +[32.831099, "o", "\u001b[32m.\u001b[39m"] +[33.329429, "o", "\u001b[32m.\u001b[39m"] +[33.816013, "o", "\u001b[32m.\u001b[39m"] +[34.231821, "o", "\u001b[32m.\u001b[39m"] +[34.776858, "o", "\u001b[32m.\u001b[39m"] +[35.150119, "o", "\u001b[32m.\u001b[39m"] +[35.210946, "o", "\u001b[32m.\u001b[39m"] +[35.21962, "o", "\u001b[32m.\u001b[39m"] +[35.221488, "o", "\u001b[32m.\u001b[39m"] +[35.224465, "o", "\u001b[32m.\u001b[39m"] +[35.60984, "o", "\u001b[32m.\u001b[39m"] +[35.995592, "o", "\u001b[32m.\u001b[39m"] +[36.363098, "o", "\u001b[32m.\u001b[39m"] +[36.958837, "o", "\u001b[32m.\u001b[39m"] +[37.752141, "o", "\u001b[32m.\u001b[39m"] +[37.839582, "o", "\u001b[32m.\u001b[39m"] +[37.841932, "o", "\u001b[32m.\u001b[39m"] +[37.845048, "o", "\u001b[32m.\u001b[39m"] +[39.356925, "o", "\u001b[32m.\u001b[39m"] +[39.911978, "o", "\u001b[32m.\u001b[39m"] +[40.295471, "o", "\u001b[32m.\u001b[39m"] +[40.940361, "o", "\u001b[32m.\u001b[39m"] +[41.154252, "o", "\u001b[32m.\u001b[39m"] +[41.432138, "o", "\u001b[32m.\u001b[39m 140\r\n"] +[41.434481, "o", "\u001b[32m.\u001b[39m"] +[41.437309, "o", "\u001b[32m.\u001b[39m"] +[41.441146, "o", "\u001b[32m.\u001b[39m"] +[41.581222, "o", "\u001b[32m.\u001b[39m"] +[41.584482, "o", "\u001b[32m.\u001b[39m"] +[41.625576, "o", "\u001b[32m.\u001b[39m"] +[41.627305, "o", "\u001b[32m.\u001b[39m"] +[41.659229, "o", "\u001b[32m.\u001b[39m"] +[41.662534, "o", "\u001b[32m.\u001b[39m"] +[41.694316, "o", "\u001b[32m.\u001b[39m"] +[41.701375, "o", "\u001b[32m.\u001b[39m"] +[41.704581, "o", "\u001b[32m.\u001b[39m"] +[42.376543, "o", "\u001b[32m.\u001b[39m"] +[42.476824, "o", "\u001b[32m.\u001b[39m"] +[42.478839, "o", "\u001b[32m.\u001b[39m"] +[42.481715, "o", "\u001b[32m.\u001b[39m"] +[42.484633, "o", "\u001b[32m.\u001b[39m"] +[42.488889, "o", "\u001b[32m.\u001b[39m"] +[42.528137, "o", "\u001b[32m.\u001b[39m"] +[42.552329, "o", "\u001b[32m.\u001b[39m"] +[42.554635, "o", "\u001b[32m.\u001b[39m"] +[42.556823, "o", "\u001b[32m.\u001b[39m"] +[42.558976, "o", "\u001b[32m.\u001b[39m"] +[42.561567, "o", "\u001b[32m.\u001b[39m"] +[42.564431, "o", "\u001b[32m.\u001b[39m"] +[42.620699, "o", "\u001b[32m.\u001b[39m"] +[42.650226, "o", "\u001b[32m.\u001b[39m"] +[42.666602, "o", "\u001b[32m.\u001b[39m"] +[42.680723, "o", "\u001b[32m.\u001b[39m"] +[42.684743, "o", "\u001b[32m.\u001b[39m"] +[47.68954, "o", "\u001b[32m.\u001b[39m"] +[47.780846, "o", "\u001b[32m.\u001b[39m"] +[47.783708, "o", "\u001b[32m.\u001b[39m"] +[47.786977, "o", "\u001b[32m.\u001b[39m"] +[47.886417, "o", "\u001b[32m.\u001b[39m"] +[47.889335, "o", "\u001b[32m.\u001b[39m"] +[47.891938, "o", "\u001b[32m.\u001b[39m"] +[47.894413, "o", "\u001b[32m.\u001b[39m"] +[47.897318, "o", "\u001b[32m.\u001b[39m"] +[47.949176, "o", "\u001b[32m.\u001b[39m"] +[47.95105, "o", "\u001b[32m.\u001b[39m"] +[47.953478, "o", "\u001b[32m.\u001b[39m"] +[47.957264, "o", "\u001b[32m.\u001b[39m"] +[49.111051, "o", "\u001b[32m.\u001b[39m"] +[49.112566, "o", "\u001b[32m.\u001b[39m"] +[49.132479, "o", "\u001b[32m.\u001b[39m"] +[49.134287, "o", "\u001b[32m.\u001b[39m"] +[49.136029, "o", "\u001b[32m.\u001b[39m"] +[49.137782, "o", "\u001b[32m.\u001b[39m"] +[49.139821, "o", "\u001b[32m.\u001b[39m"] +[49.142604, "o", "\u001b[32m.\u001b[39m"] +[49.147519, "o", "\r\n\r\n"] +[49.147601, "o", "28 scenarios (\u001b[32m28 passed\u001b[39m)\r\n191 steps (\u001b[32m191 passed\u001b[39m)\r\n"] +[49.147648, "o", "0m46.92s (66.71Mb)\r\n"] +[49.240601, "x", "0"] diff --git a/.vortex/docs/static/img/test-bdd.png b/.vortex/docs/static/img/test-bdd.png index 3f29150a7..5b37a04ec 100644 Binary files a/.vortex/docs/static/img/test-bdd.png and b/.vortex/docs/static/img/test-bdd.png differ diff --git a/.vortex/docs/static/img/test-bdd.svg b/.vortex/docs/static/img/test-bdd.svg index c369bd8a8..648b648ed 100644 --- a/.vortex/docs/static/img/test-bdd.svg +++ b/.vortex/docs/static/img/test-bdd.svg @@ -1 +1 @@ -$ahoy$ahoytest-bdd.....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................70......................................................................14028scenarios(28passed)191steps(191passed)0m46.[TIME]([SIZE])$$a$ah$aho$ahoyt$ahoyte$ahoytes$ahoytest$ahoytest-$ahoytest-b$ahoytest-bd \ No newline at end of file +$ahoy$ahoytest-bdd.....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................70......................................................................14028scenarios(28passed)191steps(191passed)$$a$ah$aho$ahoyt$ahoyte$ahoytes$ahoytest$ahoytest-$ahoytest-b$ahoytest-bd0m46.92s(66.71Mb) \ No newline at end of file diff --git a/.vortex/docs/static/img/test.json b/.vortex/docs/static/img/test.json index 62b202133..5418cbf7d 100644 --- a/.vortex/docs/static/img/test.json +++ b/.vortex/docs/static/img/test.json @@ -1,148 +1,150 @@ -{"version":2,"width":80,"height":42,"title":"Vortex ahoy test Demo","command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy test'"} -[0,"o","$ "] -[0.05,"o","a"] -[0.1,"o","h"] -[0.15,"o","o"] -[0.2,"o","y"] -[0.25,"o"," "] -[0.3,"o","t"] -[0.35,"o","e"] -[0.4,"o","s"] -[0.45,"o","t"] -[0.5,"o","\r\n"] -[1.5,"o","PHPUnit 11.5.56 by Sebastian Bergmann and contributors.\r\n\r\nRuntime: PHP 8.4.23 with PCOV 1.0.12\r\nConfiguration: /app/phpunit.xml\r\n\r\n"] -[1.65,"o","."] -[1.8,"o","."] -[1.95,"o","."] -[2.1,"o","."] -[2.25,"o","."] -[2.4,"o","."] -[2.55,"o","."] -[2.7,"o","."] -[2.85,"o","."] -[3,"o","."] -[3.15,"o","."] -[3.3,"o","."] -[3.45,"o","."] -[3.6,"o","."] -[3.75,"o","."] -[3.9,"o","."] -[4.05,"o","."] -[4.2,"o","."] -[4.35,"o","."] -[4.5,"o","."] -[4.65,"o","."] -[4.8,"o","."] -[4.95,"o","."] -[5.1,"o","."] -[5.25,"o","."] -[5.4,"o","."] -[5.55,"o","."] -[5.7,"o","."] -[5.85,"o","."] -[6,"o","."] -[6.15,"o","."] -[6.3,"o","."] -[6.45,"o","."] -[6.6,"o","."] -[6.75,"o","."] -[6.9,"o","."] -[7.05,"o","."] -[7.2,"o","."] -[7.35,"o","."] -[7.5,"o","."] -[7.65,"o","."] -[7.8,"o","."] -[7.95,"o","."] -[8.1,"o","."] -[8.25,"o","."] -[8.4,"o","."] -[8.55,"o","."] -[8.7,"o","."] -[8.85,"o","."] -[9,"o","."] -[9.15,"o","."] -[9.3,"o","."] -[9.45,"o","."] -[9.6,"o","."] -[9.75,"o","."] -[9.9,"o","."] -[10.05,"o","."] -[10.2,"o","."] -[10.35,"o","."] -[10.5,"o","."] -[10.65,"o","."] -[10.8,"o","."] -[10.95,"o",". 63 / 128 ( 49%)\r\n"] -[11.1,"o","."] -[11.25,"o","."] -[11.4,"o","."] -[11.55,"o","."] -[11.7,"o","."] -[11.85,"o","."] -[12,"o","."] -[12.15,"o","."] -[12.3,"o","."] -[12.45,"o","."] -[12.6,"o","."] -[12.75,"o","."] -[12.9,"o","."] -[13.05,"o","."] -[13.2,"o","."] -[13.35,"o","."] -[13.5,"o","."] -[13.65,"o","."] -[13.8,"o","."] -[13.95,"o","."] -[14.1,"o","."] -[14.25,"o","."] -[14.4,"o","."] -[14.55,"o","."] -[14.7,"o","."] -[14.85,"o","."] -[15,"o","."] -[15.15,"o","."] -[15.3,"o","."] -[15.45,"o","."] -[15.6,"o","."] -[15.75,"o","."] -[15.9,"o","."] -[16.05,"o","."] -[16.2,"o","."] -[16.35,"o","."] -[16.5,"o","."] -[16.65,"o","."] -[16.8,"o","."] -[16.95,"o","."] -[17.1,"o","."] -[17.25,"o","."] -[17.4,"o","."] -[17.55,"o","."] -[17.7,"o","."] -[17.85,"o","."] -[18,"o","."] -[18.15,"o","."] -[18.3,"o","."] -[18.45,"o","."] -[18.6,"o","."] -[18.75,"o","."] -[18.9,"o","."] -[19.05,"o","."] -[19.2,"o","."] -[19.35,"o","."] -[19.5,"o","."] -[19.65,"o","."] -[19.8,"o","."] -[19.95,"o","."] -[20.1,"o","."] -[20.25,"o","."] -[20.4,"o",". 126 / 128 ( 98%)\r\n"] -[20.55,"o","."] -[20.7,"o",". 128 / 128 (100%)"] -[20.85,"o","\r\n\r\nHTML output was generated.\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_star_wars_FunctionalJavascript_ExampleTest-[ID].html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_star_wars_FunctionalJavascript_ExampleTest-[ID].html\r\n"] -[21,"o","\r\n\r\n"] -[21.15,"o","Time: [TIME], Memory: [MEMORY]\r\n\r\n"] -[21.3,"o","OK (128 tests, 599 assertions)\r\n\r\nGenerating code coverage report in Cobertura XML format ... "] -[21.45,"o","done [TIME]\r\n\r\nGenerating code coverage report in HTML format ... "] -[21.6,"o","done [TIME]\r\n"] -[24.6,"o",""] +{"version":2,"width":80,"height":42,"timestamp":1786957090,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy test'","title":"Vortex ahoy test Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.037471,"o","$ "] +[0.287966,"o","a"] +[0.313039,"o","h"] +[0.338099,"o","o"] +[0.365629,"o","y"] +[0.392847,"o"," "] +[0.418762,"o","t"] +[0.444989,"o","e"] +[0.470085,"o","s"] +[0.495335,"o","t"] +[0.723033,"o","\r\n"] +[30.819144,"o","PHPUnit 11.5.56 by Sebastian Bergmann and contributors.\r\n\r\nRuntime: PHP 8.4.23 with PCOV 1.0.12\r\nConfiguration: /app/phpunit.xml\r\n\r\n"] +[30.842879,"o","."] +[30.846332,"o","."] +[30.847695,"o","."] +[30.849963,"o","."] +[30.853251,"o","."] +[30.854594,"o","."] +[30.857938,"o","."] +[30.859752,"o","."] +[30.863174,"o","."] +[30.864804,"o","."] +[30.867678,"o","."] +[30.870662,"o","."] +[30.872824,"o","."] +[30.875596,"o","."] +[30.877909,"o","."] +[30.880114,"o","."] +[30.882766,"o","."] +[30.884807,"o","."] +[30.887247,"o","."] +[30.889233,"o","."] +[30.891353,"o","."] +[30.894642,"o","."] +[30.89555,"o","."] +[30.897826,"o","."] +[30.899958,"o","."] +[30.901938,"o","."] +[30.904083,"o","."] +[30.906196,"o","."] +[30.909368,"o","."] +[30.912252,"o","."] +[30.913146,"o","."] +[30.915348,"o","."] +[30.917241,"o","."] +[30.919444,"o","."] +[30.921757,"o","."] +[30.924333,"o","."] +[30.926315,"o","."] +[30.928693,"o","."] +[30.931186,"o","."] +[30.933743,"o","."] +[30.93678,"o","."] +[30.938574,"o","."] +[30.941014,"o","."] +[30.943303,"o","."] +[30.945482,"o","."] +[30.947704,"o","."] +[30.950343,"o","."] +[30.955161,"o","."] +[30.959232,"o","."] +[30.965025,"o","."] +[30.970276,"o","."] +[30.974713,"o","."] +[30.978054,"o","."] +[30.981072,"o","."] +[30.983691,"o","."] +[30.987403,"o","."] +[30.99054,"o","."] +[30.993034,"o","."] +[30.995122,"o","."] +[30.997395,"o","."] +[31.000053,"o","."] +[31.002636,"o","."] +[31.005018,"o",". 63 / 128 ( 49%)\r\n"] +[31.007701,"o","."] +[31.010074,"o","."] +[31.012233,"o","."] +[31.014665,"o","."] +[31.017167,"o","."] +[31.020128,"o","."] +[31.022774,"o","."] +[31.025451,"o","."] +[31.027595,"o","."] +[31.029861,"o","."] +[31.032681,"o","."] +[31.035148,"o","."] +[31.037736,"o","."] +[31.040043,"o","."] +[31.043441,"o","."] +[31.045396,"o","."] +[31.047883,"o","."] +[31.050684,"o","."] +[31.053382,"o","."] +[31.0578,"o","."] +[31.060116,"o","."] +[31.064619,"o","."] +[31.067638,"o","."] +[31.070503,"o","."] +[31.076171,"o","."] +[31.076346,"o","."] +[31.076605,"o","."] +[31.076895,"o","."] +[31.07715,"o","."] +[31.088857,"o","."] +[31.089067,"o","."] +[31.090141,"o","."] +[31.090356,"o","."] +[31.090675,"o","."] +[31.091067,"o","."] +[31.091465,"o","."] +[31.091655,"o","."] +[31.092037,"o","."] +[33.983787,"o","."] +[36.125283,"o","."] +[39.765886,"o","."] +[45.101985,"o","."] +[51.223898,"o","."] +[57.481555,"o","."] +[64.57812,"o","."] +[70.56129,"o","."] +[76.099316,"o","."] +[83.16821,"o","."] +[93.920381,"o","."] +[102.393152,"o","."] +[108.488477,"o","."] +[114.964175,"o","."] +[122.946229,"o","."] +[149.062063,"o","."] +[209.777845,"o","."] +[232.382002,"o","."] +[241.587178,"o","."] +[251.427489,"o","."] +[275.271025,"o","."] +[304.693823,"o","."] +[314.025757,"o","."] +[321.942081,"o","."] +[329.688508,"o",". 126 / 128 ( 98%)\r\n"] +[335.315321,"o","."] +[343.264287,"o",". 128 / 128 (100%)"] +[343.26565,"o","\r\n\r\nHTML output was generated.\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-3-64373793.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-4-28366879.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-6-23032425.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-7-54859850.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-8-54859850.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-9-54859850.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTe"] +[343.265662,"o","st-10-76378463.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-11-76378463.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-12-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-13-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-14-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-15-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-16-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_star_wars_FunctionalJavascript_Example"] +[343.26578,"o","Test-1-43545822.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_star_wars_FunctionalJavascript_ExampleTest-2-98089372.html\r\n"] +[343.266856,"o","\r\n\r\n"] +[343.267203,"o","Time: 10:24.893, Memory: 18.00 MB\r\n\r\n"] +[343.267209,"o","OK (128 tests, 599 assertions)\r\n\r\nGenerating code coverage report in Cobertura XML format ... "] +[343.27675,"o","done [00:00.018]\r\n\r\nGenerating code coverage report in HTML format ... "] +[343.356781,"o","done [00:00.159]\r\n"] +[343.375845,"x","0"] diff --git a/.vortex/docs/static/img/test.png b/.vortex/docs/static/img/test.png index 6c8a88965..cbb77411d 100644 Binary files a/.vortex/docs/static/img/test.png and b/.vortex/docs/static/img/test.png differ diff --git a/.vortex/docs/static/img/test.svg b/.vortex/docs/static/img/test.svg index bcec5fcd7..e0fee78a2 100644 --- a/.vortex/docs/static/img/test.svg +++ b/.vortex/docs/static/img/test.svg @@ -1 +1 @@ -$ahoy$ahoytestPHPUnit11.5.56bySebastianBergmannandcontributors.Runtime:PHP8.4.23withPCOV1.0.12Configuration:/app/phpunit.xml................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................63/128(49%)...............................................................126/128(98%)..128/128(100%)HTMLoutputwasgenerated.http://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-[ID].htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-[ID].htmlts_star_wars_FunctionalJavascript_ExampleTest-[ID].htmlTime:[TIME],Memory:[MEMORY]OK(128tests,599assertions)GeneratingcodecoveragereportinCoberturaXMLformat...done[TIME]GeneratingcodecoveragereportinHTMLformat...done[TIME]$$a$ah$aho$ahoyt$ahoyte$ahoytesGeneratingcodecoveragereportinCoberturaXMLformat...GeneratingcodecoveragereportinHTMLformat... \ No newline at end of file +$ahoy$ahoytestPHPUnit11.5.56bySebastianBergmannandcontributors.Runtime:PHP8.4.23withPCOV1.0.12Configuration:/app/phpunit.xml................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................63/128(49%)...............................................................126/128(98%)..128/128(100%)HTMLoutputwasgenerated.http://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-3-64373793.htmlts_sw_base_FunctionalJavascript_ExampleTest-4-28366879.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-6-23032425.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-7-54859850.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-8-54859850.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-9-54859850.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-10-76378463.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-11-76378463.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-12-97707656.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-13-97707656.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-14-97707656.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-15-97707656.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-16-97707656.htmlts_star_wars_FunctionalJavascript_ExampleTest-1-43545822.htmlts_star_wars_FunctionalJavascript_ExampleTest-2-98089372.htmlTime:10:24.893,Memory:18.00MBOK(128tests,599assertions)GeneratingcodecoveragereportinCoberturaXMLformat...done[00:00.018]$$a$ah$aho$ahoyt$ahoyte$ahoytests_sw_demo_FunctionalJavascript_CounterBlockTets_star_wars_FunctionalJavascript_ExampleGeneratingcodecoveragereportinCoberturaXMLformat...GeneratingcodecoveragereportinHTMLformat...GeneratingcodecoveragereportinHTMLformat...done[00:00.159] \ No newline at end of file diff --git a/.vortex/tests/composer.json b/.vortex/tests/composer.json index cbcda0fde..0805629a5 100644 --- a/.vortex/tests/composer.json +++ b/.vortex/tests/composer.json @@ -38,7 +38,6 @@ "prefer-stable": true, "autoload-dev": { "psr-4": { - "DrevOps\\Vortex\\Docs\\": "../docs/.utils/", "DrevOps\\Vortex\\Tests\\": "phpunit/", "Drupal\\Tests\\ys_base\\Traits\\": "../../web/modules/custom/ys_base/tests/src/Traits/" } diff --git a/.vortex/tests/phpcs.xml b/.vortex/tests/phpcs.xml index 3f31bc13c..05ec37262 100644 --- a/.vortex/tests/phpcs.xml +++ b/.vortex/tests/phpcs.xml @@ -20,7 +20,6 @@ phpunit generate-vortex-dev-circleci - ../docs/.utils/CastNormalizer.php diff --git a/.vortex/tests/phpstan.neon b/.vortex/tests/phpstan.neon index 7d310bb4e..1624cc22d 100644 --- a/.vortex/tests/phpstan.neon +++ b/.vortex/tests/phpstan.neon @@ -9,7 +9,6 @@ parameters: paths: - phpunit - generate-vortex-dev-circleci - - ../docs/.utils/CastNormalizer.php excludePaths: - vendor/* diff --git a/.vortex/tests/phpunit.xml b/.vortex/tests/phpunit.xml index c00402567..4a201053a 100644 --- a/.vortex/tests/phpunit.xml +++ b/.vortex/tests/phpunit.xml @@ -34,7 +34,6 @@ ignoreIndirectDeprecations="true"> ../../web/modules/custom/ys_base/tests/src/Traits - ../docs/.utils/CastNormalizer.php phpunit diff --git a/.vortex/tests/phpunit/Functional/VideoRecordingTest.php b/.vortex/tests/phpunit/Functional/VideoRecordingTest.php deleted file mode 100644 index 18216704f..000000000 --- a/.vortex/tests/phpunit/Functional/VideoRecordingTest.php +++ /dev/null @@ -1,169 +0,0 @@ -root = dirname($vortex); - $this->utils = $vortex . '/docs/.utils'; - - foreach (['asciinema', 'node', 'npx'] as $binary) { - if (!$this->commandExists($binary)) { - $this->markTestSkipped(sprintf('"%s" is not installed.', $binary)); - } - } - - foreach ([$vortex . '/docs/node_modules', $this->utils . '/svg-term-render.js'] as $dependency) { - if (!file_exists($dependency)) { - $this->markTestSkipped(sprintf('"%s" is missing.', $dependency)); - } - } - - $this->workspace = $this->root . '/.artifacts/tmp/videos-test-' . getmypid(); - if (!is_dir($this->workspace) && !mkdir($this->workspace, 0o755, TRUE) && !is_dir($this->workspace)) { - throw new \RuntimeException('Could not create ' . $this->workspace); - } - } - - protected function tearDown(): void { - $this->remove($this->workspace); - } - - /** - * Tests that two recordings of one command produce identical artefacts. - */ - public function testRecordingTwiceProducesIdenticalArtefacts(): void { - $recorder = new VideoRecorder($this->root, $this->workspace, $this->utils . '/svg-term-render.js'); - - // Typed at a prompt and then run, the same way a demo records a command. - $command = sprintf('php %s %s', escapeshellarg($this->utils . '/type-and-run.php'), escapeshellarg('printf "one\ntwo\nthree\n"')); - - $artefacts = []; - foreach (['first', 'second'] as $run) { - $cast = sprintf('%s/%s.json', $this->workspace, $run); - - $recorder->recordSession(cwd: $this->workspace, cast_path: $cast, command: $command, title: 'Recording test', cols: 80, rows: 24); - - // The recorder writes whatever version it was built to write, and the - // wall clock it ran against reaches the recording. Neither may reach the - // artefacts. - $this->assertMatchesRegularExpression('/^\{"version":[23],/', (string) file_get_contents($cast)); - - $recorder->normalizeCast($cast, new CastNormalizer(frame_delay: 0.2)); - $recorder->renderSvg($cast, sprintf('%s/%s.svg', $this->workspace, $run)); - $recorder->renderPng($cast, sprintf('%s/%s.png', $this->workspace, $run)); - - foreach (['json', 'svg', 'png'] as $extension) { - $path = sprintf('%s/%s.%s', $this->workspace, $run, $extension); - $this->assertFileExists($path); - $artefacts[$extension][$run] = (string) file_get_contents($path); - } - } - - foreach ($artefacts as $extension => $contents) { - $this->assertSame($contents['first'], $contents['second'], sprintf('Two recordings of one session produced different %s output.', $extension)); - } - - // The canonical cast is version 2 whichever version was recorded, carries - // no recording timestamp, and starts its timeline at zero. - $canonical = $artefacts['json']['first']; - $header = json_decode(explode("\n", $canonical)[0], TRUE); - $this->assertIsArray($header); - $this->assertSame(2, $header['version']); - $this->assertArrayNotHasKey('timestamp', $header); - $this->assertArrayNotHasKey('env', $header); - $this->assertStringContainsString('[0,"o","$ "]', $canonical); - - // A poster is chosen by the text its frame draws, which is how the - // installer demo pins its welcome screen. - $poster = sprintf('%s/poster.png', $this->workspace); - $recorder->renderPng(sprintf('%s/first.json', $this->workspace), $poster, 'two'); - $this->assertFileExists($poster); - - $this->expectException(\RuntimeException::class); - $this->expectExceptionMessage('No frame draws "never drawn"'); - $recorder->renderPng(sprintf('%s/first.json', $this->workspace), $poster, 'never drawn'); - } - - /** - * Remove a directory and everything under it. - * - * @param string $path - * The directory to remove. - */ - protected function remove(string $path): void { - if ($path === '' || !is_dir($path)) { - return; - } - - $entries = scandir($path); - foreach ($entries === FALSE ? [] : $entries as $entry) { - if ($entry === '.' || $entry === '..') { - continue; - } - - $child = $path . DIRECTORY_SEPARATOR . $entry; - is_dir($child) && !is_link($child) ? $this->remove($child) : unlink($child); - } - - rmdir($path); - } - - /** - * Whether a binary is on the PATH. - * - * @param string $command - * The binary name. - * - * @return bool - * TRUE when it is executable. - */ - protected function commandExists(string $command): bool { - $path = getenv('PATH'); - if (!is_string($path) || $path === '') { - return FALSE; - } - - foreach (explode(PATH_SEPARATOR, $path) as $directory) { - if ($directory !== '' && is_file($directory . DIRECTORY_SEPARATOR . $command) && is_executable($directory . DIRECTORY_SEPARATOR . $command)) { - return TRUE; - } - } - - return FALSE; - } - -} diff --git a/.vortex/tests/phpunit/Unit/CastNormalizerTest.php b/.vortex/tests/phpunit/Unit/CastNormalizerTest.php deleted file mode 100644 index 062921925..000000000 --- a/.vortex/tests/phpunit/Unit/CastNormalizerTest.php +++ /dev/null @@ -1,558 +0,0 @@ - 1787182443, - 'env' => ['SHELL' => '/opt/homebrew/opt/bash/bin/bash'], - 'title' => 'Vortex ahoy info Demo', - 'command' => "php '/Users/someone/vortex/type-and-run.php' 'ahoy info'", - ]); - - $header = static::header((new CastNormalizer())->normalize($cast)); - - $this->assertSame([ - 'version' => 2, - 'width' => 80, - 'height' => 24, - 'title' => 'Vortex ahoy info Demo', - 'command' => "php '/home/user/vortex/type-and-run.php' 'ahoy info'", - ], $header); - } - - /** - * Tests that a write the read buffer cut in two becomes one frame again. - */ - #[DataProvider('dataProviderJoinBufferSplits')] - public function testJoinBufferSplits(int $length, float $gap, int $expected): void { - $cast = static::cast([ - [1.0, str_repeat('x', $length)], - [1.0 + $gap, "tail\r\n"], - ]); - - $this->assertCount($expected, static::payloads((new CastNormalizer(typed: FALSE))->normalize($cast))); - } - - public static function dataProviderJoinBufferSplits(): \Iterator { - // A full buffer followed immediately: one write, plus the end pause. - yield 'full buffer, immediate' => [CastNormalizer::READ_BUFFER, 0.0001, 2]; - - yield 'full buffer within tolerance' => [CastNormalizer::READ_BUFFER - CastNormalizer::READ_BUFFER_TOLERANCE, 0.0001, 2]; - - // A full buffer followed later is two writes: the session paused. - yield 'full buffer, delayed' => [CastNormalizer::READ_BUFFER, 0.5, 3]; - - // A short chunk was never cut, however fast the next one arrived. - yield 'short chunk, immediate' => [100, 0.0001, 3]; - - yield 'just short of the buffer' => [CastNormalizer::READ_BUFFER - CastNormalizer::READ_BUFFER_TOLERANCE - 1, 0.0001, 3]; - } - - /** - * Tests that a typed command line drives the delays around it. - */ - public function testTypedCommandTimeline(): void { - $cast = static::cast([ - [0.4, '$ '], - [0.9, 'l'], - [1.6, 's'], - [2.9, "\r\n"], - [7.4, "one\r\n"], - [9.1, "two\r\n"], - ]); - - $frames = static::frames((new CastNormalizer(frame_delay: 0.2))->normalize($cast)); - - $this->assertSame([ - [0.0, '$ '], - [0.05, 'l'], - [0.1, 's'], - [0.15, "\r\n"], - [1.15, "one\r\n"], - [1.35, "two\r\n"], - [4.35, ''], - ], $frames); - } - - /** - * Tests that a timestamp is written without consulting the machine. - */ - public function testTimestampFormattingIsIndependentOfSerializePrecision(): void { - $cast = static::cast([[0.4, 'one'], [0.9, 'two'], [1.4, 'three']]); - $normalizer = new CastNormalizer(frame_delay: 0.1 + 0.2, typed: FALSE); - - $original = ini_get('serialize_precision'); - ini_set('serialize_precision', '17'); - - try { - $normalized = $normalizer->normalize($cast); - - // The decoded frames pin the timeline; the literals pin how it is - // written, which decoding a float back would not notice. - $this->assertSame([[0.0, 'one'], [0.3, 'two'], [0.6, 'three'], [3.6, '']], static::frames($normalized)); - $this->assertStringContainsString('[0.3,"o","two"]', $normalized); - $this->assertStringContainsString('[0.6,"o","three"]', $normalized); - } - finally { - ini_set('serialize_precision', $original === FALSE ? '-1' : $original); - } - } - - /** - * Tests that output plays at one rate when nothing is typed. - */ - public function testUntypedTimeline(): void { - $cast = static::cast([[0.4, "one\r\n"], [8.9, "two\r\n"]]); - - $frames = static::frames((new CastNormalizer(frame_delay: 0.2, typed: FALSE))->normalize($cast)); - - $this->assertSame([[0.0, "one\r\n"], [0.2, "two\r\n"], [3.2, '']], $frames); - } - - /** - * Tests that a repaint is a frame and the session's pauses survive as steps. - */ - public function testRepaintFramesAndSteps(): void { - $cast = static::cast([ - [0.4, "banner\r\n"], - // Two repaints inside one write, then one that follows a pause. - [0.5, "\x1b[2A\x1b[Jfirst\x1b[3Asecond"], - [0.6 + CastNormalizer::MERGE_WINDOW, "\x1b[3Athird"], - ]); - - $frames = static::frames((new CastNormalizer(mode: CastNormalizer::MODE_REPAINT, frame_delay: 0.2))->normalize($cast)); - - $this->assertSame([ - [0.0, "banner\r\n"], - [0.2, "\x1b[2A\x1b[Jfirst"], - [0.4, "\x1b[3Asecond"], - [1.4, "\x1b[3Athird"], - [4.4, ''], - ], $frames); - } - - /** - * Tests that a frame drawing nothing joins the frame it introduces. - */ - public function testBlankFramesFoldForward(): void { - $cast = static::cast([ - [0.1, "\x1b[?25l"], - [0.2, "\x1b[A"], - [0.3, "\x1b[A"], - [0.4, 'drawn'], - [0.5, "\x1b[?25h"], - ]); - - $frames = static::frames((new CastNormalizer(typed: FALSE))->normalize($cast)); - - $this->assertSame([[0.0, "\x1b[?25l\x1b[A\x1b[Adrawn\x1b[?25h"], [3.0, '']], $frames); - } - - /** - * Tests that a progress indicator keeps its first and last state only. - */ - public function testInPlaceRedrawsCollapse(): void { - $cast = static::cast([ - [0.1, ' 0/60 0%'], - [0.2, "\x1b[1G\x1b[2K 20/60 33%"], - [0.3, "\x1b[1G\x1b[2K 41/60 68%"], - [0.4, "\x1b[1G\x1b[2K 60/60 100%"], - [0.5, "\r\ndone\r\n"], - ]); - - $this->assertSame([ - ' 0/60 0%', - "\x1b[1G\x1b[2K 60/60 100%", - "\r\ndone\r\n", - '', - ], static::payloads((new CastNormalizer(typed: FALSE))->normalize($cast))); - } - - /** - * Tests that a progress indicator hiding the cursor still collapses. - */ - public function testInPlaceRedrawsCollapseWithCursorHidden(): void { - $cast = static::cast([ - [0.1, "\x1b[?25l 0/60 0%"], - [0.2, "\x1b[?25l\x1b[1G\x1b[2K 20/60 33%"], - [0.3, "\x1b[?25l\x1b[1G\x1b[2K 41/60 68%"], - [0.4, "\x1b[?25l\x1b[1G\x1b[2K 60/60 100%"], - [0.5, "\r\ndone\r\n"], - ]); - - $this->assertSame([ - "\x1b[?25l 0/60 0%", - "\x1b[?25l\x1b[1G\x1b[2K 60/60 100%", - "\r\ndone\r\n", - '', - ], static::payloads((new CastNormalizer(typed: FALSE))->normalize($cast))); - } - - /** - * Tests that a repaint is not mistaken for an in-place redraw. - */ - public function testRepaintsDoNotCollapse(): void { - $cast = static::cast([ - [0.1, "\x1b[1G\x1b[2A\x1b[Jfirst"], - [0.2, "\x1b[1G\x1b[2A\x1b[Jsecond"], - ]); - - $this->assertCount(3, static::payloads((new CastNormalizer(typed: FALSE))->normalize($cast))); - } - - /** - * Tests that the line expect echoes for a spawned process is not drawn. - */ - public function testSpawnEchoIsDropped(): void { - $cast = static::cast([ - [0.1, "spawn php installer.php --destination=star_wars\r\n"], - [0.2, "banner\r\n"], - ]); - - $this->assertSame(["banner\r\n", ''], static::payloads((new CastNormalizer(typed: FALSE))->normalize($cast))); - } - - /** - * Tests that values differing between two runs are masked. - */ - #[DataProvider('dataProviderMask')] - public function testMask(string $recorded, string $expected): void { - $this->assertSame($expected, (new CastNormalizer())->mask($recorded)); - } - - public static function dataProviderMask(): \Iterator { - yield 'user home' => ['/Users/someone/vortex/.env', '/home/user/vortex/.env']; - - yield 'linux home' => ['Path: /home/someone/.docker/cli-plugins/docker-buildx', 'Path: /home/user/.docker/cli-plugins/docker-buildx']; - - yield 'standalone macos home' => ['HOME=/Users/someone', 'HOME=/home/user']; - - yield 'standalone linux home' => ['HOME=/home/someone', 'HOME=/home/user']; - - yield 'masked home is left alone' => ['/home/user/demo/star_wars', '/home/user/demo/star_wars']; - - yield 'standalone masked home is left alone' => ['HOME=/home/user', 'HOME=/home/user']; - - yield 'a longer name is not the masked one' => ['/home/username/notes', '/home/user/notes']; - - yield 'login link' => [ - 'http://site.docker.amazee.io/user/reset/1/1787192699/Cs7-tOken_9/login', - 'http://site.docker.amazee.io/user/reset/1/[TIME]/[REDACTED]/login', - ]; - - yield 'login link already redacted' => [ - 'http://site.docker.amazee.io/user/reset/1/1787192699/[REDACTED]/login', - 'http://site.docker.amazee.io/user/reset/1/[TIME]/[REDACTED]/login', - ]; - - yield 'phpunit summary' => ['Time: 10:24.893, Memory: 18.00 MB', 'Time: [TIME], Memory: [MEMORY]']; - - yield 'phpunit coverage timing' => ['done [00:00.018]', 'done [TIME]']; - - yield 'phpcs summary' => ['Time: 1.77 secs; Memory: 16MB', 'Time: [TIME]; Memory: [MEMORY]']; - - yield 'gherkinlint summary' => ['found in 12 files (took 0.0495 seconds)', 'found in 12 files (took [TIME])']; - - yield 'behat summary' => ['0m46.02s (66.71Mb)', '[TIME] ([MEMORY])']; - - yield 'browser output file' => [ - 'browser_output/Drupal_Tests_ExampleTest-3-64373793.html', - 'browser_output/Drupal_Tests_ExampleTest-[ID].html', - ]; - - yield 'task duration' => ['[ OK ] Cache was rebuilt. (3s)', '[ OK ] Cache was rebuilt. ([TIME])']; - - yield 'long task duration' => ['[ OK ] Finished site provisioning (1m 2s).', '[ OK ] Finished site provisioning ([TIME]).']; - - yield 'image digest' => [ - 'writing image sha256:8a8c78a93a7832368d9390e73639ac1215c4ca4bfa61063d6a74e40f61693a27 done', - 'writing image sha256:[HASH] done', - ]; - - yield 'engine counters' => [" Containers: 351\r\n Running: 27\r\n Images: 294", " Containers: [COUNT]\r\n Running: [COUNT]\r\n Images: [COUNT]"]; - - yield 'host port' => ['Solr URL on host : http://127.0.0.1:51389', 'Solr URL on host : http://127.0.0.1:[PORT]']; - - yield 'labelled host port' => ["DB port on host : 51391 ('ahoy db')", "DB port on host : [PORT] ('ahoy db')"]; - - yield 'build step duration' => ['#15 DONE 1.4s', '#15 DONE [TIME]']; - - yield 'compound duration' => ['elapsed 1h2m3.4s here', 'elapsed [TIME] here']; - - yield 'transfer size' => ['#12 transferring context: 1.23kB done', '#12 transferring context: [SIZE] done']; - - yield 'version is not a duration' => ['Drupal core version : 11.4.5', 'Drupal core version : 11.4.5']; - - yield 'test count is not a size' => ['OK (128 tests, 599 assertions)', 'OK (128 tests, 599 assertions)']; - } - - /** - * Tests that a credential recorded from the session never reaches a demo. - */ - #[DataProvider('dataProviderRedactSecrets')] - public function testRedactSecrets(string $recorded, string $expected): void { - $this->assertSame($expected, (new CastNormalizer())->mask($recorded)); - } - - public static function dataProviderRedactSecrets(): \Iterator { - yield 'github token' => ['token=ghp_' . str_repeat('a', 36), 'token=XXXXX']; - - yield 'github fine-grained token' => ['token=github_pat_' . str_repeat('b', 30), 'token=XXXXX']; - - yield 'aws key' => ['AKIA' . str_repeat('C', 16), 'XXXXX']; - } - - /** - * Tests that a sensitive environment variable is masked wherever it appears. - */ - public function testRedactSecretsFromEnvironment(): void { - $original = getenv('PACKAGE_TOKEN'); - putenv('PACKAGE_TOKEN=s3cr3t-package-token'); - - try { - $this->assertSame('used XXXXX here', (new CastNormalizer())->mask('used s3cr3t-package-token here')); - } - finally { - putenv($original === FALSE ? 'PACKAGE_TOKEN' : 'PACKAGE_TOKEN=' . $original); - } - } - - /** - * Tests that paths given by the caller are replaced before anything else. - */ - public function testPathsAreReplaced(): void { - $normalizer = new CastNormalizer(paths: ['/tmp/workspace' => '/home/user/demo', '/src/vortex' => '/home/user/vortex']); - - $this->assertSame('/home/user/demo/star_wars from /home/user/vortex', $normalizer->mask('/tmp/workspace/star_wars from /src/vortex')); - } - - /** - * Tests that a version 3 recording normalizes like a version 2 one. - * - * Repaint mode is the mode that reads the recorded times, and the session is - * one of evenly spaced repaints: accumulated, every gap is half a second and - * begins a step, while a normalizer that took the version 3 timestamps for - * times from the start would see gaps of zero and never begin one. The - * terminal is not the default size, so a normalizer that missed the 'term' - * object would write the wrong one. - */ - #[DataProvider('dataProviderVersionThreeCastNormalizesLikeVersionTwo')] - public function testVersionThreeCastNormalizesLikeVersionTwo(string $mode): void { - $events = [ - [0.0, "banner\r\n"], - [0.5, "\x1b[2A\x1b[Jfirst"], - [1.0, "\x1b[2A\x1b[Jsecond"], - [1.5, "\x1b[2A\x1b[Jthird"], - ]; - - $v2 = static::cast($events, ['width' => 100, 'height' => 30]); - - // The same session as version 3 records it: the terminal moves into its - // own header object, each timestamp is the gap from the event before it, - // and an exit event closes the recording. - $lines = [(string) json_encode(['version' => 3, 'term' => ['cols' => 100, 'rows' => 30, 'type' => 'xterm-256color'], 'title' => 'Demo', 'command' => 'demo'], JSON_UNESCAPED_SLASHES)]; - $previous = 0.0; - foreach ($events as $event) { - $lines[] = (string) json_encode([round($event[0] - $previous, 6), 'o', $event[1]], JSON_UNESCAPED_SLASHES); - $previous = $event[0]; - } - $lines[] = (string) json_encode([0.1, 'x', '0'], JSON_UNESCAPED_SLASHES); - - $normalizer = new CastNormalizer(mode: $mode, typed: FALSE); - $normalized = $normalizer->normalize($v2); - - $this->assertSame($normalized, $normalizer->normalize(implode("\n", $lines) . "\n")); - $this->assertStringContainsString('"width":100,"height":30', $normalized); - - if ($mode === CastNormalizer::MODE_REPAINT) { - // Every accumulated gap is 0.5s against a 0.35s window, so each repaint - // begins a step and plays a second after the one before it. - $this->assertSame([[0.0, "banner\r\n"], [1.0, "\x1b[2A\x1b[Jfirst"], [2.0, "\x1b[2A\x1b[Jsecond"], [3.0, "\x1b[2A\x1b[Jthird"], [6.0, '']], static::frames($normalized)); - } - } - - public static function dataProviderVersionThreeCastNormalizesLikeVersionTwo(): \Iterator { - yield 'writes' => [CastNormalizer::MODE_WRITES]; - - yield 'repaint' => [CastNormalizer::MODE_REPAINT]; - } - - /** - * Tests that two recordings of one session normalize to the same bytes. - */ - public function testTwoRecordingsOfOneSessionMatch(): void { - $block = str_repeat('x', CastNormalizer::READ_BUFFER); - - $first = static::cast([ - [0.31, '$ '], - [0.83, 'l'], - [0.88, 's'], - [1.29, "\r\n"], - [3.01, $block], - [3.0104, "tail\r\n"], - [4.77, 'Time: 1.77 secs; Memory: 16MB'], - ]); - - $second = static::cast([ - [0.07, '$ '], - [0.51, 'l'], - [0.59, 's'], - [1.02, "\r\n"], - [9.44, $block], - [9.4431, "tail\r\n"], - [11.06, 'Time: 2.31 secs; Memory: 22MB'], - ]); - - $normalizer = new CastNormalizer(); - - $this->assertSame($normalizer->normalize($first), $normalizer->normalize($second)); - } - - /** - * Tests that normalizing an already normalized cast changes nothing. - */ - #[DataProvider('dataProviderIdempotence')] - public function testIdempotence(string $mode): void { - $cast = static::cast([ - [0.4, '$ '], - [0.9, 'l'], - [1.3, "\r\n"], - [2.2, "spawned at /Users/someone/demo in 1.4s\r\n"], - [2.9, str_repeat('y', CastNormalizer::READ_BUFFER)], - [2.9004, "\x1b[2A\x1b[Jrepainted\r\n"], - [4.4, ' 0/60 0%'], - [4.5, "\x1b[1G\x1b[2K 60/60 100%"], - ]); - - $normalizer = new CastNormalizer(mode: $mode); - $once = $normalizer->normalize($cast); - - $this->assertSame($once, $normalizer->normalize($once)); - } - - public static function dataProviderIdempotence(): \Iterator { - yield 'writes' => [CastNormalizer::MODE_WRITES]; - - yield 'repaint' => [CastNormalizer::MODE_REPAINT]; - } - - /** - * Tests that a cast which cannot be normalized is reported rather than used. - */ - #[DataProvider('dataProviderNormalizeFailure')] - public function testNormalizeFailure(string $cast, string $message): void { - $this->expectException(\RuntimeException::class); - $this->expectExceptionMessage($message); - - (new CastNormalizer())->normalize($cast); - } - - public static function dataProviderNormalizeFailure(): \Iterator { - yield 'no events' => ['{"version":2}' . "\n", 'Cast is empty or malformed.']; - - yield 'empty' => ['', 'Cast is empty or malformed.']; - - yield 'header is not json' => ["not json\n" . '[0,"o","x"]', 'Cast header is not valid JSON.']; - - yield 'nothing drawn' => ['{"version":2}' . "\n" . '[0,"x","0"]', 'Cast carries no frames to draw.']; - } - - /** - * Tests that an unknown frame mode is refused. - */ - public function testUnknownModeIsRefused(): void { - $this->expectException(\InvalidArgumentException::class); - $this->expectExceptionMessage('Unknown frame mode: lines'); - - new CastNormalizer(mode: 'lines'); - } - - /** - * Build a cast from a list of [time, output] pairs. - * - * @param array $events - * Recorded output events. - * @param array $header - * Header values to set on top of the defaults. - * - * @return string - * Contents of a cast file. - */ - protected static function cast(array $events, array $header = []): string { - $header += ['version' => 2, 'width' => 80, 'height' => 24, 'timestamp' => 1787182443, 'title' => 'Demo', 'command' => 'demo']; - - $lines = [json_encode($header, JSON_UNESCAPED_SLASHES)]; - foreach ($events as $event) { - $lines[] = json_encode([$event[0], 'o', $event[1]], JSON_UNESCAPED_SLASHES); - } - - return implode("\n", $lines) . "\n"; - } - - /** - * Return the header of a cast as an array. - * - * @param string $cast - * Contents of a cast file. - * - * @return array - * Decoded header. - */ - protected static function header(string $cast): array { - $lines = explode("\n", trim($cast)); - $header = json_decode($lines[0], TRUE); - - return is_array($header) ? $header : []; - } - - /** - * Return the [time, output] pairs of a cast. - * - * @param string $cast - * Contents of a cast file. - * - * @return array - * Decoded frames. - */ - protected static function frames(string $cast): array { - $lines = explode("\n", trim($cast)); - array_shift($lines); - - $frames = []; - foreach ($lines as $line) { - $event = json_decode($line, TRUE); - if (!is_array($event) || !isset($event[0]) || !is_numeric($event[0]) || !isset($event[2]) || !is_string($event[2])) { - continue; - } - $frames[] = [(float) $event[0], $event[2]]; - } - - return $frames; - } - - /** - * Return the output each frame of a cast draws. - * - * @param string $cast - * Contents of a cast file. - * - * @return array - * Frame payloads, in order. - */ - protected static function payloads(string $cast): array { - return array_map(static fn(array $frame): string => $frame[1], static::frames($cast)); - } - -}