diff --git a/.claude/skills/prepare-vortex-release/SKILL.md b/.claude/skills/prepare-vortex-release/SKILL.md index fc9250a38..63a08ed17 100644 --- a/.claude/skills/prepare-vortex-release/SKILL.md +++ b/.claude/skills/prepare-vortex-release/SKILL.md @@ -124,11 +124,16 @@ Work through each checklist item from the release process doc: project to work against. - To re-record a subset, pass the names: `ahoy update-videos installer build lint`. Allowed names: `installer`, - `build`, `provision`, `lint`, `test`, `test-bdd`. Default is all six. - - Heavy step: ~15-20 minutes wall-clock when running all six; requires + `build`, `provision`, `lint`, `test`, `test-bdd`, `info`, `doctor`, + `doctor-info`. Default is all nine. + - Heavy step: ~15-20 minutes wall-clock when running all nine; requires Docker. `ahoy update-videos installer` is fast (no Docker). - The command does NOT auto-commit; review the artifact diff under `.vortex/docs/static/img/` and stage manually. + - A recording whose output reports an error, a warning or a failure is not + rendered, and the command stops naming the offending lines. Read them in + `.artifacts/videos/.txt`, fix the command that emits them, and record + again - there is no flag that renders anyway. ## Step 5: Generate release notes diff --git a/.docker/cli.dockerfile b/.docker/cli.dockerfile index f5fccf36f..ce959c4a6 100644 --- a/.docker/cli.dockerfile +++ b/.docker/cli.dockerfile @@ -101,9 +101,10 @@ RUN mkdir -p -m 2775 "/app/${WEBROOT}/${DRUPAL_PUBLIC_FILES}" "/app/${WEBROOT}/$ #;< DRUPAL_THEME RUN if [ "${VORTEX_FRONTEND_BUILD_SKIP}" != "1" ]; then \ theme_path="/app/${WEBROOT}/themes/custom/${DRUPAL_THEME}"; \ + export npm_config_cache=/tmp/npm-cache; \ npm --prefix="${theme_path}" ci --no-progress --no-audit --no-fund && \ npm --prefix="${theme_path}" run build && \ - npm cache clean --force; \ + rm -rf /tmp/npm-cache; \ fi #;> DRUPAL_THEME diff --git a/.vortex/CLAUDE.md b/.vortex/CLAUDE.md index d60e65bbf..404939ef6 100644 --- a/.vortex/CLAUDE.md +++ b/.vortex/CLAUDE.md @@ -158,15 +158,22 @@ commit its output manually. Run both after the code change is committed. ## Documentation videos -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: +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: - `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 the reported environment. + +A published video is a claim that the command it records runs clean, so each +recording is decoded to plain text at `.artifacts/videos/.txt` and is not +rendered when that text reports an error, a warning or a failure. There is no +override flag: fix the output at the command that emits it and record again. `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/VideoRecorder.php b/.vortex/docs/.utils/VideoRecorder.php index 96fd719ee..e860599b6 100644 --- a/.vortex/docs/.utils/VideoRecorder.php +++ b/.vortex/docs/.utils/VideoRecorder.php @@ -32,6 +32,34 @@ final class VideoRecorder { */ public const FONT_SIZE = '1.67'; + /** + * Recorded output markers, keyed by the category they are reported under. + * + * A command that fails inside a recording still leaves asciinema exiting + * zero, so a failure is only visible in the text the command printed. + */ + public const ISSUE_PATTERNS = [ + 'error' => '#\berrors?\b|✖|✗#iu', + 'warning' => '#\bwarn(?:ing|ings|s)?\b#i', + 'failure' => '#\bfail(?:ed|ing|s|ure|ures)?\b#i', + ]; + + /** + * Fragments removed from a line before it is matched against ISSUE_PATTERNS. + * + * Paths, URLs, package names and command line options embed the marker words + * in identifiers ('symfony/error-handler', + * '--no-error-on-unmatched-pattern'), and tools report a clean run with an + * explicit zero count ('0 errors', 'warnings: 0'). + */ + public const ISSUE_EXEMPT_PATTERNS = [ + '#https?://\S+#', + '#\S+/\S+#', + '#(?pass("Cast time-scaled by {$factor}x"); } + /** + * Decode a cast into the plain text the recorded terminal displayed. + */ + public function castToText(string $cast_path): string { + if (!is_file($cast_path)) { + throw new RuntimeException("Cast file not found: $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"); + } + + // The whole stream is joined before it is stripped, because an escape + // sequence can be split across two recorded events and is only contiguous + // once they are concatenated. + $text = ''; + foreach (array_slice($lines, 1) as $line) { + $line = trim($line); + + if ($line === '') { + continue; + } + + $event = json_decode($line, TRUE); + + // Only 'o' events carry terminal output; 'i' and 'r' events carry input + // and resizes. + if (is_array($event) && ($event[1] ?? '') === 'o' && isset($event[2])) { + $text .= (string) $event[2]; + } + } + + return $this->stripAnsi($text); + } + + /** + * Remove the escape sequences that color and position recorded output. + */ + protected function stripAnsi(string $text): string { + $patterns = [ + // Operating system commands, such as the window title. + '#\x1b\][^\x07\x1b]*(?:\x07|\x1b\\\\)#', + // Control sequence introducer, covering colors and cursor movement. + '#\x1b\[[0-9;?]*[ -/]*[@-~]#', + // Two-character escapes left between the sequences above. + '#\x1b[@-Z\\\\-_]#', + ]; + + $stripped = preg_replace($patterns, '', $text); + if ($stripped === NULL) { + throw new RuntimeException('Failed to strip ANSI sequences from cast text'); + } + + // ISSUE_PATTERNS needs the 'u' modifier to carry '✖', and a 'u' pattern + // returns FALSE rather than no-match on invalid UTF-8, which would hide + // every marker on the offending line. + $stripped = mb_scrub($stripped, 'UTF-8'); + + // A carriage return redraws the current line, so each redraw becomes its + // own line rather than overwriting the text that was already recorded. + return str_replace(["\r\n", "\r"], "\n", $stripped); + } + + /** + * Write the plain text transcript of a cast and return its contents. + */ + public function writeTranscript(string $cast_path, string $transcript_path): string { + $text = $this->castToText($cast_path); + + $dir = dirname($transcript_path); + if (!is_dir($dir) && !mkdir($dir, 0o755, TRUE) && !is_dir($dir)) { + throw new RuntimeException("Failed to create transcript directory: $dir"); + } + + if (file_put_contents($transcript_path, $text) === FALSE) { + throw new RuntimeException("Failed to write transcript: $transcript_path"); + } + + $this->pass("Transcript written: $transcript_path"); + + return $text; + } + + /** + * Find the lines of recorded output that report an error or a warning. + * + * @return array + */ + public function findIssues(string $text): array { + $issues = []; + + foreach (explode("\n", $text) as $index => $line) { + $line = trim($line); + + if ($line === '') { + continue; + } + + $probe = preg_replace(self::ISSUE_EXEMPT_PATTERNS, ' ', $line); + if ($probe === NULL) { + throw new RuntimeException('Failed to apply issue exemptions to recorded output'); + } + + foreach (self::ISSUE_PATTERNS as $category => $pattern) { + if (preg_match($pattern, $probe) === 1) { + $issues[] = ['line' => $index + 1, 'category' => $category, 'text' => $line]; + + break; + } + } + } + + return $issues; + } + + /** + * Report the issues found in recorded output and fail when there are any. + * + * A published demo is a claim that the command runs clean, so a recording + * that reports an error, a warning or a failure is not rendered. + */ + public function assertNoIssues(string $name, string $text): void { + $issues = $this->findIssues($text); + + if ($issues === []) { + $this->pass("No errors, warnings or failures recorded in '$name'"); + + return; + } + + $grouped = []; + foreach ($issues as $issue) { + $key = $issue['category'] . '|' . $issue['text']; + $grouped[$key] ??= ['line' => $issue['line'], 'category' => $issue['category'], 'text' => $issue['text'], 'count' => 0]; + $grouped[$key]['count']++; + } + + $this->fail(sprintf("Recorded '%s' output reports %d issue line(s), %d unique:", $name, count($issues), count($grouped))); + + foreach ($grouped as $issue) { + $repeat = $issue['count'] > 1 ? sprintf(' (x%d)', $issue['count']) : ''; + $this->note(sprintf('line %d [%s]%s %s', $issue['line'], $issue['category'], $repeat, $this->truncate($issue['text']))); + } + + throw new RuntimeException(sprintf("Refusing to render '%s': fix the reported lines at the command that emits them and re-record", $name)); + } + + /** + * Shorten a reported line to keep the issue report readable. + */ + protected function truncate(string $text, int $length = 160): string { + return mb_strlen($text) > $length ? mb_substr($text, 0, $length - 3) . '...' : $text; + } + /** * Render the cast to an animated SVG via svg-term-render.js. */ diff --git a/.vortex/docs/.utils/update-videos.php b/.vortex/docs/.utils/update-videos.php index 80d7c6782..d5c375c51 100755 --- a/.vortex/docs/.utils/update-videos.php +++ b/.vortex/docs/.utils/update-videos.php @@ -20,8 +20,11 @@ * * Output is hardcoded to .vortex/docs/static/img/.{json,svg,png,gif}. * + * Every cast is decoded to plain text at .artifacts/videos/.txt and is + * not rendered when that text reports an error, a warning or a failure. + * * Usage: - * php update-videos.php # wipe + bootstrap + record all six + * php update-videos.php # wipe + bootstrap + record all * 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 @@ -39,6 +42,15 @@ const WORKSPACE_REL = '.artifacts/tmp/videos-workspace'; +/** + * Where the plain text decoded from each cast is written. + * + * The output check reports line numbers against this text, so it is kept for + * inspection. It is working material and not a published artifact, so it lives + * outside the docs static directory. + */ +const TRANSCRIPT_REL = '.artifacts/videos'; + const COMPOSE_PROJECT = 'vortex_videos'; /** @@ -133,6 +145,10 @@ function usage(): void { fwrite(STDERR, "--keep reuses the existing workspace and skips the bootstrap. Requires the\n"); fwrite(STDERR, "Docker stack to be running (the script probes and exits cleanly otherwise).\n"); fwrite(STDERR, "\n"); + fwrite(STDERR, "Each recording is decoded to '.artifacts/videos/.txt' and is not\n"); + fwrite(STDERR, "rendered when that text reports an error, a warning or a failure. There is\n"); + fwrite(STDERR, "no override: fix the command that emits the output and record again.\n"); + fwrite(STDERR, "\n"); fwrite(STDERR, "Video names may be space or comma separated (lint test = lint,test).\n"); } @@ -287,6 +303,11 @@ function render_video(VideoRecorder $recorder, string $name, string $workspace, $recorder->applyTimeScale($cast, 1.0 / (float) $cfg['speed']); } + // Decoded from the post-processed cast, so the transcript carries the + // anonymised paths and masked credentials rather than what was recorded. + $text = $recorder->writeTranscript($cast, $recorder->project_root . '/' . TRANSCRIPT_REL . "/$name.txt"); + $recorder->assertNoIssues($name, $text); + $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']); } diff --git a/.vortex/docs/CLAUDE.md b/.vortex/docs/CLAUDE.md index 624418882..b8bb34c57 100644 --- a/.vortex/docs/CLAUDE.md +++ b/.vortex/docs/CLAUDE.md @@ -59,16 +59,17 @@ Categories defined in `sidebars.js`. For subdirectories: ## Documentation videos -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). +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. 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 six | +| `ahoy update-videos` | Wipe workspace + bootstrap + record all | | `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 | @@ -87,9 +88,12 @@ timestamp, typer on/off) live in the `VIDEOS` array at the top of **Pipeline**: 1. Runs the installer non-interactively (or via `expect` when `installer` is in the requested set) using `--uri=`, producing `$workspace/star_wars`. -2. If any of `build`, `provision`, `lint`, `test`, `test-bdd` is requested, `ahoy build` runs **once** in `$workspace/star_wars` (either as the recorded `build` video or silently). -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. +2. If any of `build`, `provision`, `lint`, `test`, `test-bdd`, `info`, `doctor`, `doctor-info` is requested, `ahoy build` runs **once** in `$workspace/star_wars` (either as the recorded `build` video or silently). +3. Remaining requested commands (`info`, `doctor`, `doctor-info`, `provision`, `lint`, `test`, `test-bdd`) are recorded in that same `star_wars` directory, in fixed order. +4. Each cast is decoded to plain text at `.artifacts/videos/.txt` and checked before it is rendered; a recording whose output reports an error, a warning or a failure is not turned into an SVG. +5. 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. + +**Output check**: a published demo is a claim that the command it records runs clean, so the decoded transcript is matched against `VideoRecorder::ISSUE_PATTERNS`, with `VideoRecorder::ISSUE_EXEMPT_PATTERNS` removing the fragments that carry a marker word without reporting anything (paths, URLs, package names, command line options, and zero counts such as `0 errors` or `warnings: 0`). The report names every offending line with the line number it holds in the transcript, and groups repeated identical lines. There is no override flag - output that cannot be fixed here is fixed at the command that emits it. The transcript is working material rather than a published artifact, so `.artifacts/` is gitignored and nothing under it is committed. **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/static/img/build.json b/.vortex/docs/static/img/build.json index d8261b6fc..a49c2840f 100644 --- a/.vortex/docs/static/img/build.json +++ b/.vortex/docs/static/img/build.json @@ -1,1507 +1,1327 @@ -{"version":2,"width":80,"height":27,"timestamp":1787268112,"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.063207, "o", "$ "] -[0.563382, "o", "a"] -[0.617104, "o", "h"] -[0.672138, "o", "o"] -[0.722998, "o", "y"] -[0.775622, "o", " "] -[0.833959, "o", "b"] -[0.888037, "o", "u"] -[0.943154, "o", "i"] -[0.998683, "o", "l"] -[1.051558, "o", "d"] -[1.509725, "o", "\r\n"] -[2.010748, "o", "\u001b[36m[INFO] Started Vortex tooling installation.\u001b[0m\r\n"] -[6.036632, "o", "\u001b[32m[ OK ] Finished Vortex tooling installation.\u001b[0m\r\n"] -[6.476915, "o", "\u001b[36m[INFO] Started reset.\u001b[0m\r\n"] -[6.500885, "o", "\u001b[32m[ OK ] Finished reset.\u001b[0m\r\n"] -[6.867604, "o", "#1 [internal] load local bake definitions\r\n"] -[7.018324, "o", "#1 reading from stdin 4.03kB done\r\n#1 DONE 0.0s\r\n"] -[7.482732, "o", "\r\n#2 [database internal] load build definition from database.dockerfile\r\n#2 transferring dockerfile: 816B 0.0s done\r\n#2 WARN: SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV \"MYSQL_PASSWORD\") (line 18)\r\n#2 DONE 0.0s\r\n\r\n#3 [clamav internal] load build definition from clamav.dockerfile\r\n"] -[7.482743, "o", "#3 transferring dockerfile: 1.45kB 0.0s done\r\n#3 DONE 0.0s\r\n\r\n#4 [database internal] load metadata for docker.io/uselagoon/mysql-8.4:26.8.0\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 0.0s done\r\n#5 DONE 0.0s\r\n\r\n#6 [solr internal] load build definition from solr.dockerfile\r\n#6 transferring dockerfile: 1.46kB done\r\n#6 DONE 0.1s\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"] -[7.482745, "o", "\r\n#8 [database internal] load .dockerignore\r\n"] -[7.482775, "o", "#8 transferring context: 1.23kB done\r\n#8 DONE 0.0s\r\n\r\n#9 [database 1/3] FROM docker.io/uselagoon/mysql-8.4:26.8.0\r\n#9 DONE 0.0s\r\n\r\n#10 [nginx internal] load build definition from nginx-drupal.dockerfile\r\n"] -[7.584798, "o", "#10 transferring dockerfile: 675B 0.1s done\r\n#10 DONE 0.1s\r\n\r\n#11 [php internal] load build definition from php.dockerfile\r\n#11 transferring dockerfile: 526B 0.0s done\r\n#11 DONE 0.1s\r\n\r\n#12 [database internal] load build context\r\n#12 transferring context: 564B 0.0s done\r\n#12 DONE 0.1s\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\r\n"] -[7.80324, "o", "#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 [php internal] load metadata for docker.io/uselagoon/php-8.4-fpm:26.8.0\r\n"] -[8.40208, "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] clamav/clamav-debian: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"] -[8.402106, "o", "#22 [auth] uselagoon/commons:pull token for registry-1.docker.io\r\n#22 DONE 0.0s\r\n"] -[8.552332, "o", "\r\n#23 [nginx internal] load metadata for docker.io/uselagoon/nginx-drupal:26.8.0\r\n"] -[9.060918, "o", "#23 ...\r\n\r\n#24 [solr internal] load metadata for docker.io/uselagoon/solr-9-drupal:26.8.0\r\n#24 DONE 1.6s\r\n"] -[9.179063, "o", "\r\n#8 [nginx internal] load .dockerignore\r\n#8 transferring context: 1.23kB done\r\n#8 DONE 0.0s\r\n\r\n#23 [nginx internal] load metadata for docker.io/uselagoon/nginx-drupal:26.8.0\r\n#23 DONE 1.5s\r\n\r\n#25 [nginx stage-1 1/5] FROM docker.io/uselagoon/nginx-drupal:26.8.0@sha256:56ad1a69dc2c752cdd0061a269dcf0723825911bae380565951d7814c701fecf\r\n#25 DONE 0.0s\r\n\r\n#26 [nginx stage-0 1/10] FROM docker.io/uselagoon/php-8.4-cli-drupal:26.8.0\r\n#26 DONE 0.0s\r\n\r\n#27 [nginx internal] load build context\r\n"] -[9.179072, "o", "#27 transferring context: 254B 0.0s done\r\n#27 DONE 0.1s\r\n\r\n#28 [solr 1/3] FROM docker.io/uselagoon/solr-9-drupal:26.8.0@sha256:de7bb5e9758fe8caf4bc2fb726a9e544e10cfa59c78e319592fed6102f804683\r\n#28 DONE 0.0s\r\n\r\n#29 [nginx internal] load build context\r\n#29 transferring context: 2.74MB 0.1s done\r\n#29 DONE 0.1s\r\n\r\n#30 [solr internal] load build context\r\n#30 transferring context: 1.54MB 0.0s done\r\n#30 DONE 0.0s\r\n\r\n#31 [solr 2/3] COPY .docker/config/solr/config-set /solr-conf/conf/\r\n#31 CACHED\r\n"] -[9.17914, "o", "\r\n#32 [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#32 CACHED\r\n\r\n#33 [solr] exporting to image\r\n#33 exporting layers done\r\n#33 writing image sha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660fd05e2d58bcaf done\r\n#33 naming to docker.io/library/vortex_videos-solr done\r\n#33 DONE 0.0s\r\n\r\n#34 [solr] resolving provenance for metadata file\r\n"] -[9.317567, "o", "#34 DONE 0.0s\r\n\r\n#35 [nginx 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#35 CACHED\r\n\r\n#36 [nginx stage-0 4/10] COPY scripts /app/scripts\r\n#36 CACHED\r\n\r\n#37 [nginx stage-0 5/10] COPY composer.json composer.* patches.lock.* .env* auth* /app/\r\n#37 CACHED\r\n\r\n#38 [nginx stage-0 3/10] COPY patches /app/patches\r\n#38 CACHED\r\n\r\n#39 [nginx 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#39 CACHED\r\n\r\n#40 [nginx stage-0 7/10] COPY . /app\r\n#40 DONE 0.1s\r\n\r\n#41 [clamav internal] load metadata for docker.i"] -[9.317575, "o", "o/uselagoon/commons:26.8.0\r\n"] -[9.450385, "o", "#41 DONE 2.0s\r\n\r\n#8 [clamav internal] load .dockerignore\r\n#8 transferring context: 1.23kB done\r\n#8 DONE 0.0s\r\n\r\n#26 [php stage-0 1/10] FROM docker.io/uselagoon/php-8.4-cli-drupal:26.8.0\r\n#26 DONE 0.0s\r\n\r\n#29 [php internal] load build context\r\n#29 transferring context: 2.74MB 0.1s done\r\n#29 DONE 0.2s\r\n\r\n#36 [php stage-0 4/10] COPY scripts /app/scripts\r\n#36 CACHED\r\n\r\n#37 [php stage-0 5/10] COPY composer.json composer.* patches.lock.* .env* auth* /app/\r\n#37 CACHED\r\n\r\n#38 [php stage-0 3/10] COPY patches /app/patches\r\n#38 CACHED\r\n\r\n#35 [php 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#35 CACHED\r\n\r\n#39 [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_A"] -[9.450739, "o", "UTH=\"{\"github-oauth\": {\"github.com\": \"${token}\"}}\"; fi && COMPOSER_MEMORY_LIMIT=-1 composer install -n --no-dev --ansi --prefer-dist --optimize-autoloader\r\n#39 CACHED\r\n\r\n#17 [php internal] load metadata for docker.io/uselagoon/php-8.4-fpm:26.8.0\r\n#17 DONE 1.8s\r\n\r\n#42 [php stage-1 1/3] FROM docker.io/uselagoon/php-8.4-fpm:26.8.0@sha256:cafd9304ab495d6f102fc5ec27f770a4ef33139a89c64bc94db467ccb23ba411\r\n#42 DONE 0.0s\r\n\r\n#40 [php stage-0 7/10] COPY . /app\r\n#40 DONE 0.2s\r\n\r\n#43 [clamav internal] load metadata for docker.io/clamav/clamav-debian:1.5.4\r\n#43 DONE 2.0s\r\n\r\n#44 [clamav stage-1 1/7] FROM docker.io/clamav/clamav-debian:1.5.4@sha256:2bb8cd7dfe3e87f86e969a2c415f7698583175e46dc2234672be9210c982c144\r\n#44 DONE 0.0s\r\n\r\n#45 [clamav commons 1/1] FROM docker.io/uselagoon/commons:26.8.0@sha256:0af1b1ed0e4b76a035415637d910290f8ecd75fb46a05be8ca8bfec24f2a84e6\r\n#45 DONE 0.0s\r\n\r\n#46 [clamav internal] load build context\r\n#46 transferring context: 285B done\r\n#46 DONE 0.1s\r\n\r\n#47 [php stage-0 8/10] RUN mkdir -p -m 277"] -[9.451037, "o", "5 \"/app/web/sites/default/files\" \"/app/web/sites/default/files/private\" \"/tmp\"\r\n"] -[9.603973, "o", "#47 ...\r\n\r\n#48 [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#48 CACHED\r\n\r\n#49 [clamav stage-1 3/7] COPY --from=commons /bin/fix-permissions /bin/ep /bin/docker-sleep /bin/wait-for /bin/\r\n#49 CACHED\r\n\r\n#50 [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#50 CACHED\r\n\r\n#51 [clamav stage-1 2/7] COPY --from=commons /lagoon /lagoon\r\n#51 CACHED\r\n\r\n#52 [clamav stage-1 5/7] COPY .docker/config/clamav/clamav.conf /tmp/clamav.conf\r\n#52 CACHED\r\n\r\n#53 [clamav stage-1 7/7] RUN fix-permissions /var/lib/clamav\r\n#53 CACHED\r\n\r\n#54 [clamav] exporting to image\r\n#5"] -[9.60398, "o", "4 exporting layers done\r\n#54 writing image sha256:7ac7c6ac3f13de064a3cfc25b0cb3c1c735436a8b0d2a2391b82a29e945f7658 done\r\n#54 naming to docker.io/library/vortex_videos-clamav done\r\n#54 DONE 0.0s\r\n\r\n#55 [clamav] resolving provenance for metadata file\r\n#55 DONE 0.0s\r\n\r\n#47 [php stage-0 8/10] RUN mkdir -p -m 2775 \"/app/web/sites/default/files\" \"/app/web/sites/default/files/private\" \"/tmp\"\r\n"] -[9.756835, "o", "#47 DONE 0.4s\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"] -[11.44113, "o", "#56 1.918 npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] -[12.074327, "o", "#56 2.352 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 2.402 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"] -[12.429548, "o", "#56 2.737 npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n#56 2.757 npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] -[12.688557, "o", "#56 3.012 npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported\r\n"] -[13.357352, "o", "#56 3.685 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"] -[13.865214, "o", "#56 4.239 \r\n#56 4.239 > star_wars@1.0.0 postinstall\r\n#56 4.239 > patch-package\r\n#56 4.239 \r\n#56 4.327 patch-package 6.5.1\r\n#56 4.327 Applying patches...\r\n#56 4.327 No patch files found\r\n#56 4.344 \r\n#56 4.344 added 475 packages in 4s\r\n"] -[14.177407, "o", "#56 4.470 \r\n#56 4.470 > star_wars@1.0.0 build\r\n#56 4.470 > 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 4.470 \r\n#56 4.561 \r\n#56 4.561 > star_wars@1.0.0 clean\r\n#56 4.561 > rm -rf build\r\n#56 4.561 \r\n#56 4.655 \r\n#56 4.655 > star_wars@1.0.0 concat\r\n#56 4.655 > find js -name '*.js' ! -name '*.min.js' -exec cat {} + > build/js/star_wars.min.js\r\n#56 4.655 \r\n"] -[14.424488, "o", "#56 4.752 \r\n#56 4.752 > star_wars@1.0.0 uglify\r\n#56 4.752 > 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.752 \r\n"] -[14.443186, "o", "#56 4.920 \r\n#56 4.920 > star_wars@1.0.0 sass:prod\r\n#56 4.920 > sass scss/styles.scss build/css/star_wars.min.css --no-source-map --style=compressed\r\n#56 4.920 \r\n"] -[14.914021, "o", "#56 5.239 \r\n#56 5.239 > star_wars@1.0.0 postcss:prod\r\n#56 5.239 > postcss build/css/star_wars.min.css -o build/css/star_wars.min.css --no-map\r\n#56 5.239 \r\n"] -[15.087845, "o", "#56 5.566 \r\n#56 5.566 > star_wars@1.0.0 copy\r\n#56 5.566 > npm run copy:images && npm run copy:fonts\r\n#56 5.566 \r\n"] -[15.300104, "o", "#56 5.666 \r\n#56 5.666 > star_wars@1.0.0 copy:images\r\n#56 5.666 > mkdir -p build/images && cp -r images/* build/images/ 2>/dev/null || true\r\n#56 5.666 \r\n"] -[15.409557, "o", "#56 5.778 \r\n#56 5.778 > star_wars@1.0.0 copy:fonts\r\n#56 5.778 > mkdir -p build/fonts && cp -r fonts/* build/fonts/ 2>/dev/null || true\r\n#56 5.778 \r\n#56 5.888 npm warn using --force Recommended protections disabled.\r\n"] -[15.942085, "o", "#56 DONE 6.2s\r\n\r\n#57 [cli 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"] -[16.697114, "o", "#58 exporting layers 0.9s done\r\n#58 writing image sha256:3c5179dfc29c535e66f78b176d67344de94ac216a0bef9da022a8b7e6f1849e4\r\n"] -[16.899013, "o", "#58 writing image sha256:3c5179dfc29c535e66f78b176d67344de94ac216a0bef9da022a8b7e6f1849e4 done\r\n#58 naming to docker.io/library/vortex_videos done\r\n#58 DONE 0.9s\r\n\r\n#59 [cli] resolving provenance for metadata file\r\n#59 DONE 0.0s\r\n"] -[21.439504, "o", "\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 2/5] RUN apk add --no-cache tzdata\r\n#61 CACHED\r\n\r\n#62 [nginx stage-1 4/5] RUN fix-permissions /etc/nginx\r\n#62 CACHED\r\n"] -[21.593473, "o", "\r\n#63 [php stage-1 2/3] RUN apk add --no-cache tzdata\r\n#63 CACHED\r\n\r\n#64 [php stage-1 3/3] COPY --from=cli /app /app\r\n"] -[24.511568, "o", "#64 ...\r\n\r\n#65 [nginx stage-1 5/5] COPY --from=cli /app /app\r\n#65 DONE 3.1s\r\n"] -[24.67141, "o", "\r\n#64 [php stage-1 3/3] COPY --from=cli /app /app\r\n#64 DONE 3.1s\r\n\r\n#66 [php] exporting to image\r\n#66 exporting layers\r\n"] -[27.118196, "o", "#66 exporting layers 2.5s done\r\n#66 writing image sha256:87e13a68fa19f38253d12c4a97c0296289f2b10cfc6a469441ea5b87120916fa done\r\n#66 naming to docker.io/library/vortex_videos-php done\r\n#66 DONE 2.5s\r\n\r\n#67 [nginx] exporting to image\r\n#67 exporting layers 2.5s done\r\n#67 writing image sha256:8bf713408cb97eaa6f2a2d5e3df26643ea39cf850e51e2ee1c6a3c4163e97bbc 0.0s done\r\n#67 naming to docker.io/library/vortex_videos-nginx done\r\n#67 DONE 2.5s\r\n\r\n#68 [nginx] resolving provenance for metadata file\r\n#68 DONE 0.0s\r\n\r\n#69 [php] resolving provenance for metadata file\r\n#69 DONE 0.0s\r\n"] -[27.219605, "o", "\u001b[?25l\u001b[0G[+] up 8/12\r\n"] -[27.21963, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[27.219651, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 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 \u001b[33m⠋\u001b[0m Container vortex_videos-redis-1 Creating \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-solr-1 Creating \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[27.319715, "o", "\u001b[?25l\u001b[13A\u001b[0G[+] up 10/12\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[27.319725, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[27.319727, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[27.319729, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[27.319732, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-clamav-1 Creating \u001b[34m 0.2s\u001b[0m\r\n"] -[27.319747, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-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[33m⠙\u001b[0m Container vortex_videos-solr-1 Creating \u001b[34m 0.2s\u001b[0m\r\n\u001b[?25h"] -[27.419754, "o", "\u001b[?25l\u001b[13A\u001b[0G[+] up 13/14\r\n"] -[27.419762, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[27.419764, "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"] -[27.419766, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[27.419767, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[27.419768, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[27.419769, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[27.419787, "o", " \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"] -[27.519538, "o", "\u001b[?25l\u001b[15A\u001b[0G"] -[27.519549, "o", "[+] up 13/14\r\n"] -[27.519596, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[27.519671, "o", "ortex_videos-database-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-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.1s\u001b[0m\r\n"] -[27.519673, "o", "\u001b[?25h"] -[27.619659, "o", "\u001b[?25l\u001b[15A\u001b[0G[+] up 14/17\r\n"] -[27.619674, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[27.619677, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[27.619679, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[27.619682, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[27.619747, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-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-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[27.619804, "o", "ortex_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.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"] -[27.720544, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[27.720551, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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.2s\u001b[0m\r\n"] -[27.720554, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-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"] -[27.720555, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[27.720558, "o", " \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.2s\u001b[0m\r\n"] -[27.720559, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-nginx-1 Creating \u001b[34m 0.2s\u001b[0m\r\n"] -[27.72056, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-chrome-1 Creating \u001b[34m 0.2s\u001b[0m\r\n"] -[27.720561, "o", "\u001b[?25h"] -[27.823862, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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.2s\u001b["] -[27.823971, "o", "0m\r\n"] -[27.823978, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[27.824028, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[27.824058, "o", " \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-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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-chrome-1 Creating \u001b[34m 0.3s\u001b[0m\r\n"] -[27.82406, "o", "\u001b[?25h"] -[27.91993, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[27.920142, "o", "m⠙\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[33m⠙\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[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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.020696, "o", "\u001b[?25l\u001b[18A\u001b[0G"] -[28.020938, "o", "[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.020946, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[28.020984, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-clamav-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[33m⠹\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[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"] -[28.021048, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[28.021072, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[28.021138, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.12052, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.120535, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.120542, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[28.120547, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.0s\u001b[0m\r\n"] -[28.120552, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 1.0s\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"] -[28.120559, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[28.120563, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.220583, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.220641, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.1s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 1.1s\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 "] -[28.220649, "o", " \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[28.220691, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.319823, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n"] -[28.319831, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.319834, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.319889, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.2s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 1.2s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.2s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1"] -[28.319896, "o", " \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[28.319948, "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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.430562, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.3s\u001b[0m\r\n \u001b[33"] -[28.430659, "o", "m⠦\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 1.3s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.3s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 1.3s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.521336, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n"] -[28.521347, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.521374, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.521376, "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[33m⠇\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 1.4s\u001b[0m\r\n"] -[28.521425, "o", " \u001b[33m⠧\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 1.4s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.4s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 1.4s\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.2s\u001b[0m\r\n"] -[28.521458, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.620535, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.620693, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.5s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 1.5s\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 "] -[28.620757, "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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.720548, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[28.720559, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_vid"] -[28.720623, "o", "eos-solr-1 Starting \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.82055, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[28.82056, "o", "0m\r\n"] -[28.82069, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 1.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[28.920567, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[28.92058, "o", "0m\r\n"] -[28.920676, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[28.920736, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[29.020583, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[29.020831, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[29.120381, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[29.120412, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[29.120415, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[29.120423, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[29.120434, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[29.219841, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[29.219849, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.21985, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.219851, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.219852, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.219853, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.219884, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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_vid"] -[29.219885, "o", "eos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[29.219887, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[29.219888, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[29.219902, "o", "\u001b[?25h"] -[29.321355, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[29.322, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[29.420744, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[29.420865, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[29.42087, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[29.420886, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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 \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[29.420898, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[29.519547, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.519554, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n"] -[29.519559, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[29.519569, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[29.519571, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[29.619877, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[29.619887, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.61989, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.619893, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[29.619914, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[29.619948, "o", "eos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[29.720587, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[29.7206, "o", "0m\r\n"] -[29.720666, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[29.819706, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[29.81972, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[29.819722, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.5s\u001b[0m\r\n"] -[29.819723, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[29.819724, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[29.819726, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[29.819727, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[29.819748, "o", "\u001b[?25h"] -[29.920505, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[29.920511, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.920513, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.920514, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.920515, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.920519, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[29.920521, "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 1.6s\u001b[0m\r\n"] -[29.920522, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[29.920523, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[29.920524, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[29.920555, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[30.020041, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.020054, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.020065, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[30.02007, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[30.020073, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[30.020076, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[30.020122, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[30.121022, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[30.121129, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[30.121174, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[30.223253, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[30.223268, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[30.32381, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[30.323945, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.32396, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[30.324004, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[30.324007, "o", "\u001b[?25h"] -[30.420501, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[30.420508, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.42051, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.420512, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[30.420513, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[30.420543, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[30.519795, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[30.519863, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[30.519878, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[30.519905, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[30.620605, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[30.620636, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.620641, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[30.620644, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[30.620647, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[30.620649, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[30.620694, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[30.720495, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[30.72051, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.720513, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.720515, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.720518, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.720539, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[30.723641, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[30.723701, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[30.819706, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[30.819717, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.5s\u001b[0m\r\n"] -[30.819734, "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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[30.819739, "o", "\u001b[?25h"] -[30.92067, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[30.920834, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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"] -[30.920838, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[30.92084, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[30.920896, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[31.020972, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.021023, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.02107, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.021225, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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_vid"] -[31.021282, "o", "eos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[31.120512, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.120522, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[31.120524, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[31.120526, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[31.120527, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[31.120528, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.8s\u001b[0m\r\n"] -[31.12053, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[31.120531, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[31.120532, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[31.120589, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[31.220512, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[31.220715, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.221101, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[31.221139, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[31.221306, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[31.320504, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[31.320511, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.320512, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.320513, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.320528, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[31.32053, "o", " \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"] -[31.320531, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[31.320532, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[31.320534, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[31.320553, "o", "\u001b[?25h"] -[31.420541, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[31.420548, "o", "0m\r\n"] -[31.42063, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[31.520475, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[31.520486, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.520488, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.52049, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.520492, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.520494, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.520496, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.520497, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[31.5205, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[31.520528, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[31.620524, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.620533, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[31.620536, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[31.62054, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[31.620542, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[31.620543, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[31.620567, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[31.720517, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[31.720526, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.720527, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[31.72054, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n"] -[31.720542, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[31.820385, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[31.820405, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.820407, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.820409, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[31.82041, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[31.820411, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[31.820443, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[31.920512, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[31.920518, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[31.920521, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[31.920523, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[31.920525, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[31.920527, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[31.92053, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[31.920548, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[32.020536, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[32.020543, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.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"] -[32.02061, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[32.120588, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[32.120597, "o", "0m\r\n"] -[32.120628, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[32.22056, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[32.220568, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[32.220571, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[32.220573, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[32.220597, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[32.220628, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[32.220669, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[32.319656, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[32.319712, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[32.319751, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[32.319756, "o", " \u001b[33m⠦\u001b[0m Container vortex_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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[32.319758, "o", "\u001b[?25h"] -[32.420507, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[32.420569, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[32.420663, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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"] -[32.420667, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[32.420755, "o", "\u001b[?25h"] -[32.520543, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[32.520552, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[32.520554, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[32.520555, "o", " \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.2s\u001b[0m\r\n"] -[32.520556, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[32.520564, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[32.61985, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[32.619905, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container v"] -[32.619946, "o", "ortex_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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[32.720826, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[32.720922, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[32.720999, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[32.820268, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[32.820281, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[32.820338, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[32.920516, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[32.920616, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[32.920663, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.020528, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[33.020537, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[33.020538, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[33.02054, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[33.020543, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[33.020545, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[33.020598, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.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_vid"] -[33.020645, "o", "eos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.121124, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[33.121307, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.219538, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[33.219547, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[33.21955, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[33.219551, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[33.219553, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[33.219555, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[33.219556, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[33.219586, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.320769, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[33.320855, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.425368, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[33.42538, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[33.425382, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[33.42544, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.519834, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[33.519843, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n"] -[33.519845, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[33.519847, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[33.519849, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[33.519869, "o", " \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 \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.620535, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[33.620545, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[33.620548, "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 1.6s\u001b[0m\r\n"] -[33.620551, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[33.620553, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[33.620555, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[33.620557, "o", " \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.3s\u001b[0m\r\n"] -[33.620584, "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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.720152, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[33.720247, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[33.720344, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.820829, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[33.820838, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[33.820843, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[33.820845, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[33.820889, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[33.920578, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[33.920591, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[33.920596, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[34.020496, "o", "\u001b[?25l\u001b[18A\u001b[0G"] -[34.020515, "o", "[+] up 16/17\r\n"] -[34.020548, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[34.020552, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[34.020565, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[34.020567, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[34.020568, "o", "\u001b[?25h"] -[34.120584, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.1206, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[34.120606, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[34.220467, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.220479, "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"] -[34.220481, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[34.220483, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[34.220522, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[34.320328, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.320339, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[34.320342, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.0s\u001b[0m\r\n"] -[34.320345, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[34.320363, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[34.420508, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.420517, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n"] -[34.420519, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[34.420521, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[34.420522, "o", " \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.1s\u001b[0m\r\n"] -[34.420523, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[34.420524, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[34.420526, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[34.420583, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[34.520508, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[34.520516, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.520517, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.520518, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.520519, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.52052, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.520546, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[34.520555, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[34.520558, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[34.520572, "o", "\u001b[?25h"] -[34.620518, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[34.620524, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.620526, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.620528, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[34.620529, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[34.620532, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[34.620534, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[34.620536, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[34.620552, "o", " \u001b[33m⠏\u001b[0m Container vortex_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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[34.719738, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.719747, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[34.719749, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[34.719752, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.4s\u001b[0m\r\n"] -[34.719754, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[34.719757, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[34.719759, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[34.719761, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[34.719777, "o", "\u001b[?25h"] -[34.820542, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.820554, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.5s\u001b[0m\r\n"] -[34.820556, "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.2s\u001b[0m\r\n"] -[34.820557, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[34.820559, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[34.920566, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[34.920576, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[34.920578, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[34.920579, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.6s\u001b[0m\r\n"] -[34.920581, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[34.920583, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[34.920586, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[34.920588, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[34.92059, "o", "\u001b[?25h"] -[35.020516, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[35.020524, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.020527, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.020529, "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"] -[35.020532, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[35.020535, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[35.020538, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[35.020555, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[35.120632, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[35.120725, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[35.120853, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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 \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[35.220499, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.220512, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.220514, "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"] -[35.220516, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[35.220517, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[35.220519, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[35.220537, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[35.320499, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[35.320515, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[35.320556, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[35.420559, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[35.420569, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.420571, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.420573, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.420574, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[35.420576, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[35.420577, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[35.420578, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[35.420617, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[35.520541, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[35.52056, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[35.520621, "o", "eos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[35.620513, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[35.620523, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.620526, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.620528, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[35.62053, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[35.620532, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[35.620535, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[35.620553, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[35.720482, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[35.720493, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.720515, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[35.720545, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.4s\u001b[0m\r\n"] -[35.720631, "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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[35.820519, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.820533, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n"] -[35.820535, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[35.820537, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[35.820539, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.5s\u001b[0m\r\n"] -[35.820541, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[35.820543, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[35.820544, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[35.820615, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[35.920409, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.920418, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[35.92044, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n"] -[35.920443, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[35.920446, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[35.920448, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[35.920472, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[36.019802, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[36.019866, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[36.01987, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[36.019894, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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 \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[36.120525, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[36.120536, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.120541, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.120544, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.120547, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[36.120551, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[36.120553, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[36.120645, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[36.219814, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.21982, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[36.219822, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[36.219823, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[36.219824, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[36.219826, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[36.219827, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[36.219828, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.9s\u001b[0m\r\n"] -[36.219829, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[36.21983, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[36.219832, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[36.219833, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[36.219834, "o", "\u001b[?25h"] -[36.320231, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[36.320242, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[36.320248, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[36.320251, "o", " \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.0s\u001b[0m\r\n"] -[36.320297, "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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[36.420527, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[36.420533, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.420535, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.42056, "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"] -[36.420563, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[36.420566, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[36.420569, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[36.420571, "o", " \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.1s\u001b[0m\r\n"] -[36.420575, "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.2s\u001b[0m\r\n"] -[36.420578, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[36.420582, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[36.520387, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[36.520393, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.520395, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.520396, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.520399, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.520441, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[36.52045, "o", "eos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[36.520452, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[36.520465, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[36.61955, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[36.619557, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.619561, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.619563, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.619564, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[36.619565, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[36.619582, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[36.720189, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.720199, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[36.720203, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.4s\u001b[0m\r\n"] -[36.720223, "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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[36.8205, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[36.820508, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.820509, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.820536, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[36.820539, "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"] -[36.820541, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[36.820544, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[36.820558, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[36.820589, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[36.919559, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[36.91962, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[36.919631, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[36.919662, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[36.919664, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[36.919691, "o", "\u001b[?25h"] -[37.020578, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.020598, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[37.020645, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[37.020648, "o", " \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"] -[37.02065, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[37.020652, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[37.020676, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[37.119676, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[37.119691, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.119695, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.119698, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.1197, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.119703, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[37.119707, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[37.11977, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[37.220492, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.220498, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[37.2205, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[37.220519, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[37.220521, "o", "\u001b[?25h"] -[37.320751, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[37.321214, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[37.420551, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[37.420688, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[37.51957, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.519597, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[37.519603, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[37.519606, "o", "\u001b[?25h"] -[37.620499, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[37.620513, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.620541, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.620544, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.620547, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.62056, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.620564, "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"] -[37.620566, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[37.620569, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[37.620571, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[37.620575, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[37.620599, "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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[37.620604, "o", "\u001b[?25h"] -[37.720504, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[37.720511, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.720513, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[37.720515, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[37.720516, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[37.720518, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[37.720519, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[37.720529, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[37.720529, "o", "\u001b[?25h"] -[37.819864, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.819876, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[37.819879, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[37.819882, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[37.819885, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.5s\u001b[0m\r\n"] -[37.819889, "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.2s\u001b[0m\r\n"] -[37.819891, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[37.819893, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[37.819913, "o", "\u001b[?25h"] -[37.920372, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[37.92038, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[37.920382, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[37.920385, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.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"] -[37.920389, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[37.920391, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[37.920394, "o", "\u001b[?25h"] -[38.020548, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[38.020578, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n"] -[38.020582, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[38.020587, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.7s\u001b[0m\r\n"] -[38.02059, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[38.020606, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[38.12051, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[38.12052, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.120523, "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"] -[38.120527, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[38.120529, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[38.120531, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[38.120581, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[38.220484, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[38.220489, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.220491, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.220492, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.220494, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.220502, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[38.220504, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.9s\u001b[0m\r\n"] -[38.220505, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[38.220506, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[38.220521, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[38.32015, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.320156, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.320158, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[38.320159, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[38.320195, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[38.420586, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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"] -[38.420597, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[38.420638, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[38.520584, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[38.520593, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.520596, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.520598, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[38.5206, "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 1.6s\u001b[0m\r\n"] -[38.520603, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[38.520605, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[38.520608, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[38.52061, "o", " \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.2s\u001b[0m\r\n"] -[38.520616, "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.2s\u001b[0m\r\n"] -[38.520618, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[38.52062, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[38.520621, "o", "\u001b[?25h"] -[38.61953, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[38.619537, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.619539, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.619541, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.619542, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.619543, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[38.619545, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[38.619546, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[38.619569, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[38.720537, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[38.720558, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[38.720572, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[38.720573, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[38.720574, "o", "\u001b[?25h"] -[38.820527, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[38.820538, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.820541, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[38.820543, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[38.820544, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[38.820546, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[38.820547, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[38.820549, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[38.820579, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[38.919643, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[38.919678, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[38.919685, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[38.919718, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[39.019726, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[39.01976, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[39.019769, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[39.019829, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[39.119612, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[39.119621, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[39.220488, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[39.220577, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[39.220603, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[39.220626, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[39.319711, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[39.319718, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[39.319721, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[39.319722, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[39.319723, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[39.319724, "o", " \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m12.0s\u001b[0m\r\n"] -[39.319726, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[39.319727, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[39.319728, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[39.319729, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[39.319731, "o", "\u001b[?25h"] -[39.420825, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[39.42095, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m12.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.2s\u001b[0m\r\n"] -[39.42107, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[39.520285, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[39.520297, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m12.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[39.520299, "o", "\u001b[?25h"] -[39.619821, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[39.619831, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[39.619835, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[39.619837, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[39.619839, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[39.619841, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[39.619845, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[39.619847, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[39.61985, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[39.619853, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[39.619855, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[39.619872, "o", " \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m12.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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[39.722081, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[39.722091, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[39.722143, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m12.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[39.722181, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[39.722258, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[39.819617, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[39.819624, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[39.819626, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[39.819628, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n"] -[39.819629, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m12.4s\u001b[0m\r\n"] -[39.819633, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[39.819634, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[39.819637, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[39.81964, "o", "\u001b[?25h"] -[39.919871, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[39.919878, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[39.919882, "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"] -[39.919885, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[39.919887, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[39.919889, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[39.919891, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[39.919893, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n"] -[39.91994, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m12.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[40.020379, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.02039, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[40.020393, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n"] -[40.020396, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m12.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] -[40.0204, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n"] -[40.020402, "o", "\u001b[?25h"] -[40.120515, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[40.120523, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.120525, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.120527, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.120564, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container v"] -[40.120585, "o", "ortex_videos-cli-1 Starting \u001b[34m12.7s\u001b[0m\r\n"] -[40.12061, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.3s\u001b[0m\r\n\u001b[?25h"] -[40.220521, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] -[40.22053, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.220532, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.220533, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.22057, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[40.220598, "o", "ortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.7s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.7s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.7s\u001b[0m\r\n\u001b[?25h"] -[40.320664, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[40.3208, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.8s\u001b[0m\r\n\u001b[?25h"] -[40.420578, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[40.420589, "o", "0m\r\n"] -[40.420592, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[40.420594, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[40.420622, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.9s\u001b[0m\r\n\u001b[?25h"] -[40.520573, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.52067, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.520675, "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"] -[40.520677, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[40.520678, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[40.520682, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[40.520683, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[40.520687, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n"] -[40.520735, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m13.0s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m13.0s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m13.0s\u001b[0m\r\n\u001b[?25h"] -[40.620217, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] -[40.620257, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[40.620317, "o", "ortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m13.1s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m13.1s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m13.1s\u001b[0m\r\n\u001b[?25h"] -[40.720667, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] -[40.720674, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.720676, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.720678, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.72068, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[40.720704, "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 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[40.720717, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[40.720735, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m13.2s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m13.2s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m13.2s\u001b[0m\r\n\u001b[?25h"] -[40.820965, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[40.821305, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m13.3s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m13.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m13.2s\u001b[0m\r\n\u001b[?25h"] -[40.920545, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\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 1.6s\u001b["] -[40.920554, "o", "0m\r\n"] -[40.920558, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[40.920571, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m13.3s\u001b[0m\r\n"] -[40.920573, "o", " \u001b[33m⠏\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m13.4s\u001b[0m\r\n"] -[40.920574, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m13.2s\u001b[0m\r\n"] -[40.920575, "o", "\u001b[?25h"] -[41.015916, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 17/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[41.015922, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m20.3s\u001b[0m\r\n"] -[41.015925, "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"] -[41.015927, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] -[41.015928, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.5s\u001b[0m\r\n"] -[41.015929, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.6s\u001b[0m\r\n"] -[41.015931, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n"] -[41.015951, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m13.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mStarted\u001b[0m \u001b[34m13.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m13.2s\u001b[0m\r\n\u001b[?25h"] -[41.760308, "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"] -[41.760453, "o", "\u001b[32mLoading composer repositories with package information\u001b[39m\r\n"] -[52.714219, "o", "\u001b[32mUpdating dependencies\u001b[39m\r\n"] -[52.997416, "o", "\u001b[32mLock file operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n"] -[52.997878, "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"] -[52.997999, "o", " - Locking \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n - 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"] -[52.998047, "o", " - 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"] -[52.998201, "o", " - 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"] -[52.99831, "o", " - 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"] -[52.998403, "o", " - 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"] -[52.998535, "o", " - Locking \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n"] -[52.998749, "o", " - 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 - 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"] -[52.998876, "o", " - 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 - Locking \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n"] -[52.999434, "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 - 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"] -[52.999468, "o", "[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 - Lockin"] -[52.999474, "o", "g \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n"] -[52.999496, "o", " - 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"] -[52.99959, "o", " - 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"] -[53.00035, "o", " - 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"] -[53.000392, "o", "\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 - Lock"] -[53.000435, "o", "ing \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"] -[53.001595, "o", " - 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 - 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 - Lockin"] -[53.001624, "o", "g \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 "] -[53.001628, "o", "- 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"] -[53.001648, "o", " - 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"] -[53.001769, "o", " - 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"] -[53.001924, "o", " - 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 - Locking \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n - Locking \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n"] -[53.002071, "o", " - 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"] -[53.002166, "o", " - Locking \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n"] -[53.002227, "o", " - 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"] -[53.002306, "o", " - Locking \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n"] -[53.002354, "o", " - 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"] -[53.002447, "o", " - 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"] -[53.002551, "o", " - 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"] -[53.014289, "o", "\u001b[32mWriting lock file\u001b[39m\r\n\u001b[32mInstalling dependencies from lock file (including require-dev)\u001b[39m\r\n"] -[53.019456, "o", "\u001b[32mPackage operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n"] -[53.031801, "o", " - Installing \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[53.101431, "o", " - Installing \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[53.186184, "o", " - Downloading \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n"] -[53.187115, "o", " - Downloading \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n"] -[53.188448, "o", " - Downloading \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n"] -[53.197945, "o", " - Downloading \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n"] -[53.198983, "o", " - Downloading \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n"] -[53.200466, "o", " - Downloading \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n"] -[53.201495, "o", " - Downloading \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n"] -[53.202266, "o", " - Downloading \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n"] -[53.202918, "o", " - Downloading \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n"] -[53.203573, "o", " - Downloading \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n"] -[53.204832, "o", " - Downloading \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n"] -[53.205498, "o", " - Downloading \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n"] -[53.208903, "o", " - Downloading \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n"] -[53.210472, "o", " - Downloading \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n"] -[53.252989, "o", " - Downloading \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[53.253672, "o", " - Downloading \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n"] -[53.254102, "o", " - Downloading \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n"] -[53.254536, "o", " - Downloading \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n"] -[53.255689, "o", " - Downloading \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n"] -[53.278398, "o", " - Downloading \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] -[53.287956, "o", " - Downloading \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] -[53.294245, "o", " - Downloading \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n - Downloading \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n - Downloading \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n"] -[53.296649, "o", " - Downloading \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n"] -[53.297268, "o", " - Downloading \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] -[53.297749, "o", " - Downloading \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n"] -[53.298245, "o", " - Downloading \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n"] -[53.29994, "o", " - Downloading \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n"] -[53.302081, "o", " - Downloading \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n - Downloading \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n - Downloading \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n"] -[53.505349, "o", " - Downloading \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n"] -[53.506346, "o", " - Downloading \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n"] -[53.507164, "o", " - Downloading \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n"] -[53.507717, "o", " - Downloading \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n"] -[53.527309, "o", " - Downloading \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n"] -[53.528126, "o", " - Downloading \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n"] -[53.528578, "o", " - Downloading \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n"] -[53.529075, "o", " - Downloading \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n"] -[53.529516, "o", " - Downloading \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n"] -[53.530096, "o", " - Downloading \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n"] -[53.53064, "o", " - Downloading \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n"] -[53.737764, "o", " - Downloading \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n - Downloading \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n - Downloading \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n - Downloading \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n - Downloading \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n - Downloading \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n"] -[53.737943, "o", " - Downloading \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n"] -[53.738982, "o", " - Downloading \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n"] -[53.739978, "o", " - Downloading \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n"] -[53.740376, "o", " - Downloading \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[53.740771, "o", " - Downloading \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n"] -[53.741544, "o", " - Downloading \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n"] -[53.742917, "o", " - Downloading \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n"] -[53.743327, "o", " - Downloading \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n"] -[53.743852, "o", " - Downloading \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n"] -[53.744241, "o", " - Downloading \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[53.744616, "o", " - Downloading \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n"] -[53.745038, "o", " - Downloading \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n"] -[53.745506, "o", " - Downloading \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n"] -[53.74592, "o", " - Downloading \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n"] -[53.746337, "o", " - Downloading \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n"] -[53.746704, "o", " - Downloading \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] -[53.747075, "o", " - Downloading \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n"] -[53.747891, "o", " - Downloading \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n"] -[53.748493, "o", " - Downloading \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[53.748976, "o", " - Downloading \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n"] -[53.749439, "o", " - Downloading \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n"] -[53.750179, "o", " - Downloading \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n"] -[53.75087, "o", " - Downloading \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n"] -[53.75155, "o", " - Downloading \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[53.752007, "o", " - Downloading \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[53.752442, "o", " - Downloading \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n"] -[53.753039, "o", " - Downloading \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n"] -[53.753487, "o", " - Downloading \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n"] -[53.754212, "o", " - Downloading \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n"] -[53.755012, "o", " - Downloading \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n"] -[53.756001, "o", " - Downloading \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n"] -[53.756619, "o", " - Downloading \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n"] -[53.757873, "o", " - Downloading \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m)\r\n"] -[53.759277, "o", " - Downloading \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n"] -[53.76524, "o", " 0/83 [>---------------------------] 0%"] -[54.72533, "o", "\u001b[1G\u001b[2K 10/83 [===>------------------------] 12%"] -[55.468522, "o", "\u001b[1G\u001b[2K 21/83 [=======>--------------------] 25%"] -[55.932995, "o", "\u001b[1G\u001b[2K 25/83 [========>-------------------] 30%"] -[56.372829, "o", "\u001b[1G\u001b[2K 34/83 [===========>----------------] 40%"] -[56.865948, "o", "\u001b[1G\u001b[2K 43/83 [==============>-------------] 51%"] -[57.540952, "o", "\u001b[1G\u001b[2K 53/83 [=================>----------] 63%"] -[57.916316, "o", "\u001b[1G\u001b[2K 59/83 [===================>--------] 71%"] -[58.274468, "o", "\u001b[1G\u001b[2K 67/83 [======================>-----] 80%"] -[58.730667, "o", "\u001b[1G\u001b[2K 77/83 [=========================>--] 92%"] -[59.192245, "o", "\u001b[1G\u001b[2K 83/83 [============================] 100%\u001b[1G\u001b[2K"] -[59.193175, "o", "\u001b[30;43mpatches.lock.json does not exist. Creating a new patches.lock.json.\u001b[39;49m\r\n"] -[59.198987, "o", " - \u001b[32mResolving patches from dependencies.\u001b[39m\r\n"] -[59.200614, "o", " - Installing \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] -[59.312919, "o", " - Installing \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] -[59.496154, "o", " - Installing \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] -[59.542572, "o", " - Installing \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m): Extracting archive\r\n"] -[59.657115, "o", " - Installing \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] -[60.145912, "o", " - Installing \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m): Extracting archive\r\n"] -[60.166197, "o", " - Installing \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m): Extracting archive\r\n"] -[60.167249, "o", " - Installing \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m): Extracting archive\r\n"] -[60.168894, "o", " - Installing \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m): Extracting archive\r\n"] -[60.170387, "o", " - Installing \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m): Extracting archive\r\n"] -[60.172046, "o", " - Installing \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m): Extracting archive\r\n"] -[60.174054, "o", " - Installing \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] -[60.176631, "o", " - Installing \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m): Extracting archive\r\n"] -[60.179476, "o", " - Installing \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m): Extracting archive\r\n"] -[60.18189, "o", " 0/8 [>---------------------------] 0%"] -[60.283823, "o", "\u001b[1G\u001b[2K 7/8 [========================>---] 87%"] -[60.353351, "o", "\u001b[1G\u001b[2K 8/8 [============================] 100%\u001b[1G\u001b[2K"] -[60.353811, "o", " - Installing \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m): Extracting archive\r\n"] -[60.389438, "o", " - Installing \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m): Extracting archive\r\n"] -[60.895868, "o", " - Installing \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m): Extracting archive\r\n"] -[60.920466, "o", " - Installing \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] -[60.921521, "o", " - Installing \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m): Extracting archive\r\n"] -[60.922805, "o", " - Installing \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m): Extracting archive\r\n"] -[60.924085, "o", " - Installing \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] -[60.926813, "o", " - Installing \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m): Extracting archive\r\n"] -[60.928751, "o", " - Installing \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m): Extracting archive\r\n"] -[60.931694, "o", " - Installing \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[60.934819, "o", " - Installing \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] -[60.938516, "o", " - Installing \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[60.941456, "o", " - Installing \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[60.946786, "o", " - Installing \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] -[60.949548, "o", " - Installing \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[60.953968, "o", " - Installing \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[60.956711, "o", " - Installing \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m): Extracting archive\r\n"] -[60.959803, "o", " - Installing \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] -[60.962568, "o", " - Installing \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[60.964937, "o", " - Installing \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[60.968601, "o", " - Installing \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m): Extracting archive\r\n"] -[60.971106, "o", " - Installing \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m): Extracting archive\r\n"] -[60.974013, "o", " - Installing \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m): Extracting archive\r\n"] -[60.976867, "o", " - Installing \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] -[60.978655, "o", " - Installing \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m): Extracting archive\r\n"] -[60.980883, "o", " - Installing \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] -[60.983069, "o", " - Installing \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m): Extracting archive\r\n"] -[60.985755, "o", " - Installing \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] -[60.987485, "o", " - Installing \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[60.989465, "o", " - Installing \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[60.991137, "o", " - Installing \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[60.993408, "o", " - Installing \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] -[60.994958, "o", " - Installing \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[60.996062, "o", " - Installing \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[60.99773, "o", " - Installing \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[60.998786, "o", " - Installing \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[61.000137, "o", " - Installing \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[61.00235, "o", " - Installing \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m): Extracting archive\r\n"] -[61.003389, "o", " - Installing \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m): Extracting archive\r\n"] -[61.00534, "o", " - Installing \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m): Extracting archive\r\n"] -[61.006693, "o", " - Installing \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m): Extracting archive\r\n"] -[61.00874, "o", " - Installing \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[61.010837, "o", " - Installing \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[61.01186, "o", " - Installing \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[61.013436, "o", " - Installing \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m): Extracting archive\r\n"] -[61.014925, "o", " - Installing \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m): Extracting archive\r\n"] -[61.017515, "o", " - Installing \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m): Extracting archive\r\n"] -[61.018996, "o", " - Installing \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m): Extracting archive\r\n"] -[61.020072, "o", " - Installing \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m): Extracting archive\r\n"] -[61.020994, "o", " - Installing \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] -[61.021894, "o", " - Installing \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m): Extracting archive\r\n"] -[61.023367, "o", " - Installing \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] -[61.024661, "o", " - Installing \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] -[61.026661, "o", " - Installing \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[61.027627, "o", " - Installing \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] -[61.028534, "o", " - Installing \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[61.029857, "o", " - Installing \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] -[61.031208, "o", " - Installing \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[61.03263, "o", " - Installing \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[61.033963, "o", " - Installing \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[61.035937, "o", " - Installing \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m): Extracting archive\r\n"] -[61.037369, "o", " - Installing \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m): Extracting archive\r\n"] -[61.038848, "o", " - Installing \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m): Extracting archive\r\n"] -[61.040313, "o", " - Installing \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[61.041242, "o", " - Installing \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[61.043087, "o", " - Installing \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] -[61.044328, "o", " - Installing \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] -[61.045651, "o", " - Installing \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[61.046732, "o", " - Installing \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[61.047791, "o", " - Installing \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[61.049703, "o", " - Installing \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[61.051137, "o", " - Installing \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m): Extracting archive\r\n"] -[61.052318, "o", " - Installing \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m): Extracting archive\r\n"] -[61.053568, "o", " - Installing \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m): Extracting archive\r\n"] -[61.054755, "o", " - Installing \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m): Extracting archive\r\n"] -[61.056003, "o", " - Installing \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m): Extracting archive\r\n"] -[61.057143, "o", " - Installing \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m): Extracting archive\r\n"] -[61.058376, "o", " - Installing \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m): Extracting archive\r\n"] -[61.0605, "o", " - Installing \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m): Extracting archive\r\n"] -[61.061521, "o", " - Installing \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m): Extracting archive\r\n"] -[61.062676, "o", " - Installing \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] -[61.064341, "o", " - Installing \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] -[61.065496, "o", " - Installing \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m): Extracting archive\r\n"] -[61.066497, "o", " - Installing \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m): Extracting archive\r\n"] -[61.068342, "o", " - Installing \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] -[61.069579, "o", " - Installing \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m): Extracting archive\r\n"] -[61.07078, "o", " - Installing \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m): Extracting archive\r\n"] -[61.072132, "o", " - Installing \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m): Extracting archive\r\n"] -[61.073275, "o", " - Installing \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m): Extracting archive\r\n"] -[61.076973, "o", " - Installing \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] -[61.078707, "o", " - Installing \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] -[61.080818, "o", " - Installing \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m): Extracting archive\r\n"] -[61.081535, "o", " - Installing \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m): Extracting archive\r\n"] -[61.082302, "o", " - Installing \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m): Extracting archive\r\n"] -[61.083501, "o", " - Installing \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m): Extracting archive\r\n"] -[61.085298, "o", " - Installing \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m): Extracting archive\r\n"] -[61.086793, "o", " - Installing \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] -[61.088341, "o", " - Installing \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m): Extracting archive\r\n"] -[61.089807, "o", " - Installing \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n"] -[61.09306, "o", " - Installing \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m): Extracting archive\r\n"] -[61.094309, "o", " - Installing \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m): Extracting archive\r\n"] -[61.095716, "o", " - Installing \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] -[61.096465, "o", " - Installing \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m): Extracting archive\r\n"] -[61.09742, "o", " - Installing \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m): Extracting archive\r\n"] -[61.09824, "o", " - Installing \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m): Extracting archive\r\n"] -[61.09911, "o", " - Installing \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m): Extracting archive\r\n"] -[61.099818, "o", " - Installing \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m): Extracting archive\r\n"] -[61.100919, "o", " - Installing \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] -[61.102124, "o", " - Installing \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m): Extracting archive\r\n"] -[61.103402, "o", " - Installing \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] -[61.104601, "o", " - Installing \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m): Extracting archive\r\n"] -[61.106784, "o", " - Installing \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] -[61.108408, "o", " - Installing \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m): Extracting archive\r\n"] -[61.110578, "o", " - Installing \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m): Extracting archive\r\n"] -[61.112525, "o", " - Installing \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m): Extracting archive\r\n"] -[61.113798, "o", " - Installing \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m): Extracting archive\r\n"] -[61.115172, "o", " - Installing \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m): Extracting archive\r\n"] -[61.117539, "o", " - Installing \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m): Extracting archive\r\n"] -[61.119706, "o", " - Installing \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m): Extracting archive\r\n"] -[61.121689, "o", " - Installing \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] -[61.123267, "o", " - Installing \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] -[61.125295, "o", " - Installing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m): Extracting archive\r\n"] -[61.127201, "o", " - Installing \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m): Extracting archive\r\n"] -[61.127973, "o", " - Installing \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m): Extracting archive\r\n"] -[61.12909, "o", " - Installing \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m): Extracting archive\r\n"] -[61.130608, "o", " - Installing \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m): Extracting archive\r\n"] -[61.132748, "o", " - Installing \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m): Extracting archive\r\n"] -[61.133929, "o", " - Installing \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m): Extracting archive\r\n"] -[61.134804, "o", " - Installing \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m): Extracting archive\r\n"] -[61.135846, "o", " - Installing \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m): Extracting archive\r\n"] -[61.137193, "o", " - Installing \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] -[61.138304, "o", " - Installing \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m): Extracting archive\r\n"] -[61.139746, "o", " - Installing \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m): Extracting archive\r\n"] -[61.14235, "o", " - Installing \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m): Extracting archive\r\n"] -[61.143523, "o", " - Installing \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[61.144795, "o", " - Installing \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m): Extracting archive\r\n"] -[61.146424, "o", " - Installing \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m): Extracting archive\r\n"] -[61.148774, "o", " - Installing \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m): Extracting archive\r\n"] -[61.150806, "o", " - Installing \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] -[61.15215, "o", " - Installing \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] -[61.153728, "o", " - Installing \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] -[61.15588, "o", " - Installing \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m): Extracting archive\r\n"] -[61.156758, "o", " - Installing \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m): Extracting archive\r\n"] -[61.1576, "o", " - Installing \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] -[61.158394, "o", " - Installing \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] -[61.159424, "o", " - Installing \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] -[61.160459, "o", " - Installing \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m): Extracting archive\r\n"] -[61.161291, "o", " - Installing \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] -[61.162083, "o", " - Installing \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] -[61.163459, "o", " - Installing \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] -[61.164757, "o", " - Installing \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m): Extracting archive\r\n"] -[61.165738, "o", " - Installing \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m): Extracting archive\r\n"] -[61.167163, "o", " - Installing \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m): Extracting archive\r\n"] -[61.168097, "o", " - Installing \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m): Extracting archive\r\n"] -[61.1692, "o", " - Installing \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m): Extracting archive\r\n"] -[61.170183, "o", " - Installing \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m): Extracting archive\r\n"] -[61.171863, "o", " - Installing \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m): Extracting archive\r\n"] -[61.173002, "o", " - Installing \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m): Extracting archive\r\n"] -[61.174058, "o", " - Installing \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m): Extracting archive\r\n"] -[61.175585, "o", " - Installing \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m): Extracting archive\r\n"] -[61.176389, "o", " - Installing \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[61.17729, "o", " - Installing \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] -[61.178048, "o", " - Installing \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m): Extracting archive\r\n"] -[61.178797, "o", " - Installing \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m): Extracting archive\r\n"] -[61.179579, "o", " - Installing \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m): Extracting archive\r\n"] -[61.181448, "o", " - Installing \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] -[61.182439, "o", " - Installing \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[61.183392, "o", " - Installing \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m): Extracting archive\r\n"] -[61.1844, "o", " - Installing \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m): Extracting archive\r\n"] -[61.185705, "o", " - Installing \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m): Extracting archive\r\n"] -[61.186537, "o", " - Installing \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m): Extracting archive\r\n"] -[61.187329, "o", " - Installing \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m): Extracting archive\r\n"] -[61.188069, "o", " - Installing \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] -[61.189883, "o", " - Installing \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] -[61.190686, "o", " - Installing \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m): Extracting archive\r\n"] -[61.191454, "o", " - Installing \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[61.192257, "o", " - Installing \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m): Extracting archive\r\n"] -[61.193055, "o", " - Installing \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] -[61.194036, "o", " - Installing \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] -[61.194923, "o", " - Installing \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] -[61.196614, "o", " - Installing \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[61.198188, "o", " - Installing \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[61.199318, "o", " - Installing \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m): Extracting archive\r\n"] -[61.200191, "o", " - Installing \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] -[61.201132, "o", " - Installing \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m): Extracting archive\r\n"] -[61.202011, "o", " - Installing \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m): Extracting archive\r\n"] -[61.203008, "o", " - Installing \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m): Extracting archive\r\n"] -[61.203987, "o", " - Installing \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m): Extracting archive\r\n"] -[61.205416, "o", " - Installing \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m): Extracting archive\r\n"] -[61.20647, "o", " - Installing \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m): Extracting archive\r\n"] -[61.207469, "o", " - Installing \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m): Extracting archive\r\n"] -[61.232112, "o", " 0/187 [>---------------------------] 0%"] -[61.659371, "o", "\u001b[1G\u001b[2K 22/187 [===>------------------------] 11%"] -[62.248092, "o", "\u001b[1G\u001b[2K 41/187 [======>---------------------] 21%"] -[62.879434, "o", "\u001b[1G\u001b[2K 58/187 [========>-------------------] 31%"] -[63.453124, "o", "\u001b[1G"] -[63.453158, "o", "\u001b[2K 75/187 [===========>----------------] 40%"] -[64.225999, "o", "\u001b[1G\u001b[2K 96/187 [==============>-------------] 51%"] -[65.031594, "o", "\u001b[1G\u001b[2K 114/187 [=================>----------] 60%"] -[66.016732, "o", "\u001b[1G"] -[66.016861, "o", "\u001b[2K 132/187 [===================>--------] 70%"] -[67.055609, "o", "\u001b[1G\u001b[2K 143/187 [=====================>------] 76%"] -[67.93756, "o", "\u001b[1G\u001b[2K 151/187 [======================>-----] 80%"] -[68.560536, "o", "\u001b[1G\u001b[2K 169/187 [=========================>--] 90%"] -[69.647597, "o", "\u001b[1G\u001b[2K 183/187 [===========================>] 97%"] -[71.452208, "o", "\u001b[1G\u001b[2K 184/187 [===========================>] 98%"] -[72.467917, "o", "\u001b[1G\u001b[2K 185/187 [===========================>] 98%"] -[75.36835, "o", "\u001b[1G\u001b[2K 186/187 [===========================>] 99%"] -[93.108498, "o", "\u001b[1G\u001b[2K 187/187 [============================] 100%\u001b[1G\u001b[2K"] -[93.7435, "o", "\u001b[32m27 package suggestions were added by new dependencies, use `composer suggest` to see details.\u001b[39m\r\n"] -[93.753603, "o", "\u001b[32mGenerating autoload files\u001b[39m\r\n"] -[94.766441, "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"] -[94.773488, "o", "Scaffolding files for \u001b[33mdrupal/core\u001b[39m:\r\n - Skip \u001b[32m[web-root]/.htaccess\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n"] -[94.773823, "o", " - Skip \u001b[32m[web-root]/README.md\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.csslintrc\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/robots.txt\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n"] -[94.773878, "o", " - Skip \u001b[32m[web-root]/update.php\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/INSTALL.txt\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n"] -[94.774065, "o", " - Skip \u001b[32m[web-root]/.eslintignore\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.eslintrc.json\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.ht.router.php\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n"] -[94.774781, "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[33mrebellion/star_wars\u001b[39m\r\n"] -[94.774838, "o", " - Skip \u001b[32m[web-root]/example.gitignore\u001b[39m: overridden in \u001b[33mrebellion/star_wars\u001b[39m\r\n"] -[94.775767, "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[33mrebellion/star_wars\u001b[39m\r\n"] -[94.776562, "o", " - Copy \u001b[32m[web-root]/modules/README.txt\u001b[39m from \u001b[32massets/scaffold/files/modules.README.txt\u001b[39m\r\n"] -[94.777358, "o", " - Copy \u001b[32m[web-root]/profiles/README.txt\u001b[39m from \u001b[32massets/scaffold/files/profiles.README.txt\u001b[39m\r\n"] -[94.778054, "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[33mrebellion/star_wars\u001b[39m\r\n"] -[94.778686, "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[33mrebellion/star_wars\u001b[39m\r\n"] -[95.175099, "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"] -[95.17716, "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"] -[95.184561, "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"] -[95.184568, "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"] -[95.184584, "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"] -[95.184599, "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"] -[95.184613, "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"] -[95.184625, "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"] -[95.184631, "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"] -[95.184646, "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"] -[95.184678, "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.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"] -[95.184715, "o", "\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."] -[95.184732, "o", "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: htt"] -[95.184744, "o", "ps://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 v"] -[95.184769, "o", "ersion \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."] -[95.184795, "o", "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"] -[95.184822, "o", "/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"] -[95.18485, "o", "/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[32"] -[95.18488, "o", "mdrupal/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://github.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.co"] -[95.184896, "o", "m/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[32mdru"] -[95.184922, "o", "pal/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/lam"] -[95.184938, "o", "inas-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[32m"] -[95.184951, "o", "drupal/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.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[32mco"] -[95.184957, "o", "nsolidation/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.c"] -[95.18497, "o", "om/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."] -[95.18498, "o", "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[3"] -[95.185006, "o", "9m 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"] -[95.185032, "o", "\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/seba"] -[95.185056, "o", "stianbergmann/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[32mseba"] -[95.185088, "o", "stian/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.1"] -[95.185099, "o", "4.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"] -[97.458113, "o", "npm warn deprecated whatwg-encoding@2.0.0: Use @exodus/bytes instead for a more spec-conformant and faster implementation\r\n"] -[97.877881, "o", "npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] -[98.334483, "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"] -[98.540191, "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"] -[98.828766, "o", "npm warn deprecated abab@2.0.6: Use your platform's native atob() and btoa() methods instead\r\n"] -[98.930432, "o", "npm warn deprecated domexception@4.0.0: Use your platform's native DOMException instead\r\n"] -[99.065535, "o", "npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] -[99.094451, "o", "npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] -[102.699832, "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"] -[103.960246, "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 8s\r\n\r\n171 packages are looking for funding\r\n run `npm fund` for details\r\n"] -[103.961087, "o", "\r\nfound 0 vulnerabilities\r\n"] -[106.042546, "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"] -[106.235349, "o", "npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] -[106.252248, "o", "npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] -[106.423759, "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"] -[106.637771, "o", "npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] -[106.693049, "o", "npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported\r\n"] -[109.568224, "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"] -[111.220611, "o", "\r\n> star_wars@1.0.0 postinstall\r\n> patch-package\r\n\r\n"] -[111.459428, "o", "patch-package 6.5.1\r\n"] -[111.459774, "o", "Applying patches...\r\n"] -[111.4609, "o", "No patch files found\r\n"] -[111.48136, "o", "\r\nadded 475 packages, and audited 476 packages in 7s\r\n\r\n169 packages are looking for funding\r\n run `npm fund` for details\r\n"] -[111.483889, "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"] -[111.807922, "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"] -[111.907028, "o", "\r\n> star_wars@1.0.0 clean\r\n> rm -rf build\r\n\r\n"] -[112.0159, "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"] -[112.128548, "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"] -[112.334016, "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"] -[112.693828, "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"] -[113.301094, "o", "\r\n> star_wars@1.0.0 copy\r\n> npm run copy:images && npm run copy:fonts\r\n\r\n"] -[113.400903, "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"] -[113.514165, "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"] -[113.769989, "o", "\u001b[36m[INFO] Started site provisioning.\u001b[0m\r\n"] -[114.966857, "o", "\r\n Drupal core version : 11.4.5\r\n Drush version : 13.7.6.0\r\n\r\n"] -[114.966949, "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"] -[114.967322, "o", " Temporary files path : /tmp\r\n Config files path : /app/config/default\r\n"] -[114.967985, "o", " DB dump file path : /app/.data/db.sql (present)\r\n\r\n Profile : standard\r\n"] -[114.968238, "o", " Configuration files present : No\r\n"] -[114.968668, "o", " Existing site found : No\r\n\r\n Provision type : database\r\n"] -[114.968965, "o", " Fallback to profile : No\r\n"] -[114.969328, "o", " Overwrite existing DB : Yes\r\n"] -[114.969726, "o", " Skip DB sanitization : No\r\n"] -[114.970305, "o", " Skip post-provision operations : No\r\n"] -[114.970997, "o", " Verify config after update : No\r\n"] -[114.97231, "o", " Use maintenance mode : Yes\r\n\r\n"] -[114.97327, "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 not found.\r\n Fresh site content will be imported from the database dump file.\r\n"] -[114.986667, "o", "\u001b[36m[INFO] Started database file import.\u001b[0m\r\n"] -[115.255126, "o", "\r\n"] -[115.26065, "o", " // Do you really want to drop all tables in the database drupal?: yes. \r\n\r\n"] -[116.519148, "o", " Imported database from the dump file.\r\n"] -[116.519699, "o", "\u001b[32m[ OK ] Finished database file import.\u001b[0m\r\n"] -[116.520078, "o", "\r\n"] -[121.534596, "o", "\u001b[36m[INFO] Current Drupal environment: local\u001b[0m\r\n\r\n"] -[121.536942, "o", "\u001b[34m[TASK] Enabling maintenance mode.\u001b[0m\r\n"] -[122.183234, "o", "\u001b[32m[ OK ] Enabled maintenance mode. (1s)\u001b[0m\r\n\r\n"] -[122.18539, "o", "\u001b[34m[TASK] Running database updates.\u001b[0m\r\n"] -[126.044223, "o", " [success] No pending updates.\r\n"] -[126.05923, "o", "\u001b[32m[ OK ] Completed running database updates. (4s)\u001b[0m\r\n\r\n"] -[126.061172, "o", "\u001b[34m[TASK] Clearing cache after database updates.\u001b[0m\r\n"] -[128.461379, "o", " [success] Cache rebuild complete.\r\n"] -[128.471882, "o", "\u001b[32m[ OK ] Cache was cleared. (2s)\u001b[0m\r\n\r\n"] -[128.4737, "o", "\u001b[34m[TASK] Rebuilding cache.\u001b[0m\r\n"] -[130.394664, "o", " [success] Cache rebuild complete.\r\n"] -[130.405258, "o", "\u001b[32m[ OK ] Cache was rebuilt. (2s)\u001b[0m\r\n\r\n"] -[130.406918, "o", "\u001b[34m[TASK] Running deployment hooks.\u001b[0m\r\n"] -[131.129763, "o", " [success] No pending deploy hooks.\r\n"] -[131.151259, "o", "\u001b[32m[ OK ] Completed deployment hooks. (1s)\u001b[0m\r\n\r\n"] -[131.165358, "o", "\u001b[36m[INFO] Sanitizing database.\u001b[0m\r\n"] -[131.592966, "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"] -[131.593445, "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"] -[131.595716, "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"] -[131.600496, "o", " // Do you want to sanitize the current database?: yes. \r\n\r\n"] -[131.889429, "o", " [success] User passwords sanitized.\r\n [success] User emails sanitized.\r\n"] -[131.936757, "o", "\u001b[32m[ OK ] Sanitized database using drush sql:sanitize.\u001b[0m\r\n"] -[132.223525, "o", "\r\n"] -[132.233244, "o", "\u001b[32m[ OK ] Applied custom sanitization commands from file.\u001b[0m\r\n"] -[132.547318, "o", "\r\n"] -[132.86038, "o", "\r\n"] -[132.870331, "o", "\u001b[32m[ OK ] Reset user 0 username and email.\u001b[0m\r\n\r\n"] -[132.872716, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\".\u001b[0m\r\n\r\n"] -[132.879869, "o", " ==> Started demo modules operations.\r\n"] -[133.324861, "o", " Environment: local\r\n"] -[133.325856, "o", " > Creating the content model.\r\n"] -[133.854549, "o", "0/2 [░░░░░░░░░░░░░░░░░░░░░░░░░░░░]\r\nApplying recipe\r\n"] -[133.861071, "o", "\r\n2/2 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]\r\nApplied Basic page recipe.\r\n\r\n"] -[133.861477, "o", " [OK] Basic page applied successfully \r\n\r\n"] -[133.866032, "o", " < Created the content model.\r\n > Setting site name.\r\n"] -[134.650617, "o", " < Set site name.\r\n > Setting up the administration navigation.\r\n"] -[135.285609, "o", " [notice] Already installed: navigation\r\n"] -[135.737999, "o", " < Set up the administration navigation.\r\n > Installing contrib modules.\r\n"] -[136.348288, "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"] -[136.349966, "o", "\r\n"] -[136.353069, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[141.799136, "o", " [success] Module coffee has been installed. (Permissions - Configure)\r\n"] -[141.802292, "o", " [success] Module config_split has been installed. (Permissions - Configure)\r\n"] -[141.805814, "o", " [success] Module config_update has been installed.\r\n"] -[141.809314, "o", " [success] Module media has been installed. (Permissions - Configure)\r\n"] -[141.8125, "o", " [success] Module environment_indicator has been installed. (Permissions - Configure)\r\n"] -[141.815526, "o", " [success] Module navigation_extra_tools has been installed. (Permissions)\r\n"] -[141.81851, "o", " [success] Module pathauto has been installed. (Permissions - Configure)\r\n"] -[141.821225, "o", " [success] Module redirect has been installed. (Permissions - Configure)\r\n"] -[141.824189, "o", " [success] Module reroute_email has been installed. (Permissions - Configure)\r\n"] -[141.826902, "o", " [success] Module robotstxt has been installed. (Permissions - Configure)\r\n"] -[141.830037, "o", " [success] Module shield has been installed. (Permissions - Configure)\r\n"] -[141.834115, "o", " [success] Module stage_file_proxy has been installed. (Permissions - Configure)\r\n"] -[141.838286, "o", " [success] Module xmlsitemap has been installed. (Permissions - Configure)\r\n"] -[141.841086, "o", " [success] Module token has been installed.\r\n"] -[141.858195, "o", " < Installed contrib modules.\r\n > Installing Redis module.\r\n"] -[144.327091, "o", " [success] Module redis has been installed. (Permissions - Configure)\r\n"] -[144.339415, "o", " < Installed Redis module.\r\n > Installing and configuring ClamAV.\r\n"] -[152.124873, "o", " [success] Module clamav has been installed. (Permissions - Configure)\r\n"] -[152.88106, "o", "\r\n"] -[152.883975, "o", " // Do you want to update mode_daemon_tcpip.hostname key in clamav.settings \r\n // config?: yes. \r\n\r\n"] -[153.058761, "o", " < Installed and configured ClamAV.\r\n > Installing Solr search modules.\r\n"] -[153.901308, "o", "The following module(s) will be installed: search_api, search_api_solr, language\r\n"] -[153.903541, "o", "\r\n"] -[153.907408, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[158.024418, "o", " [success] Module search_api has been installed. (Permissions - Configure)\r\n"] -[158.027412, "o", " [success] Module search_api_solr has been installed.\r\n"] -[158.030438, "o", " [success] Module language has been installed. (Permissions - Configure)\r\n"] -[158.045993, "o", " < Installed Solr search modules.\r\n > Installing custom site modules.\r\n"] -[162.29736, "o", " [success] Module sw_base has been installed.\r\n"] -[163.019596, "o", "The following module(s) will be installed: sw_search, workflows, content_moderation\r\n"] -[163.020971, "o", "\r\n"] -[163.024358, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[166.483808, "o", " [success] Module sw_search has been installed.\r\n"] -[166.488491, "o", " [success] Module workflows has been installed. (Permissions - Configure)\r\n"] -[166.491661, "o", " [success] Module content_moderation has been installed. (Permissions - Configure)\r\n"] -[167.244898, "o", "The following module(s) will be installed: sw_demo, drupal_helpers, testmode\r\n"] -[167.246493, "o", "\r\n"] -[167.250481, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[170.310582, "o", " [success] Module sw_demo has been installed.\r\n"] -[170.313007, "o", " [success] Module drupal_helpers has been installed.\r\n"] -[170.318766, "o", " [success] Module testmode has been installed. (Configure)\r\n"] -[170.334694, "o", " < Installed custom site modules.\r\n > Running deployment hooks.\r\n"] -[171.734405, "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. "] -[171.734436, "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"] -[171.737397, "o", " // Do you wish to run the specified pending deploy hooks?: yes. \r\n\r\n"] -[172.25896, "o", "> [notice] Deploy hook started: sw_base_deploy_install_active_theme\r\n"] -[176.813561, "o", "> [notice] Performed: sw_base_deploy_install_active_theme\r\n"] -[176.816676, "o", "> [notice] Deploy hook started: sw_demo_deploy_configure_testmode\r\n"] -[176.821057, "o", "> [notice] Configured testmode to filter the pages view.\r\n> [notice] Performed: sw_demo_deploy_configure_testmode\r\n"] -[176.822663, "o", "> [notice] Deploy hook started: sw_demo_deploy_create_pages_menu_link\r\n"] -[176.891334, "o", "> [notice] Created \"Pages\" menu link in main navigation.\r\n> [notice] Performed: sw_demo_deploy_create_pages_menu_link\r\n"] -[176.893529, "o", "> [notice] Deploy hook started: sw_demo_deploy_place_counter_block\r\n"] -[176.903216, "o", "> [notice] Counter block placed in the \"content\" region.\r\n> [notice] Performed: sw_demo_deploy_place_counter_block\r\n"] -[176.904685, "o", "> [notice] Deploy hook started: sw_search_deploy_add_editorial_workflow\r\n"] -[176.937289, "o", "> [notice] Attached editorial workflow to page content type.\r\n> [notice] Performed: sw_search_deploy_add_editorial_workflow\r\n"] -[177.250457, "o", " [success] Finished performing deploy hooks.\r\n"] -[177.276071, "o", " < Ran deployment hooks.\r\n ==> Finished demo modules operations.\r\n"] -[177.276138, "o", "\r\n"] -[177.278514, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\". (45s)\u001b[0m\r\n\r\n"] -[177.280469, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\".\u001b[0m\r\n\r\n"] -[177.287154, "o", " ==> Started development modules operations.\r\n"] -[177.926646, "o", " Environment: local\r\n"] -[177.927243, "o", " > Installing Single Directory Component development tools.\r\n"] -[183.579227, "o", " [success] Module sdc_devel has been installed.\r\n"] -[183.592445, "o", " < Installed Single Directory Component development tools.\r\n > Installing Devel module.\r\n"] -[188.014043, "o", " [success] Module devel has been installed. (Permissions - Configure)\r\n"] -[188.027936, "o", " < Installed Devel module.\r\n > Installing Testmode module.\r\n"] -[188.768841, "o", " [notice] Already installed: testmode\r\n"] -[188.793169, "o", " < Installed Testmode module.\r\n > Installing Generated content module.\r\n"] -[193.356915, "o", "Started creation of generated content from modules: sw_demo, generated_content.\r\n"] -[193.557293, "o", "Created \"page\" node \"Demo page 1 accusamusanimide\" [ID: 2]\r\n"] -[193.569268, "o", "Created \"page\" node \"Demo page 2 asperioresatquem\" [ID: 3]\r\n"] -[193.582329, "o", "Created \"page\" node \"Demo page 3 debitisdelectuse\" [ID: 4]\r\n"] -[193.592715, "o", "Created \"page\" node \"Demo page 4 inmolestiaeoccae\" [ID: 5]\r\n"] -[193.603962, "o", "Created \"page\" node \"Demo page 5 doloribusiustoof\" [ID: 6]\r\n"] -[193.614656, "o", "Created \"page\" node \"Demo page 6 dolorumevenietli\" [ID: 7]\r\n"] -[193.63219, "o", "Created \"page\" node \"Demo page 7 facereidmaximeni\" [ID: 8]\r\n"] -[193.642232, "o", "Created \"page\" node \"Demo page 8 mollitianonsunta\" [ID: 9]\r\n"] -[193.652011, "o", "Created \"page\" node \"Demo page 9 distinctioharump\" [ID: 10]\r\n"] -[193.662353, "o", "Created \"page\" node \"Demo page 10 idimpeditmaximem\" [ID: 11]\r\n"] -[193.67382, "o", "Created \"page\" node \"Demo page 11 culpadebitisnobi\" [ID: 12]\r\n"] -[193.686652, "o", "Created \"page\" node \"Demo page 12 eosiustooptioqui\" [ID: 13]\r\n"] -[193.696592, "o", "Created \"page\" node \"Demo page 13 etitaqueproviden\" [ID: 14]\r\n"] -[193.709241, "o", "Created \"page\" node \"Demo page 14 animiautculpamai\" [ID: 15]\r\n"] -[193.720806, "o", "Created \"page\" node \"Demo page 15 maioresmolestiae\" [ID: 16]\r\n"] -[193.731225, "o", "Created \"page\" node \"Demo page 16 occaecatiperfere\" [ID: 17]\r\n"] -[193.741294, "o", "Created \"page\" node \"Demo page 17 fugaidimpeditnec\" [ID: 18]\r\n"] -[193.75481, "o", "Created \"page\" node \"Demo page 18 estiustomaximequ\" [ID: 19]\r\n"] -[193.76647, "o", "Created \"page\" node \"Demo page 19 consequaturdeser\" [ID: 20]\r\n"] -[193.776931, "o", "Created \"page\" node \"Demo page 20 doloreseosmaxime\" [ID: 21]\r\n"] -[193.777761, "o", "Created generated content entities \"node\" with bundle \"page\".\r\n"] -[193.81278, "o", "Created all generated content.\r\n"] -[193.814004, "o", "Finished creation of generated content.\r\n"] -[194.040046, "o", " [success] Module generated_content has been installed. (Permissions)\r\n"] -[194.240848, "o", " < Installed Generated content module.\r\n ==> Finished development modules operations.\r\n"] -[194.240919, "o", "\r\n"] -[194.242799, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\". (17s)\u001b[0m\r\n\r\n"] -[194.244537, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-30-search-index.sh\".\u001b[0m\r\n\r\n"] -[194.251381, "o", " ==> Started search indexing operations.\r\n"] -[194.734946, "o", " Environment: local\r\n Search indexing skip: 0\r\n\r\n"] -[194.736, "o", " > Resetting search index tracker.\r\n"] -[195.334899, "o", " [success] Content was successfully scheduled for reindexing.\r\n"] -[195.361776, "o", " < Reset search index tracker.\r\n > Running search indexing.\r\n"] -[195.912615, "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"] -[196.709033, "o", "> [notice] Successfully indexed 21 items on Content.\r\n"] -[196.725648, "o", "> [notice] Message: Successfully indexed 21 items.\r\n> \r\n"] -[196.782862, "o", " < Completed search indexing.\r\n ==> Finished search indexing operations.\r\n"] -[196.783005, "o", "\r\n"] -[196.785277, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-30-search-index.sh\". (2s)\u001b[0m\r\n\r\n"] -[196.787164, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-40-example.sh\".\u001b[0m\r\n\r\n"] -[196.794751, "o", " ==> Started example operations.\r\n"] -[197.342858, "o", " Environment: local\r\n"] -[197.343445, "o", " Running example operations in non-production environment.\r\n"] -[197.343525, "o", " > 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"] -[197.343963, "o", "\r\n"] -[197.345864, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-40-example.sh\". (1s)\u001b[0m\r\n\r\n"] -[197.348361, "o", "\u001b[34m[TASK] Disabling maintenance mode.\u001b[0m\r\n"] -[198.008801, "o", "\u001b[32m[ OK ] Disabled maintenance mode. (1s)\u001b[0m\r\n\r\n"] -[198.010484, "o", "\u001b[32m[ OK ] Finished site provisioning (1m 25s).\u001b[0m\r\n"] -[198.486522, "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"] -[198.487, "o", " Path to web root : /app/web\r\n DB host : database\r\n DB username : drupal\r\n DB password : drupal\r\n DB port : 3306\r\n DB port on host : 56345 ('ahoy db' to start SequelAce)\r\n Solr URL on host : http://127.0.0.1:56348\r\n"] -[198.48709, "o", " Selenium VNC URL on host : http://localhost:56375/?autoconnect=1&password=secret\r\n Mailhog URL : http://mailhog.docker.amazee.io/\r\n"] -[198.517257, "o", " Xdebug : Disabled ('ahoy debug' to enable)\r\n Site login link : "] -[202.105041, "o", "http://vortex_videos.docker.amazee.io/user/reset/1/1787268313/[REDACTED]/login\r\n"] -[202.126007, "o", "\r\n"] -[202.144517, "x", "0"] +{"version":2,"width":80,"height":27,"timestamp":1787274563,"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.069432, "o", "$ "] +[0.573043, "o", "a"] +[0.628071, "o", "h"] +[0.681264, "o", "o"] +[0.73631, "o", "y"] +[0.789636, "o", " "] +[0.844692, "o", "b"] +[0.89935, "o", "u"] +[0.951956, "o", "i"] +[1.006253, "o", "l"] +[1.056762, "o", "d"] +[1.514566, "o", "\r\n"] +[2.044695, "o", "\u001b[36m[INFO] Started Vortex tooling installation.\u001b[0m\r\n"] +[6.036036, "o", "\u001b[32m[ OK ] Finished Vortex tooling installation.\u001b[0m\r\n"] +[6.551433, "o", "\u001b[36m[INFO] Started reset.\u001b[0m\r\n"] +[6.607777, "o", "\u001b[32m[ OK ] Finished reset.\u001b[0m\r\n"] +[6.955758, "o", "#1 [internal] load local bake definitions\r\n"] +[7.105833, "o", "#1 reading from stdin 4.04kB done\r\n#1 DONE 0.0s\r\n"] +[7.769207, "o", "\r\n#2 [nginx internal] load build definition from nginx-drupal.dockerfile\r\n#2 transferring dockerfile: 675B done\r\n"] +[7.769218, "o", "#2 DONE 0.0s\r\n\r\n#3 [database internal] load build definition from database.dockerfile\r\n#3 transferring dockerfile: 931B done\r\n#3 DONE 0.0s\r\n\r\n#4 [clamav internal] load build definition from clamav.dockerfile\r\n#4 transferring dockerfile: 1.45kB done\r\n"] +[7.769281, "o", "#4 DONE 0.0s\r\n\r\n#5 [php internal] load build definition from php.dockerfile\r\n#5 transferring dockerfile: 526B done\r\n#5 DONE 0.0s\r\n\r\n#6 [database internal] load metadata for docker.io/uselagoon/mysql-8.4:26.8.0\r\n#6 DONE 0.0s\r\n\r\n#7 [solr internal] load build definition from solr.dockerfile\r\n#7 transferring dockerfile: 1.46kB done\r\n#7 DONE 0.0s\r\n\r\n#8 [cli internal] load build definition from cli.dockerfile\r\n#8 transferring dockerfile: 4.45kB done\r\n#8 DONE 0.0s\r\n\r\n#9 [cli internal] load metadata for docker.io/uselagoon/php-8.4-cli-drupal:26.8.0\r\n#9 DONE 0.0s\r\n\r\n#10 [database internal] load .dockerignore\r\n#10 transferring context: 1.23kB done\r\n#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 [data"] +[7.769305, "o", "base] 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"] +[8.011022, "o", "#16 DONE 0.0s\r\n\r\n#17 [auth] uselagoon/solr-9-drupal:pull token for registry-1.docker.io\r\n#17 DONE 0.0s\r\n\r\n#18 [auth] clamav/clamav-debian: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/php-8.4-fpm:pull token for registry-1.docker.io\r\n#20 DONE 0.0s\r\n\r\n#21 [auth] uselagoon/nginx-drupal:pull token for registry-1.docker.io\r\n#21 DONE 0.0s\r\n\r\n#22 [php internal] load metadata for docker.io/uselagoon/php-8.4-fpm:26.8.0\r\n"] +[8.927693, "o", "#22 ...\r\n\r\n#23 [nginx internal] load metadata for docker.io/uselagoon/nginx-drupal:26.8.0\r\n#23 DONE 1.2s\r\n"] +[9.081038, "o", "\r\n#10 [nginx internal] load .dockerignore\r\n"] +[9.081075, "o", "#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"] +[9.08108, "o", "#24 DONE 0.0s\r\n\r\n#25 [nginx stage-0 1/10] FROM docker.io/uselagoon/php-8.4-cli-drupal:26.8.0\r\n#25 DONE 0.0s\r\n\r\n#26 [nginx internal] load build context\r\n"] +[9.081096, "o", "#26 transferring context: 254B done\r\n#26 DONE 0.0s\r\n\r\n#27 [clamav internal] load metadata for docker.io/uselagoon/commons:26.8.0\r\n#27 DONE 1.3s\r\n\r\n#28 [nginx internal] load build context\r\n"] +[9.081101, "o", "#28 transferring context: 2.64MB 0.0s done\r\n#28 DONE 0.1s\r\n\r\n#29 [nginx 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"] +[9.081105, "o", "#29 CACHED\r\n\r\n#30 [nginx stage-0 3/10] COPY patches /app/patches\r\n#30 CACHED\r\n"] +[9.081121, "o", "\r\n#31 [nginx stage-0 5/10] COPY composer.json composer.* patches.lock.* .env* auth* /app/\r\n#31 CACHED\r\n\r\n#32 [nginx stage-0 4/10] COPY scripts /app/scripts\r\n#32 CACHED\r\n\r\n"] +[9.081148, "o", "#33 [nginx 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#33 CACHED\r\n\r\n#34 [nginx stage-0 7/10] COPY . /app\r\n#34 DONE 0.1s\r\n\r\n#35 [solr internal] load metadata for docker.io/uselagoon/solr-9-drupal:26.8.0\r\n"] +[9.247172, "o", "#35 ...\r\n\r\n#36 [nginx stage-0 8/10] RUN mkdir -p -m 2775 \"/app/web/sites/default/files\" \"/app/web/sites/default/files/private\" \"/tmp\"\r\n#36 DONE 0.2s\r\n"] +[9.352642, "o", "\r\n#37 [clamav internal] load metadata for docker.io/clamav/clamav-debian:1.5.4\r\n#37 DONE 1.7s\r\n\r\n#38 [nginx stage-0 9/10] RUN if [ \"0\" != \"1\" ]; then theme_path=\"/app/web/themes/custom/star_wars\"; export npm_config_cache=/tmp/npm-cache; npm --prefix=\"${theme_path}\" ci --no-progress --no-audit --no-fund && npm --prefix=\"${theme_path}\" run build && rm -rf /tmp/npm-cache; fi\r\n"] +[9.477564, "o", "#38 ...\r\n\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#25 [php stage-0 1/10] FROM docker.io/uselagoon/php-8.4-cli-drupal:26.8.0\r\n#25 DONE 0.0s\r\n\r\n#28 [php internal] load build context\r\n"] +[9.477572, "o", "#28 transferring context: 2.64MB 0.0s done\r\n#28 DONE 0.1s\r\n\r\n#30 [php stage-0 3/10] COPY patches /app/patches\r\n#30 CACHED\r\n\r\n"] +[9.477631, "o", "#31 [php stage-0 5/10] COPY composer.json composer.* patches.lock.* .env* auth* /app/\r\n#31 CACHED\r\n\r\n#32 [php stage-0 4/10] COPY scripts /app/scripts\r\n#32 CACHED\r\n\r\n#29 [php 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#29 CACHED\r\n\r\n#33 [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#33 CACHED\r\n\r\n#34 [php stage-0 7/10] COPY . /app\r\n#34 DONE 0.1s\r\n\r\n#36 [php stage-0 8/10] RUN mkdir -p -m 2775 \"/app/web/sites/default/files\" \"/app/web/sites/default/files/private\" \"/tmp\"\r\n#36 DONE 0.2s\r\n\r\n#2"] +[9.477654, "o", "2 [php internal] load metadata for docker.io/uselagoon/php-8.4-fpm:26.8.0\r\n#22 DONE 1.6s\r\n\r\n#39 [php stage-1 1/3] FROM docker.io/uselagoon/php-8.4-fpm:26.8.0@sha256:cafd9304ab495d6f102fc5ec27f770a4ef33139a89c64bc94db467ccb23ba411\r\n#39 DONE 0.0s\r\n\r\n#40 [clamav stage-1 1/7] FROM docker.io/clamav/clamav-debian:1.5.4@sha256:2bb8cd7dfe3e87f86e969a2c415f7698583175e46dc2234672be9210c982c144\r\n#40 DONE 0.0s\r\n\r\n#41 [clamav commons 1/1] FROM docker.io/uselagoon/commons:26.8.0@sha256:0af1b1ed0e4b76a035415637d910290f8ecd75fb46a05be8ca8bfec24f2a84e6\r\n#41 DONE 0.0s\r\n\r\n#42 [clamav internal] load build context\r\n#42 transferring context: 285B done\r\n#42 DONE 0.0s\r\n\r\n#35 [solr internal] load metadata for docker.io/uselagoon/solr-9-drupal:26.8.0\r\n#35 DONE 1.7s\r\n\r\n#43 [clamav stage-1 5/7] COPY .docker/config/clamav/clamav.conf /tmp/clamav.conf\r\n#43 CACHED\r\n\r\n#44 [clamav stage-1 3/7] COPY --from=commons /bin/fix-permissions /bin/ep /bin/docker-sleep /bin/wait-for /bin/\r\n#44 CACHED\r\n\r\n#45 [clamav stage-1 2/7] COPY --from=commons /la"] +[9.477697, "o", "goon /lagoon\r\n#45 CACHED\r\n\r\n#46 [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#46 CACHED\r\n\r\n#47 [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#47 CACHED\r\n\r\n#48 [clamav stage-1 7/7] RUN fix-permissions /var/lib/clamav\r\n#48 CACHED\r\n\r\n#49 [solr 1/3] FROM docker.io/uselagoon/solr-9-drupal:26.8.0@sha256:de7bb5e9758fe8caf4bc2fb726a9e544e10cfa59c78e319592fed6102f804683\r\n#49 DONE 0.0s\r\n\r\n#50 [clamav] exporting to image\r\n#50 exporting layers done\r\n#50 writing image sha256:7ac7c6ac3f13de064a3cfc25b0cb3c1c735436a8b0d2a2391b82a29e945f7658 done\r\n#50 naming"] +[9.477739, "o", " to docker.io/library/vortex_videos-clamav done\r\n#50 DONE 0.0s\r\n\r\n#51 [solr internal] load build context\r\n#51 transferring context: 1.54MB 0.0s done\r\n#51 DONE 0.0s\r\n\r\n#52 [solr 2/3] COPY .docker/config/solr/config-set /solr-conf/conf/\r\n#52 CACHED\r\n\r\n#53 [clamav] resolving provenance for metadata file\r\n#53 DONE 0.0s\r\n\r\n#54 [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#54 CACHED\r\n\r\n#38 [php stage-0 9/10] RUN if [ \"0\" != \"1\" ]; then theme_path=\"/app/web/themes/custom/star_wars\"; export npm_config_cache=/tmp/npm-cache; npm --prefix=\"${theme_path}\" ci --no-progress --no-audit --no-fund && npm --prefix=\"${theme_path}\" run build && rm -rf /tmp/npm-cache; fi\r\n"] +[9.663007, "o", "#38 ...\r\n\r\n#55 [solr] exporting to image\r\n#55 exporting layers done\r\n#55 writing image sha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660fd05e2d58bcaf 0.0s done\r\n#55 naming to docker.io/library/vortex_videos-solr done\r\n#55 DONE 0.1s\r\n\r\n#56 [solr] resolving provenance for metadata file\r\n#56 DONE 0.0s\r\n"] +[9.812976, "o", "\r\n#38 [php stage-0 9/10] RUN if [ \"0\" != \"1\" ]; then theme_path=\"/app/web/themes/custom/star_wars\"; export npm_config_cache=/tmp/npm-cache; npm --prefix=\"${theme_path}\" ci --no-progress --no-audit --no-fund && npm --prefix=\"${theme_path}\" run build && rm -rf /tmp/npm-cache; fi\r\n"] +[13.727311, "o", "#38 4.475 \r\n#38 4.475 > star_wars@1.0.0 postinstall\r\n#38 4.475 > patch-package\r\n#38 4.475 \r\n"] +[13.835342, "o", "#38 4.586 patch-package 8.0.1\r\n"] +[13.985556, "o", "#38 4.586 Applying patches...\r\n#38 4.586 No patch files found\r\n#38 4.601 \r\n#38 4.601 added 462 packages in 4s\r\n#38 4.733 \r\n#38 4.733 > star_wars@1.0.0 build\r\n#38 4.733 > 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#38 4.733 \r\n"] +[14.168158, "o", "#38 4.825 \r\n#38 4.825 > star_wars@1.0.0 clean\r\n#38 4.825 > rm -rf build\r\n#38 4.825 \r\n"] +[14.268552, "o", "#38 4.918 \r\n#38 4.918 > star_wars@1.0.0 concat\r\n#38 4.918 > find js -name '*.js' ! -name '*.min.js' -exec cat {} + > build/js/star_wars.min.js\r\n#38 4.918 \r\n"] +[14.419598, "o", "#38 5.019 \r\n#38 5.019 > star_wars@1.0.0 uglify\r\n#38 5.019 > 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#38 5.019 \r\n"] +[14.439365, "o", "#38 5.190 \r\n#38 5.190 > star_wars@1.0.0 sass:prod\r\n#38 5.190 > sass scss/styles.scss build/css/star_wars.min.css --no-source-map --style=compressed\r\n#38 5.190 \r\n"] +[14.772836, "o", "#38 5.523 \r\n#38 5.523 > star_wars@1.0.0 postcss:prod\r\n#38 5.523 > postcss build/css/star_wars.min.css -o build/css/star_wars.min.css --no-map\r\n#38 5.523 \r\n"] +[15.297466, "o", "#38 5.855 \r\n#38 5.855 > star_wars@1.0.0 copy\r\n#38 5.855 > npm run copy:images && npm run copy:fonts\r\n#38 5.855 \r\n#38 5.945 \r\n#38 5.945 > star_wars@1.0.0 copy:images\r\n#38 5.945 > mkdir -p build/images && cp -r images/* build/images/ 2>/dev/null || true\r\n#38 5.945 \r\n"] +[15.453466, "o", "#38 6.048 \r\n#38 6.048 > star_wars@1.0.0 copy:fonts\r\n#38 6.048 > mkdir -p build/fonts && cp -r fonts/* build/fonts/ 2>/dev/null || true\r\n#38 6.048 "] +[15.453474, "o", "\r\n"] +[15.748997, "o", "#38 DONE 6.4s\r\n\r\n#57 [cli 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"] +[16.504238, "o", "#58 exporting layers 0.9s done\r\n#58 writing image sha256:3a21edf1507a761ce1e76fec40f07b22f8bb7c22b8a5ae0fab2ecc83082c037b\r\n"] +[16.665035, "o", "#58 writing image sha256:3a21edf1507a761ce1e76fec40f07b22f8bb7c22b8a5ae0fab2ecc83082c037b done\r\n#58 naming to docker.io/library/vortex_videos 0.0s done\r\n#58 DONE 1.0s\r\n\r\n#59 [cli] resolving provenance for metadata file\r\n"] +[16.826793, "o", "#59 DONE 0.0s\r\n"] +[20.899264, "o", "\r\n#60 [nginx stage-1 2/5] RUN apk add --no-cache tzdata\r\n#60 CACHED\r\n\r\n#61 [nginx stage-1 3/5] COPY ./.docker/config/nginx/redirects-map.conf /etc/nginx/redirects-map.conf\r\n#61 CACHED\r\n\r\n#62 [nginx stage-1 4/5] RUN fix-permissions /etc/nginx\r\n#62 CACHED\r\n\r\n#63 [nginx stage-1 5/5] COPY --from=cli /app /app\r\n"] +[21.078554, "o", "#63 ...\r\n\r\n#64 [php stage-1 2/3] RUN apk add --no-cache tzdata\r\n#64 CACHED\r\n"] +[21.228596, "o", "\r\n#65 [php stage-1 3/3] COPY --from=cli /app /app\r\n"] +[24.036658, "o", "#65 DONE 3.1s\r\n\r\n#63 [nginx stage-1 5/5] COPY --from=cli /app /app\r\n"] +[24.194184, "o", "#63 DONE 3.1s\r\n\r\n#66 [nginx] exporting to image\r\n#66 exporting layers\r\n"] +[26.6378, "o", "#66 exporting layers 2.6s done\r\n"] +[26.741368, "o", "#66 writing image sha256:8a25818a88ea693f2e3badb82b2057b46d0b06afe07ec7e074ff963eef640f11 done\r\n#66 naming to docker.io/library/vortex_videos-nginx done\r\n#66 DONE 2.6s\r\n\r\n#67 [php] exporting to image\r\n#67 exporting layers 2.6s done\r\n"] +[26.741378, "o", "#67 writing image sha256:e0d169a72e66d2e891a211a161928358e6c0b0930fa62babf3cd1a7e0ff00cba done\r\n#67 naming to docker.io/library/vortex_videos-php done\r\n#67 DONE 2.6s\r\n\r\n#68 [nginx] resolving provenance for metadata file\r\n#68 DONE 0.0s\r\n\r\n#69 [php] resolving provenance for metadata file\r\n#69 DONE 0.0s\r\n"] +[26.843468, "o", "\u001b[?25l\u001b[0G[+] up 8/12\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[26.843476, "o", " \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-database-1 Creating \u001b[34m 0.1s\u001b[0m\r\n \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-redis-1 Creating \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-clamav-1 Creating \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[26.943287, "o", "\u001b[?25l\u001b[13A\u001b[0G[+] up 11/12\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[26.943296, "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-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-solr-1 Creating \u001b[34m 0.2s\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-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n\u001b[?25h"] +[27.043735, "o", "\u001b[?25l\u001b[13A\u001b[0G[+] up 12/13\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b["] +[27.043758, "o", "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-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-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.1s\u001b[0m\r\n"] +[27.043759, "o", "\u001b[?25h"] +[27.143258, "o", "\u001b[?25l\u001b[14A\u001b[0G[+] up 13/14\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b["] +[27.143269, "o", "0m\r\n"] +[27.143434, "o", " \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-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-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.2s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-cli-1 Creating \u001b[34m 0.0s\u001b[0m\r\n\u001b[?25h"] +[27.243727, "o", "\u001b[?25l\u001b[15A\u001b[0G[+] up 13/14\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b["] +[27.24374, "o", "0m\r\n"] +[27.243818, "o", " \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-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-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.2s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-cli-1 Creating \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[27.342929, "o", "\u001b[?25l\u001b[15A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b["] +[27.343099, "o", "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-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-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.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[33m⠋\u001b[0m Container vortex_videos-nginx-1 Creating \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-php-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"] +[27.442864, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[27.442918, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[27.442922, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[27.442949, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[27.443023, "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-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-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.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[33m⠙\u001b[0m Container vortex_videos-nginx-1 Creating \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[27.443025, "o", "eos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[27.44308, "o", "\u001b[?25h"] +[27.543801, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[33"] +[27.543807, "o", "m⠹\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 0.8s\u001b[0m\r\n"] +[27.543809, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 0.8s\u001b[0m\r\n"] +[27.543856, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-clamav-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.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[27.643121, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n"] +[27.643164, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_vid"] +[27.643173, "o", "eos-solr-1 Starting \u001b[34m 0.9s\u001b[0m\r\n"] +[27.643206, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-clamav-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.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[27.643208, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[27.64321, "o", "\u001b[?25h"] +[27.742948, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[27.742957, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[27.742958, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[27.74296, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[27.742996, "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[33m⠸\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 "] +[27.743, "o", " \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[27.743027, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[27.843767, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[27.843825, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 Starting \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-redis"] +[27.843834, "o", "-1 Starting \u001b[34m 1.1s\u001b[0m\r\n"] +[27.843867, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[27.943792, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 Starting \u001b[34m 1.2s\u001b[0m\r\n \u001b[33"] +[27.943808, "o", "m⠦\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 1.2s\u001b[0m\r\n"] +[27.943881, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[27.943886, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[28.043179, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[28.043194, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 Starting \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1"] +[28.04328, "o", " \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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[28.043295, "o", "\u001b[?25h"] +[28.143741, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 Starting \u001b[34m 1.4s\u001b[0m\r\n \u001b[32"] +[28.143795, "o", "m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[28.243836, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[28.243849, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[28.243853, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[28.243919, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[28.243989, "o", "ortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 1.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[28.344007, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[28.344131, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[28.443626, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[28.443637, "o", "0m\r\n"] +[28.443684, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 1.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[28.443693, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[28.443695, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[28.543404, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[28.54349, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \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"] +[28.543516, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[28.643648, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[28.643663, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \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"] +[28.643666, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[28.643669, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[28.643672, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[28.643675, "o", "\u001b[?25h"] +[28.743395, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[28.743446, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[28.743452, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[28.743467, "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"] +[28.743476, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[28.7435, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[28.743525, "o", " \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[28.743544, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[28.843772, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[28.843789, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[28.843793, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[28.843795, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[28.942828, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[28.942841, "o", "0m\r\n"] +[28.942893, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[28.942932, "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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[28.942935, "o", "\u001b[?25h"] +[29.043201, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[29.043208, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.04321, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.043211, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.043212, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.043213, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.043215, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.043217, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[29.043245, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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 \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[29.043251, "o", "eos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[29.145849, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[29.145933, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[29.243623, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[29.243631, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.243633, "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"] +[29.243635, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[29.243642, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[29.243644, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[29.243667, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[29.343259, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.343271, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[29.343273, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[29.343275, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[29.343276, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.4s\u001b[0m\r\n"] +[29.343278, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[29.343279, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[29.343281, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[29.343305, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[29.443762, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.443781, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[29.443835, "o", "eos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[29.443934, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[29.44399, "o", "\u001b[?25h"] +[29.543738, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[29.543745, "o", "0m\r\n"] +[29.543789, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[29.643956, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[29.643967, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[29.643972, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[29.643983, "o", " \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[29.643986, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[29.644016, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[29.744041, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.74405, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[29.744054, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.8s\u001b[0m\r\n"] +[29.744056, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[29.744058, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[29.744061, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[29.744063, "o", "\u001b[?25h"] +[29.844371, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[29.844386, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.844462, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[29.844472, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[29.844475, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[29.844477, "o", "\u001b[?25h"] +[29.943537, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[29.943557, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[29.94356, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[29.943562, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[29.943565, "o", " \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.0s\u001b[0m\r\n"] +[29.943567, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[29.94357, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[29.943601, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[30.043742, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[30.043754, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[30.043756, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[30.043759, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[30.043761, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[30.043763, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[30.043765, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[30.043769, "o", " \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.1s\u001b[0m\r\n"] +[30.043772, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[30.043774, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[30.043776, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[30.043779, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[30.043781, "o", "\u001b[?25h"] +[30.143705, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[30.143783, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[30.143792, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[30.14382, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[30.243742, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[30.243752, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[30.243755, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.3s\u001b[0m\r\n"] +[30.243757, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[30.24376, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[30.243761, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[30.243763, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[30.243764, "o", "\u001b[?25h"] +[30.344004, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[30.344192, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[30.443722, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[30.443733, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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"] +[30.443735, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[30.443736, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[30.443737, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[30.443739, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[30.443754, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[30.544054, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[30.544411, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[30.64393, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[30.644124, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[30.743786, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[30.743794, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[30.74387, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[30.743945, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[30.843766, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[30.843857, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[30.944244, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[30.944394, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[31.043843, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[31.043857, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[31.04386, "o", " \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[31.043862, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[31.043937, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[31.145671, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[31.145747, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[31.245446, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[31.245551, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[31.343423, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[31.343478, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[31.343549, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[31.443584, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[31.443773, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[31.547207, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[31.550684, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[31.645698, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[31.645812, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[31.743814, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[31.743907, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[31.743973, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[31.744011, "o", "eos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[31.843762, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[31.843799, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[31.843867, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[31.943812, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[31.943831, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[31.943834, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[31.943838, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[31.943841, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[31.943843, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[31.94391, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[31.943915, "o", "eos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[31.943949, "o", "\u001b[?25h"] +[32.043802, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[32.043815, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[32.043828, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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"] +[32.043832, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[32.14322, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[32.143321, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[32.143328, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[32.143379, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[32.244712, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[32.244719, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[32.244722, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[32.245073, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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_vid"] +[32.245458, "o", "eos-cli-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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[32.343096, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[32.343131, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[32.343136, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[32.343139, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.4s\u001b[0m\r\n"] +[32.343141, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[32.343143, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[32.343147, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[32.343149, "o", "\u001b[?25h"] +[32.443586, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[32.443596, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[32.443598, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[32.443601, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[32.443603, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[32.443605, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[32.443606, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[32.443608, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[32.443609, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[32.443648, "o", " \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[32.543742, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[32.543752, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[32.543754, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[32.543756, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[32.543758, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[32.543761, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.6s\u001b[0m\r\n"] +[32.543764, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[32.543766, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[32.543771, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[32.543773, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[32.543778, "o", "\u001b[?25h"] +[32.643715, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[32.643725, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[32.643751, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[32.643754, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[32.643756, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[32.643757, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.7s\u001b[0m\r\n"] +[32.64376, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[32.643763, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[32.643789, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[32.743715, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[32.743775, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[32.743816, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[32.743874, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[32.843738, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[32.843786, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[32.84379, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[32.843841, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[32.943744, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[32.943752, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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"] +[32.943755, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[32.943803, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.04361, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.043701, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[33.043735, "o", "ortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[33.04374, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.143759, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[33.143884, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[33.143917, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[33.143984, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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 \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.243733, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[33.243806, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[33.243813, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[33.243852, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.343724, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[33.343786, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[33.343794, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[33.34386, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.443727, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.44376, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[33.443813, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.543715, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[33.543728, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.54373, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.543731, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.543732, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.543734, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.543769, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[33.543816, "o", "eos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.643706, "o", "\u001b[?25l\u001b[18A\u001b[0G"] +[33.643713, "o", "[+] up 16/17\r\n"] +[33.643744, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.643748, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.64379, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container v"] +[33.643818, "o", "ortex_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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.743723, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.74373, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[33.743732, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[33.743734, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[33.743736, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[33.743738, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[33.743768, "o", " \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_videos-cli-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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.84371, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.843721, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[33.843724, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[33.843729, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[33.843731, "o", " \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.9s\u001b[0m\r\n"] +[33.843765, "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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[33.943763, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[33.943771, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[33.943774, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[33.943776, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[33.943777, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[33.943779, "o", " \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.0s\u001b[0m\r\n"] +[33.943782, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[33.943784, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[33.943787, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[33.943789, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[33.943791, "o", "\u001b[?25h"] +[34.042996, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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"] +[34.043005, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[34.043007, "o", "\u001b[?25h"] +[34.143878, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[34.144023, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[34.243935, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[34.243948, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[34.243951, "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"] +[34.243953, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[34.243955, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[34.243957, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[34.243958, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[34.243988, "o", " \u001b[33m⠙\u001b[0m Container vortex_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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[34.343781, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[34.3438, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[34.443753, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[34.443763, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[34.443802, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[34.543796, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[34.54381, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[34.543815, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[34.543817, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[34.54382, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[34.543871, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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 \u001b[32m✔\u001b[0m Container vortex_vid"] +[34.543939, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[34.642817, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[34.642827, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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"] +[34.64283, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[34.642833, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[34.642835, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[34.642836, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.7s\u001b[0m\r\n"] +[34.642838, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[34.64284, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[34.642844, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[34.642846, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[34.642848, "o", "\u001b[?25h"] +[34.744759, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[34.746216, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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 \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[34.843787, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[34.843792, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[34.843795, "o", " \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"] +[34.843796, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[34.843797, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[34.843798, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[34.843799, "o", "\u001b[?25h"] +[34.943783, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[34.943792, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[35.043842, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[35.043852, "o", "0m\r\n"] +[35.043938, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[35.143598, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[35.143608, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[35.143611, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.2s\u001b[0m\r\n"] +[35.143615, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[35.143617, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[35.14362, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[35.143623, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[35.143628, "o", "\u001b[?25h"] +[35.243452, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[35.243599, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[35.343729, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[35.343735, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[35.343737, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[35.343738, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[35.343739, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[35.343741, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[35.343767, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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_vid"] +[35.343771, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[35.343783, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[35.443548, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[35.4453, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[35.543986, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[35.544277, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[35.64384, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[35.643855, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[35.643859, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[35.643926, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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_vid"] +[35.644036, "o", "eos-cli-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.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[35.743742, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[35.743755, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[35.743759, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[35.743763, "o", " \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[35.743767, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[35.843582, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[35.843595, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.9s\u001b[0m\r\n"] +[35.843598, "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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[35.843601, "o", "\u001b[?25h"] +[35.943744, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[35.943848, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[36.043331, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[36.043388, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[36.143743, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.14375, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.143752, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.143755, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.143787, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[36.143861, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[36.243735, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[36.243743, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.243745, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.243745, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.243746, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.243771, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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_vid"] +[36.243818, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[36.343702, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[36.343711, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.343712, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.343713, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.343715, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.343746, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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_vid"] +[36.343753, "o", "eos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[36.343771, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[36.443314, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[36.443364, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.443368, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.443371, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.443383, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[36.443385, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[36.443386, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[36.443388, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.5s\u001b[0m\r\n"] +[36.443412, "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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[36.546229, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[36.546935, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[36.644686, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[36.644848, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[36.743765, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[36.743773, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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"] +[36.743775, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[36.743776, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[36.743777, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[36.743778, "o", "\u001b[?25h"] +[36.843629, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[36.843639, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.84364, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.843642, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.843642, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.843644, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[36.84367, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[36.843709, "o", "eos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[36.943715, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[36.943722, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.943725, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[36.943726, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[36.943727, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[36.943729, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[36.94378, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[37.04378, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[37.043794, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[37.043797, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[37.043799, "o", "\u001b[?25h"] +[37.143416, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[37.143422, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.143425, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.143454, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[37.143458, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[37.143462, "o", " \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"] +[37.143466, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[37.143467, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[37.143469, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[37.143471, "o", "\u001b[?25h"] +[37.243766, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[37.243814, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[37.343112, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[37.343128, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.343131, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.343132, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.343134, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.343174, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[37.343177, "o", "eos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[37.343205, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[37.443764, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[37.44377, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.443773, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.443774, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.443775, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.443776, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.443778, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[37.443779, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[37.443794, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[37.443795, "o", "\u001b[?25h"] +[37.543107, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[37.543115, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.543117, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.543118, "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"] +[37.54312, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[37.543121, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[37.543122, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[37.543124, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[37.543136, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.6s\u001b[0m\r\n"] +[37.543155, "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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[37.643721, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[37.643728, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.64373, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.643731, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.643732, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.643733, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.643734, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[37.643736, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[37.643737, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[37.643739, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[37.643747, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[37.64375, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[37.643751, "o", "\u001b[?25h"] +[37.743598, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.743604, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.743606, "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"] +[37.743611, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[37.743613, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[37.743615, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[37.743617, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[37.743636, "o", " \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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[37.843726, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[37.843734, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[37.843737, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[37.843738, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[37.843739, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[37.843741, "o", " \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.9s\u001b[0m\r\n"] +[37.843764, "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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[37.943752, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[37.943759, "o", "0m\r\n"] +[37.943797, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[38.043759, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.043767, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[38.043803, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[38.143766, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[38.143772, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.143773, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.143774, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.143775, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.143777, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.143826, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] +[38.143835, "o", "eos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[38.143878, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[38.243581, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.243589, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.243592, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[38.243596, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[38.243599, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[38.243601, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.3s\u001b[0m\r\n"] +[38.24363, "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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[38.34356, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[38.343596, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[38.343708, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[38.443283, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.443298, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[38.443376, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[38.542813, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[38.542842, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.542844, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[38.542846, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[38.542847, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[38.542849, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[38.54285, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[38.542853, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[38.542854, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.6s\u001b[0m\r\n"] +[38.542857, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[38.542861, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[38.542865, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[38.542866, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] +[38.542868, "o", "\u001b[?25h"] +[38.643595, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.643604, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[38.643608, "o", " \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"] +[38.643611, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[38.643613, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] +[38.74374, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[38.743783, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[38.743819, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[38.843742, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[38.843784, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] +[38.843791, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[38.843812, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[38.9438, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[38.943808, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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"] +[38.943812, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[38.943814, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[38.943835, "o", " \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m12.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[39.043224, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[39.043233, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m12.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[39.043241, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[39.143122, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[39.143438, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m12.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[39.245009, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[39.245953, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m12.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[39.343737, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[39.344071, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m12.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-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[39.443779, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[39.443787, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[39.44379, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[39.443792, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[39.443794, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[39.443796, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[39.443823, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m12.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[39.543378, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] +[39.543396, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[39.543399, "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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[39.5434, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[39.543402, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n"] +[39.543403, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n"] +[39.543404, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n"] +[39.543405, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m12.4s\u001b[0m\r\n"] +[39.543406, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n"] +[39.543417, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\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"] +[39.643608, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[39.643618, "o", "0m\r\n"] +[39.643715, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.5s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.4s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.4s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.4s\u001b[0m\r\n\u001b[?25h"] +[39.743617, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[39.743758, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.5s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.5s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.5s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.5s\u001b[0m\r\n\u001b[?25h"] +[39.843916, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] +[39.843923, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[39.843924, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[39.843926, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[39.843927, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[39.843929, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[39.843931, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] +[39.843934, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[39.843964, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.5s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.6s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.6s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.6s\u001b[0m\r\n\u001b[?25h"] +[39.943724, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[39.943735, "o", "0m\r\n"] +[39.943849, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.5s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.7s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.7s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.7s\u001b[0m\r\n\u001b[?25h"] +[40.046118, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[40.047182, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.5s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.8s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.7s\u001b[0m\r\n\u001b[?25h"] +[40.143794, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n"] +[40.143803, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b[0m\r\n"] +[40.143827, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] +[40.143833, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.5s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.7s\u001b[0m\r\n\u001b[?25h"] +[40.242989, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[40.243181, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.5s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m13.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.7s\u001b[0m\r\n\u001b[?25h"] +[40.244791, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 17/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m19.9s\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-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.4s\u001b["] +[40.244981, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mStarted\u001b[0m \u001b[34m13.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.7s\u001b[0m\r\n\u001b[?25h"] +[41.21683, "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"] +[41.217957, "o", "\u001b[32mLoading composer repositories with package information\u001b[39m\r\n"] +[50.619866, "o", "\u001b[32mUpdating dependencies\u001b[39m\r\n"] +[50.916502, "o", "\u001b[32mLock file operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n - 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 - 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)"] +[50.916563, "o", "\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 "] +[50.916579, "o", "(\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 - Locking \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n"] +[50.916582, "o", " - 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 - Locking \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n"] +[50.916586, "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"] +[50.916591, "o", " - 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 - 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"] +[50.916593, "o", " - Locking \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n"] +[50.916596, "o", " - 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"] +[50.916599, "o", " - 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"] +[50.9166, "o", " - 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"] +[50.916602, "o", " - 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"] +[50.916624, "o", " - 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"] +[50.916779, "o", " - 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"] +[50.916968, "o", " - Locking \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n"] +[50.91717, "o", " - 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"] +[50.917172, "o", " - 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"] +[50.917173, "o", " - 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"] +[50.917296, "o", " - 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"] +[50.917467, "o", " - 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"] +[50.918077, "o", " - 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[3"] +[50.918086, "o", "2mpsr/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 - 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"] +[50.918105, "o", " - 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"] +[50.920152, "o", " - 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[33m"] +[50.920167, "o", "v8.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/mai"] +[50.92019, "o", "ler\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 - Locking \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n - 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."] +[50.920197, "o", "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"] +[50.92021, "o", "/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n"] +[50.925925, "o", "\u001b[32mWriting lock file\u001b[39m\r\n\u001b[32mInstalling dependencies from lock file (including require-dev)\u001b[39m\r\n"] +[50.936147, "o", "\u001b[32mPackage operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n"] +[50.944393, "o", " - Installing \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[51.002173, "o", " - Installing \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[51.074479, "o", " - Downloading \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n"] +[51.075698, "o", " - Downloading \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n"] +[51.076763, "o", " - Downloading \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n"] +[51.086488, "o", " - Downloading \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n"] +[51.087409, "o", " - Downloading \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n"] +[51.088101, "o", " - Downloading \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n"] +[51.088855, "o", " - Downloading \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n"] +[51.089935, "o", " - Downloading \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n"] +[51.09091, "o", " - Downloading \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n"] +[51.09167, "o", " - Downloading \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n"] +[51.092881, "o", " - Downloading \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n"] +[51.093625, "o", " - Downloading \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n"] +[51.097257, "o", " - Downloading \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n"] +[51.097807, "o", " - Downloading \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n"] +[51.13311, "o", " - Downloading \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Downloading \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n - Downloading \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n - Downloading \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n"] +[51.133364, "o", " - Downloading \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n"] +[51.15271, "o", " - Downloading \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] +[51.16217, "o", " - Downloading \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] +[51.167561, "o", " - Downloading \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n"] +[51.168052, "o", " - Downloading \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n"] +[51.1687, "o", " - Downloading \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n"] +[51.172923, "o", " - Downloading \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n"] +[51.173753, "o", " - Downloading \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] +[51.174222, "o", " - Downloading \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n"] +[51.174611, "o", " - Downloading \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n"] +[51.175309, "o", " - Downloading \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n"] +[51.175745, "o", " - Downloading \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n"] +[51.17626, "o", " - Downloading \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n"] +[51.177051, "o", " - Downloading \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n"] +[51.370985, "o", " - Downloading \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n"] +[51.371549, "o", " - Downloading \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n"] +[51.375912, "o", " - Downloading \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n - Downloading \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n"] +[51.397037, "o", " - Downloading \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n - Downloading \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n - Downloading \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n - Downloading \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n - Downloading \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n"] +[51.397388, "o", " - Downloading \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n"] +[51.398268, "o", " - Downloading \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n"] +[51.582127, "o", " - Downloading \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n - Downloading \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n"] +[51.583155, "o", " - Downloading \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n"] +[51.584486, "o", " - Downloading \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n"] +[51.585289, "o", " - Downloading \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n"] +[51.586055, "o", " - Downloading \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n"] +[51.586583, "o", " - Downloading \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n"] +[51.587252, "o", " - Downloading \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n"] +[51.588097, "o", " - Downloading \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n"] +[51.588396, "o", " - Downloading \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] +[51.58882, "o", " - Downloading \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n"] +[51.591911, "o", " - Downloading \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n"] +[51.591949, "o", " - Downloading \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n - Downloading \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n - Downloading \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n - Downloading \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Downloading \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n - Downloading \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n - Downloading \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n"] +[51.592552, "o", " - Downloading \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n"] +[51.593003, "o", " - Downloading \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n"] +[51.59359, "o", " - Downloading \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] +[51.594119, "o", " - Downloading \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n"] +[51.595153, "o", " - Downloading \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n"] +[51.595726, "o", " - Downloading \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] +[51.596192, "o", " - Downloading \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n"] +[51.596636, "o", " - Downloading \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n"] +[51.597454, "o", " - Downloading \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n"] +[51.600006, "o", " - Downloading \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Downloading \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Downloading \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Downloading \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n"] +[51.600437, "o", " - Downloading \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n"] +[51.601183, "o", " - Downloading \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n"] +[51.601978, "o", " - Downloading \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n"] +[51.602616, "o", " - Downloading \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n"] +[51.603797, "o", " - Downloading \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n"] +[51.604579, "o", " - Downloading \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n"] +[51.605474, "o", " - Downloading \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m)\r\n"] +[51.60652, "o", " - Downloading \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n"] +[51.611885, "o", " 0/83 [>---------------------------] 0%"] +[52.632209, "o", "\u001b[1G\u001b[2K 9/83 [===>------------------------] 10%"] +[53.337647, "o", "\u001b[1G\u001b[2K 18/83 [======>---------------------] 21%"] +[53.843109, "o", "\u001b[1G\u001b[2K 26/83 [========>-------------------] 31%"] +[54.517948, "o", "\u001b[1G\u001b[2K 35/83 [===========>----------------] 42%"] +[55.082286, "o", "\u001b[1G\u001b[2K 44/83 [==============>-------------] 53%"] +[55.803037, "o", "\u001b[1G\u001b[2K 51/83 [=================>----------] 61%"] +[56.319945, "o", "\u001b[1G\u001b[2K 60/83 [====================>-------] 72%"] +[56.713002, "o", "\u001b[1G\u001b[2K 70/83 [=======================>----] 84%"] +[57.125576, "o", "\u001b[1G\u001b[2K 76/83 [=========================>--] 91%"] +[57.522793, "o", "\u001b[1G\u001b[2K 83/83 [============================] 100%\u001b[1G\u001b[2K"] +[57.52366, "o", "\u001b[30;43mpatches.lock.json does not exist. Creating a new patches.lock.json.\u001b[39;49m\r\n"] +[57.532436, "o", " - \u001b[32mResolving patches from dependencies.\u001b[39m\r\n"] +[57.535313, "o", " - Installing \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] +[57.646969, "o", " - Installing \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] +[57.691347, "o", " - Installing \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] +[57.730316, "o", " - Installing \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m): Extracting archive\r\n"] +[57.827921, "o", " - Installing \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] +[58.309834, "o", " - Installing \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m): Extracting archive\r\n"] +[58.339536, "o", " - Installing \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m): Extracting archive\r\n"] +[58.342417, "o", " - Installing \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m): Extracting archive\r\n"] +[58.351777, "o", " - Installing \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m): Extracting archive\r\n"] +[58.355554, "o", " - Installing \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m): Extracting archive\r\n"] +[58.361654, "o", " - Installing \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m): Extracting archive\r\n"] +[58.364379, "o", " - Installing \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] +[58.369689, "o", " - Installing \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m): Extracting archive\r\n"] +[58.374126, "o", " - Installing \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m): Extracting archive\r\n"] +[58.382893, "o", " 0/8 [>---------------------------] 0%"] +[58.644915, "o", "\u001b[1G\u001b[2K 2/8 [=======>--------------------] 25%"] +[58.744269, "o", "\u001b[1G\u001b[2K 7/8 [========================>---] 87%"] +[58.783969, "o", "\u001b[1G\u001b[2K 8/8 [============================] 100%\u001b[1G\u001b[2K"] +[58.784554, "o", " - Installing \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m): Extracting archive\r\n"] +[58.825796, "o", " - Installing \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m): Extracting archive\r\n"] +[59.301139, "o", " - Installing \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m): Extracting archive\r\n"] +[59.325007, "o", " - Installing \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] +[59.326281, "o", " - Installing \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m): Extracting archive\r\n"] +[59.32795, "o", " - Installing \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m): Extracting archive\r\n"] +[59.329739, "o", " - Installing \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] +[59.33294, "o", " - Installing \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m): Extracting archive\r\n"] +[59.335771, "o", " - Installing \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m): Extracting archive\r\n"] +[59.338169, "o", " - Installing \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] +[59.341641, "o", " - Installing \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] +[59.344506, "o", " - Installing \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[59.347662, "o", " - Installing \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[59.351454, "o", " - Installing \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] +[59.354006, "o", " - Installing \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[59.35724, "o", " - Installing \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.360709, "o", " - Installing \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m): Extracting archive\r\n"] +[59.363725, "o", " - Installing \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] +[59.367838, "o", " - Installing \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[59.371978, "o", " - Installing \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[59.383706, "o", " - Installing \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m): Extracting archive\r\n"] +[59.387324, "o", " - Installing \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m): Extracting archive\r\n"] +[59.391087, "o", " - Installing \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m): Extracting archive\r\n"] +[59.395501, "o", " - Installing \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] +[59.400815, "o", " - Installing \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m): Extracting archive\r\n"] +[59.405658, "o", " - Installing \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] +[59.409772, "o", " - Installing \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m): Extracting archive\r\n"] +[59.413425, "o", " - Installing \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] +[59.418973, "o", " - Installing \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[59.421544, "o", " - Installing \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[59.424781, "o", " - Installing \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.428828, "o", " - Installing \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] +[59.434507, "o", " - Installing \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[59.437267, "o", " - Installing \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[59.443277, "o", " - Installing \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.445739, "o", " - Installing \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.450483, "o", " - Installing \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.451458, "o", " - Installing \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m): Extracting archive\r\n"] +[59.453147, "o", " - Installing \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m): Extracting archive\r\n"] +[59.455428, "o", " - Installing \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m): Extracting archive\r\n"] +[59.458378, "o", " - Installing \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m): Extracting archive\r\n"] +[59.459936, "o", " - Installing \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] +[59.462503, "o", " - Installing \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] +[59.464152, "o", " - Installing \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.466168, "o", " - Installing \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m): Extracting archive\r\n"] +[59.467143, "o", " - Installing \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m): Extracting archive\r\n"] +[59.468779, "o", " - Installing \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m): Extracting archive\r\n"] +[59.470817, "o", " - Installing \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m): Extracting archive\r\n"] +[59.472138, "o", " - Installing \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m): Extracting archive\r\n"] +[59.474063, "o", " - Installing \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] +[59.475651, "o", " - Installing \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m): Extracting archive\r\n"] +[59.476684, "o", " - Installing \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] +[59.477833, "o", " - Installing \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] +[59.47988, "o", " - Installing \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.482418, "o", " - Installing \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] +[59.484419, "o", " - Installing \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.486259, "o", " - Installing \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] +[59.487761, "o", " - Installing \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.490472, "o", " - Installing \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[59.491929, "o", " - Installing \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.493716, "o", " - Installing \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m): Extracting archive\r\n"] +[59.495971, "o", " - Installing \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m): Extracting archive\r\n"] +[59.497321, "o", " - Installing \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m): Extracting archive\r\n"] +[59.499342, "o", " - Installing \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] +[59.500653, "o", " - Installing \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] +[59.501948, "o", " - Installing \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] +[59.503153, "o", " - Installing \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] +[59.50464, "o", " - Installing \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[59.506891, "o", " - Installing \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[59.508486, "o", " - Installing \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] +[59.509621, "o", " - Installing \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] +[59.510968, "o", " - Installing \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m): Extracting archive\r\n"] +[59.512515, "o", " - Installing \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m): Extracting archive\r\n"] +[59.514442, "o", " - Installing \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m): Extracting archive\r\n"] +[59.516415, "o", " - Installing \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m): Extracting archive\r\n"] +[59.517644, "o", " - Installing \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m): Extracting archive\r\n"] +[59.518953, "o", " - Installing \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m): Extracting archive\r\n"] +[59.520297, "o", " - Installing \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m): Extracting archive\r\n"] +[59.521541, "o", " - Installing \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m): Extracting archive\r\n"] +[59.523119, "o", " - Installing \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m): Extracting archive\r\n"] +[59.524642, "o", " - Installing \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] +[59.526079, "o", " - Installing \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] +[59.531719, "o", " - Installing \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m): Extracting archive\r\n"] +[59.534048, "o", " - Installing \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m): Extracting archive\r\n"] +[59.535422, "o", " - Installing \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] +[59.537219, "o", " - Installing \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m): Extracting archive\r\n"] +[59.53875, "o", " - Installing \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m): Extracting archive\r\n"] +[59.540818, "o", " - Installing \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m): Extracting archive\r\n"] +[59.542585, "o", " - Installing \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m): Extracting archive\r\n"] +[59.547178, "o", " - Installing \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] +[59.55052, "o", " - Installing \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] +[59.55365, "o", " - Installing \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m): Extracting archive\r\n"] +[59.55471, "o", " - Installing \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m): Extracting archive\r\n"] +[59.555441, "o", " - Installing \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m): Extracting archive\r\n"] +[59.556311, "o", " - Installing \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m): Extracting archive\r\n"] +[59.557937, "o", " - Installing \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m): Extracting archive\r\n"] +[59.559435, "o", " - Installing \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] +[59.561491, "o", " - Installing \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m): Extracting archive\r\n"] +[59.563185, "o", " - Installing \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n"] +[59.566722, "o", " - Installing \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m): Extracting archive\r\n"] +[59.567988, "o", " - Installing \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m): Extracting archive\r\n"] +[59.569632, "o", " - Installing \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] +[59.570568, "o", " - Installing \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m): Extracting archive\r\n"] +[59.57234, "o", " - Installing \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m): Extracting archive\r\n"] +[59.57445, "o", " - Installing \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m): Extracting archive\r\n"] +[59.575523, "o", " - Installing \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m): Extracting archive\r\n"] +[59.576555, "o", " - Installing \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m): Extracting archive\r\n"] +[59.577379, "o", " - Installing \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] +[59.577996, "o", " - Installing \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m): Extracting archive\r\n"] +[59.57909, "o", " - Installing \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] +[59.58061, "o", " - Installing \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m): Extracting archive\r\n"] +[59.583053, "o", " - Installing \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] +[59.584529, "o", " - Installing \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m): Extracting archive\r\n"] +[59.586349, "o", " - Installing \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m): Extracting archive\r\n"] +[59.588743, "o", " - Installing \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m): Extracting archive\r\n"] +[59.591402, "o", " - Installing \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m): Extracting archive\r\n"] +[59.592801, "o", " - Installing \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m): Extracting archive\r\n"] +[59.59484, "o", " - Installing \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m): Extracting archive\r\n"] +[59.600383, "o", " - Installing \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m): Extracting archive\r\n"] +[59.602731, "o", " - Installing \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] +[59.605137, "o", " - Installing \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] +[59.608135, "o", " - Installing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m): Extracting archive\r\n"] +[59.60933, "o", " - Installing \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m): Extracting archive\r\n"] +[59.610306, "o", " - Installing \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m): Extracting archive\r\n"] +[59.611289, "o", " - Installing \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m): Extracting archive\r\n"] +[59.612612, "o", " - Installing \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m): Extracting archive\r\n"] +[59.614393, "o", " - Installing \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m): Extracting archive\r\n"] +[59.616053, "o", " - Installing \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m): Extracting archive\r\n"] +[59.616822, "o", " - Installing \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m): Extracting archive\r\n"] +[59.618148, "o", " - Installing \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m): Extracting archive\r\n"] +[59.620454, "o", " - Installing \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] +[59.622289, "o", " - Installing \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m): Extracting archive\r\n"] +[59.624813, "o", " - Installing \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m): Extracting archive\r\n"] +[59.626259, "o", " - Installing \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m): Extracting archive\r\n"] +[59.627915, "o", " - Installing \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[59.629712, "o", " - Installing \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m): Extracting archive\r\n"] +[59.632367, "o", " - Installing \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m): Extracting archive\r\n"] +[59.634172, "o", " - Installing \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m): Extracting archive\r\n"] +[59.635227, "o", " - Installing \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] +[59.638867, "o", " - Installing \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] +[59.641772, "o", " - Installing \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] +[59.643751, "o", " - Installing \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m): Extracting archive\r\n"] +[59.647645, "o", " - Installing \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m): Extracting archive\r\n"] +[59.650768, "o", " - Installing \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] +[59.653004, "o", " - Installing \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] +[59.654587, "o", " - Installing \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] +[59.658373, "o", " - Installing \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m): Extracting archive\r\n"] +[59.662971, "o", " - Installing \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] +[59.67144, "o", " - Installing \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] +[59.678386, "o", " - Installing \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] +[59.695296, "o", " - Installing \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m): Extracting archive\r\n"] +[59.71335, "o", " - Installing \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m): Extracting archive\r\n"] +[59.728017, "o", " - Installing \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m): Extracting archive\r\n"] +[59.733955, "o", " - Installing \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m): Extracting archive\r\n"] +[59.738075, "o", " - Installing \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m): Extracting archive\r\n"] +[59.742377, "o", " - Installing \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m): Extracting archive\r\n"] +[59.745802, "o", " - Installing \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m): Extracting archive\r\n"] +[59.748841, "o", " - Installing \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m): Extracting archive\r\n"] +[59.751883, "o", " - Installing \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m): Extracting archive\r\n"] +[59.753346, "o", " - Installing \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m): Extracting archive\r\n"] +[59.755862, "o", " - Installing \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] +[59.758708, "o", " - Installing \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] +[59.759668, "o", " - Installing \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m): Extracting archive\r\n"] +[59.760543, "o", " - Installing \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m): Extracting archive\r\n"] +[59.761818, "o", " - Installing \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m): Extracting archive\r\n"] +[59.762792, "o", " - Installing \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] +[59.765408, "o", " - Installing \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] +[59.766597, "o", " - Installing \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m): Extracting archive\r\n"] +[59.767694, "o", " - Installing \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m): Extracting archive\r\n"] +[59.768914, "o", " - Installing \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m): Extracting archive\r\n"] +[59.769927, "o", " - Installing \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m): Extracting archive\r\n"] +[59.770958, "o", " - Installing \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m): Extracting archive\r\n"] +[59.771805, "o", " - Installing \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] +[59.773311, "o", " - Installing \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] +[59.774486, "o", " - Installing \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m): Extracting archive\r\n"] +[59.775764, "o", " - Installing \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] +[59.77668, "o", " - Installing \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m): Extracting archive\r\n"] +[59.777596, "o", " - Installing \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] +[59.778338, "o", " - Installing \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] +[59.77942, "o", " - Installing \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] +[59.780243, "o", " - Installing \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] +[59.78135, "o", " - Installing \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] +[59.78318, "o", " - Installing \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m): Extracting archive\r\n"] +[59.784049, "o", " - Installing \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] +[59.785101, "o", " - Installing \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m): Extracting archive\r\n"] +[59.786179, "o", " - Installing \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m): Extracting archive\r\n"] +[59.786994, "o", " - Installing \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m): Extracting archive\r\n"] +[59.787928, "o", " - Installing \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m): Extracting archive\r\n"] +[59.78915, "o", " - Installing \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m): Extracting archive\r\n"] +[59.790619, "o", " - Installing \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m): Extracting archive\r\n"] +[59.791446, "o", " - Installing \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m): Extracting archive\r\n"] +[59.818248, "o", " 0/187 [>---------------------------] 0%"] +[60.296539, "o", "\u001b[1G\u001b[2K 22/187 [===>------------------------] 11%"] +[60.778409, "o", "\u001b[1G\u001b[2K 38/187 [=====>----------------------] 20%"] +[61.530226, "o", "\u001b[1G\u001b[2K 58/187 [========>-------------------] 31%"] +[62.319199, "o", "\u001b[1G"] +[62.319538, "o", "\u001b[2K 80/187 [===========>----------------] 42%"] +[62.913856, "o", "\u001b[1G\u001b[2K 95/187 [==============>-------------] 50%"] +[63.748519, "o", "\u001b[1G\u001b[2K 114/187 [=================>----------] 60%"] +[64.670129, "o", "\u001b[1G\u001b[2K 133/187 [===================>--------] 71%"] +[65.679281, "o", "\u001b[1G\u001b[2K 142/187 [=====================>------] 75%"] +[66.608736, "o", "\u001b[1G\u001b[2K 150/187 [======================>-----] 80%"] +[67.418903, "o", "\u001b[1G\u001b[2K 172/187 [=========================>--] 91%"] +[68.478103, "o", "\u001b[1G\u001b[2K 183/187 [===========================>] 97%"] +[70.476585, "o", "\u001b[1G\u001b[2K 184/187 [===========================>] 98%"] +[71.886613, "o", "\u001b[1G\u001b[2K 185/187 [===========================>] 98%"] +[75.686689, "o", "\u001b[1G\u001b[2K 186/187 [===========================>] 99%"] +[123.084502, "o", "\u001b[1G\u001b[2K 187/187 [============================] 100%\u001b[1G\u001b[2K"] +[123.717249, "o", "\u001b[32m27 package suggestions were added by new dependencies, use `composer suggest` to see details.\u001b[39m\r\n"] +[123.722867, "o", "\u001b[32mGenerating autoload files\u001b[39m\r\n"] +[127.306895, "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"] +[127.346354, "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"] +[127.346792, "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"] +[127.346987, "o", " - Skip \u001b[32m[web-root]/update.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - 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 - 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"] +[127.359648, "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"] +[127.360715, "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"] +[127.367439, "o", " - Copy \u001b[32m[web-root]/modules/README.txt\u001b[39m from \u001b[32massets/scaffold/files/modules.README.txt\u001b[39m\r\n - Copy \u001b[32m[web-root]/profiles/README.txt\u001b[39m from \u001b[32massets/scaffold/files/profiles.README.txt\u001b[39m\r\n"] +[127.369833, "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"] +[127.379601, "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"] +[129.216296, "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"] +[129.218688, "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"] +[129.227939, "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"] +[129.227951, "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"] +[129.228053, "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"] +[129.228061, "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"] +[129.228116, "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"] +[129.228171, "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"] +[129.228251, "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"] +[129.228372, "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"] +[129.22844, "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.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"] +[129.228476, "o", "\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."] +[129.228504, "o", "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: htt"] +[129.228535, "o", "ps://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 v"] +[129.228564, "o", "ersion \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."] +[129.228569, "o", "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"] +[129.228595, "o", "/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"] +[129.22863, "o", "/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[32"] +[129.228666, "o", "mdrupal/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://github.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.co"] +[129.228686, "o", "m/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[32mdru"] +[129.228712, "o", "pal/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/lam"] +[129.22874, "o", "inas-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[32m"] +[129.228799, "o", "drupal/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.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[32mco"] +[129.228857, "o", "nsolidation/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.c"] +[129.228925, "o", "om/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."] +[129.228955, "o", "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[3"] +[129.229031, "o", "9m 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"] +[129.229062, "o", "\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/seba"] +[129.22907, "o", "stianbergmann/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[32mseba"] +[129.22909, "o", "stian/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.1"] +[129.229118, "o", "4.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"] +[152.141475, "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 599 packages, and audited 600 packages in 22s\r\n\r\n180 packages are looking for funding\r\n run `npm fund` for details\r\n\r\n2 high severity vulnerabilities\r\n\r\nTo address all issues, run:\r\n npm audit fix\r\n\r\nRun `npm audit` for details.\r\n"] +[170.900522, "o", "\r\n> star_wars@1.0.0 postinstall\r\n> patch-package\r\n\r\n"] +[171.567064, "o", "patch-package 8.0.1\r\nApplying patches...\r\n"] +[171.56805, "o", "No patch files found\r\n"] +[171.590889, "o", "\r\nadded 462 packages, and audited 463 packages in 19s\r\n\r\n"] +[171.59114, "o", "173 packages are looking for funding\r\n run `npm fund` for details\r\n"] +[171.595745, "o", "\r\n3 high severity vulnerabilities\r\n\r\nTo address all issues, run:\r\n npm audit fix\r\n\r\nRun `npm audit` for details.\r\n"] +[172.903979, "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"] +[173.011796, "o", "\r\n> star_wars@1.0.0 clean\r\n> rm -rf build\r\n\r\n"] +[173.134076, "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"] +[173.259412, "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"] +[173.503085, "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"] +[173.908297, "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"] +[174.662843, "o", "\r\n> star_wars@1.0.0 copy\r\n> npm run copy:images && npm run copy:fonts\r\n\r\n"] +[174.774133, "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"] +[174.910678, "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"] +[175.802934, "o", "\u001b[36m[INFO] Started site provisioning.\u001b[0m\r\n"] +[179.56218, "o", "\r\n Drupal core version : 11.4.5\r\n Drush version : 13.7.6.0\r\n\r\n"] +[179.562402, "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"] +[179.563562, "o", " DB dump file path : /app/.data/db.sql (present)\r\n\r\n Profile : standard\r\n"] +[179.563624, "o", " Configuration files present : No\r\n"] +[179.564195, "o", " Existing site found : No\r\n\r\n Provision type : database\r\n"] +[179.564799, "o", " Fallback to profile : No\r\n"] +[179.565086, "o", " Overwrite existing DB : Yes\r\n"] +[179.565544, "o", " Skip DB sanitization : No\r\n"] +[179.566461, "o", " Skip post-provision operations : No\r\n"] +[179.566693, "o", " Verify config after update : No\r\n"] +[179.566724, "o", " Use maintenance mode : Yes\r\n\r\n"] +[179.568102, "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 not found.\r\n Fresh site content will be imported from the database dump file.\r\n"] +[179.58791, "o", "\u001b[36m[INFO] Started database file import.\u001b[0m\r\n"] +[179.925565, "o", "\r\n"] +[179.946062, "o", " // Do you really want to drop all tables in the database drupal?: yes. \r\n\r\n"] +[181.323963, "o", " Imported database from the dump file.\r\n"] +[181.324875, "o", "\u001b[32m[ OK ] Finished database file import.\u001b[0m\r\n\r\n"] +[188.021576, "o", "\u001b[36m[INFO] Current Drupal environment: local\u001b[0m\r\n\r\n"] +[188.023582, "o", "\u001b[34m[TASK] Enabling maintenance mode.\u001b[0m\r\n"] +[188.701147, "o", "\u001b[32m[ OK ] Enabled maintenance mode. (0s)\u001b[0m\r\n\r\n"] +[188.70366, "o", "\u001b[34m[TASK] Running database updates.\u001b[0m\r\n"] +[195.230727, "o", " [success] No pending updates.\r\n"] +[195.252838, "o", "\u001b[32m[ OK ] Completed running database updates. (7s)\u001b[0m\r\n\r\n"] +[195.25608, "o", "\u001b[34m[TASK] Clearing cache after database updates.\u001b[0m\r\n"] +[197.984312, "o", " [success] Cache rebuild complete.\r\n"] +[197.996881, "o", "\u001b[32m[ OK ] Cache was cleared. (2s)\u001b[0m\r\n\r\n"] +[197.998381, "o", "\u001b[34m[TASK] Rebuilding cache.\u001b[0m\r\n"] +[202.991541, "o", " [success] Cache rebuild complete.\r\n"] +[203.011963, "o", "\u001b[32m[ OK ] Cache was rebuilt. (6s)\u001b[0m\r\n\r\n"] +[203.013687, "o", "\u001b[34m[TASK] Running deployment hooks.\u001b[0m\r\n"] +[204.175551, "o", " [success] No pending deploy hooks.\r\n"] +[204.20381, "o", "\u001b[32m[ OK ] Completed deployment hooks. (1s)\u001b[0m\r\n\r\n"] +[204.218447, "o", "\u001b[36m[INFO] Sanitizing database.\u001b[0m\r\n"] +[204.716461, "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"] +[204.717308, "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\n"] +[204.717351, "o", "The following operations will be performed:\r\n"] +[204.720061, "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"] +[204.725383, "o", " // Do you want to sanitize the current database?: yes. \r\n\r\n"] +[205.024871, "o", " [success] User passwords sanitized.\r\n [success] User emails sanitized.\r\n"] +[205.083578, "o", "\u001b[32m[ OK ] Sanitized database using drush sql:sanitize.\u001b[0m\r\n"] +[205.417848, "o", "\r\n"] +[205.429061, "o", "\u001b[32m[ OK ] Applied custom sanitization commands from file.\u001b[0m\r\n"] +[205.774983, "o", "\r\n"] +[206.132314, "o", "\r\n"] +[206.142548, "o", "\u001b[32m[ OK ] Reset user 0 username and email.\u001b[0m\r\n\r\n"] +[206.145925, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\".\u001b[0m\r\n\r\n"] +[206.153918, "o", " ==> Started demo modules operations.\r\n"] +[206.76439, "o", " Environment: local\r\n"] +[206.764894, "o", " > Creating the content model.\r\n"] +[207.610104, "o", "0/2 [░░░░░░░░░░░░░░░░░░░░░░░░░░░░]\r\nApplying recipe\r\n"] +[207.622133, "o", "\r\n2/2 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]\r\nApplied Basic page recipe.\r\n\r\n"] +[207.623683, "o", " [OK] Basic page applied successfully \r\n\r\n"] +[207.630979, "o", " < Created the content model.\r\n > Setting site name.\r\n"] +[210.521476, "o", " < Set site name.\r\n > Setting up the administration navigation.\r\n"] +[212.296699, "o", " [notice] Already installed: navigation\r\n"] +[212.817712, "o", " < Set up the administration navigation.\r\n > Installing contrib modules.\r\n"] +[213.589663, "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"] +[213.591421, "o", "\r\n"] +[213.594999, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[219.84744, "o", " [success] Module coffee has been installed. (Permissions - Configure)\r\n"] +[219.849912, "o", " [success] Module config_split has been installed. (Permissions - Configure)\r\n"] +[219.852096, "o", " [success] Module config_update has been installed.\r\n"] +[219.855261, "o", " [success] Module media has been installed. (Permissions - Configure)\r\n"] +[219.858053, "o", " [success] Module environment_indicator has been installed. (Permissions - Configure)\r\n"] +[219.860725, "o", " [success] Module navigation_extra_tools has been installed. (Permissions)\r\n"] +[219.864189, "o", " [success] Module pathauto has been installed. (Permissions - Configure)\r\n"] +[219.867013, "o", " [success] Module redirect has been installed. (Permissions - Configure)\r\n"] +[219.870314, "o", " [success] Module reroute_email has been installed. (Permissions - Configure)\r\n"] +[219.8735, "o", " [success] Module robotstxt has been installed. (Permissions - Configure)\r\n"] +[219.876566, "o", " [success] Module shield has been installed. (Permissions - Configure)\r\n"] +[219.880199, "o", " [success] Module stage_file_proxy has been installed. (Permissions - Configure)\r\n"] +[219.883369, "o", " [success] Module xmlsitemap has been installed. (Permissions - Configure)\r\n"] +[219.885597, "o", " [success] Module token has been installed.\r\n"] +[219.901778, "o", " < Installed contrib modules.\r\n > Installing Redis module.\r\n"] +[222.300363, "o", " [success] Module redis has been installed. (Permissions - Configure)\r\n"] +[222.313742, "o", " < Installed Redis module.\r\n > Installing and configuring ClamAV.\r\n"] +[224.962699, "o", " [success] Module clamav has been installed. (Permissions - Configure)\r\n"] +[225.692249, "o", "\r\n"] +[225.696046, "o", " // Do you want to update mode_daemon_tcpip.hostname key in clamav.settings \r\n // config?: yes. \r\n\r\n"] +[225.873955, "o", " < Installed and configured ClamAV.\r\n > Installing Solr search modules.\r\n"] +[226.664641, "o", "The following module(s) will be installed: search_api, search_api_solr, language\r\n"] +[226.666082, "o", "\r\n"] +[226.668667, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[230.758812, "o", " [success] Module search_api has been installed. (Permissions - Configure)\r\n"] +[230.761409, "o", " [success] Module search_api_solr has been installed.\r\n"] +[230.764766, "o", " [success] Module language has been installed. (Permissions - Configure)\r\n"] +[230.779349, "o", " < Installed Solr search modules.\r\n > Installing custom site modules.\r\n"] +[234.785282, "o", " [success] Module sw_base has been installed.\r\n"] +[235.510018, "o", "The following module(s) will be installed: sw_search, workflows, content_moderation\r\n"] +[235.512095, "o", "\r\n"] +[235.515002, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[239.19971, "o", " [success] Module sw_search has been installed.\r\n"] +[239.20474, "o", " [success] Module workflows has been installed. (Permissions - Configure)\r\n"] +[239.207267, "o", " [success] Module content_moderation has been installed. (Permissions - Configure)\r\n"] +[239.967735, "o", "The following module(s) will be installed: sw_demo, drupal_helpers, testmode\r\n"] +[239.969172, "o", "\r\n"] +[239.972449, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[242.964312, "o", " [success] Module sw_demo has been installed.\r\n"] +[242.967093, "o", " [success] Module drupal_helpers has been installed.\r\n"] +[242.971503, "o", " [success] Module testmode has been installed. (Configure)\r\n"] +[242.987898, "o", " < Installed custom site modules.\r\n > Running deployment hooks.\r\n"] +[244.428247, "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. "] +[244.428278, "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"] +[244.431863, "o", " // Do you wish to run the specified pending deploy hooks?: yes. \r\n\r\n"] +[245.024417, "o", "> [notice] Deploy hook started: sw_base_deploy_install_active_theme\r\n"] +[249.764995, "o", "> [notice] Performed: sw_base_deploy_install_active_theme\r\n"] +[249.766263, "o", "> [notice] Deploy hook started: sw_demo_deploy_configure_testmode\r\n"] +[249.770587, "o", "> [notice] Configured testmode to filter the pages view.\r\n> [notice] Performed: sw_demo_deploy_configure_testmode\r\n"] +[249.77174, "o", "> [notice] Deploy hook started: sw_demo_deploy_create_pages_menu_link\r\n"] +[249.835202, "o", "> [notice] Created \"Pages\" menu link in main navigation.\r\n> [notice] Performed: sw_demo_deploy_create_pages_menu_link\r\n"] +[249.836936, "o", "> [notice] Deploy hook started: sw_demo_deploy_place_counter_block\r\n"] +[249.849693, "o", "> [notice] Counter block placed in the \"content\" region.\r\n> [notice] Performed: sw_demo_deploy_place_counter_block\r\n"] +[249.851402, "o", "> [notice] Deploy hook started: sw_search_deploy_add_editorial_workflow\r\n"] +[249.876025, "o", "> [notice] Attached editorial workflow to page content type.\r\n> [notice] Performed: sw_search_deploy_add_editorial_workflow\r\n"] +[250.145105, "o", " [success] Finished performing deploy hooks.\r\n"] +[250.171797, "o", " < Ran deployment hooks.\r\n ==> Finished demo modules operations.\r\n"] +[250.171836, "o", "\r\n"] +[250.173632, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\". (44s)\u001b[0m\r\n"] +[250.173704, "o", "\r\n"] +[250.175971, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\".\u001b[0m\r\n\r\n"] +[250.182818, "o", " ==> Started development modules operations.\r\n"] +[250.66164, "o", " Environment: local\r\n"] +[250.662591, "o", " > Installing Single Directory Component development tools.\r\n"] +[254.914125, "o", " [success] Module sdc_devel has been installed.\r\n"] +[254.92875, "o", " < Installed Single Directory Component development tools.\r\n > Installing Devel module.\r\n"] +[259.696239, "o", " [success] Module devel has been installed. (Permissions - Configure)\r\n"] +[259.710188, "o", " < Installed Devel module.\r\n > Installing Testmode module.\r\n"] +[260.402792, "o", " [notice] Already installed: testmode\r\n"] +[260.428533, "o", " < Installed Testmode module.\r\n > Installing Generated content module.\r\n"] +[264.412102, "o", "Started creation of generated content from modules: sw_demo, generated_content.\r\n"] +[264.647571, "o", "Created \"page\" node \"Demo page 1 accusamusanimide\" [ID: 2]\r\n"] +[264.66007, "o", "Created \"page\" node \"Demo page 2 asperioresatquem\" [ID: 3]\r\n"] +[264.671225, "o", "Created \"page\" node \"Demo page 3 debitisdelectuse\" [ID: 4]\r\n"] +[264.682571, "o", "Created \"page\" node \"Demo page 4 inmolestiaeoccae\" [ID: 5]\r\n"] +[264.695177, "o", "Created \"page\" node \"Demo page 5 doloribusiustoof\" [ID: 6]\r\n"] +[264.70668, "o", "Created \"page\" node \"Demo page 6 dolorumevenietli\" [ID: 7]\r\n"] +[264.728425, "o", "Created \"page\" node \"Demo page 7 facereidmaximeni\" [ID: 8]\r\n"] +[264.739988, "o", "Created \"page\" node \"Demo page 8 mollitianonsunta\" [ID: 9]\r\n"] +[264.751221, "o", "Created \"page\" node \"Demo page 9 distinctioharump\" [ID: 10]\r\n"] +[264.762251, "o", "Created \"page\" node \"Demo page 10 idimpeditmaximem\" [ID: 11]\r\n"] +[264.77565, "o", "Created \"page\" node \"Demo page 11 culpadebitisnobi\" [ID: 12]\r\n"] +[264.789593, "o", "Created \"page\" node \"Demo page 12 eosiustooptioqui\" [ID: 13]\r\n"] +[264.802375, "o", "Created \"page\" node \"Demo page 13 etitaqueproviden\" [ID: 14]\r\n"] +[264.814479, "o", "Created \"page\" node \"Demo page 14 animiautculpamai\" [ID: 15]\r\n"] +[264.830165, "o", "Created \"page\" node \"Demo page 15 maioresmolestiae\" [ID: 16]\r\n"] +[264.842967, "o", "Created \"page\" node \"Demo page 16 occaecatiperfere\" [ID: 17]\r\n"] +[264.854402, "o", "Created \"page\" node \"Demo page 17 fugaidimpeditnec\" [ID: 18]\r\n"] +[264.867622, "o", "Created \"page\" node \"Demo page 18 estiustomaximequ\" [ID: 19]\r\n"] +[264.878162, "o", "Created \"page\" node \"Demo page 19 consequaturdeser\" [ID: 20]\r\n"] +[264.889096, "o", "Created \"page\" node \"Demo page 20 doloreseosmaxime\" [ID: 21]\r\n"] +[264.889948, "o", "Created generated content entities \"node\" with bundle \"page\".\r\n"] +[264.917826, "o", "Created all generated content.\r\n"] +[264.918691, "o", "Finished creation of generated content.\r\n"] +[265.149771, "o", " [success] Module generated_content has been installed. (Permissions)\r\n"] +[265.346904, "o", " < Installed Generated content module.\r\n ==> Finished development modules operations.\r\n"] +[265.347088, "o", "\r\n"] +[265.349381, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\". (15s)\u001b[0m\r\n\r\n"] +[265.351332, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-30-search-index.sh\".\u001b[0m\r\n\r\n"] +[265.357159, "o", " ==> Started search indexing operations.\r\n"] +[265.856071, "o", " Environment: local\r\n Search indexing skip: 0\r\n\r\n"] +[265.856683, "o", " > Resetting search index tracker.\r\n"] +[266.368159, "o", " [success] Content was successfully scheduled for reindexing.\r\n"] +[266.39715, "o", " < Reset search index tracker.\r\n > Running search indexing.\r\n"] +[266.9788, "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"] +[267.670674, "o", "> [notice] Successfully indexed 21 items on Content.\r\n"] +[267.687203, "o", "> [notice] Message: Successfully indexed 21 items.\r\n> \r\n"] +[267.74184, "o", " < Completed search indexing.\r\n ==> Finished search indexing operations.\r\n\r\n"] +[267.745189, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-30-search-index.sh\". (2s)\u001b[0m\r\n\r\n"] +[267.747399, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-40-example.sh\".\u001b[0m\r\n\r\n"] +[267.755072, "o", " ==> Started example operations.\r\n"] +[268.309209, "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\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-40-example.sh\". (1s)\u001b[0m\r\n\r\n"] +[268.351283, "o", "\u001b[34m[TASK] Disabling maintenance mode.\u001b[0m\r\n"] +[268.989216, "o", "\u001b[32m[ OK ] Disabled maintenance mode. (0s)\u001b[0m\r\n\r\n"] +[268.991117, "o", "\u001b[32m[ OK ] Finished site provisioning (1m 33s).\u001b[0m\r\n"] +[269.534259, "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"] +[269.534267, "o", " Path to web root : /app/web\r\n DB host : database\r\n DB username : drupal\r\n DB password : drupal\r\n DB port : 3306\r\n DB port on host : 65416 ('ahoy db' to start SequelAce)\r\n Solr URL on host : http://127.0.0.1:65414\r\n Selenium VNC URL on host : http://localhost:65462/?autoconnect=1&password=secret\r\n Mailhog URL : http://mailhog.docker.amazee.io/\r\n"] +[269.564985, "o", " Xdebug : Disabled ('ahoy debug' to enable)\r\n Site login link : "] +[272.799551, "o", "http://vortex_videos.docker.amazee.io/user/reset/1/1787274836/[REDACTED]/login\r\n"] +[272.820861, "o", "\r\n"] +[272.840883, "x", "0"] diff --git a/.vortex/docs/static/img/build.svg b/.vortex/docs/static/img/build.svg index 596621630..97c29a712 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#1readingfromstdin4.03kBdone#1DONE0.0s#2[databaseinternal]loadbuilddefinitionfromdatabase.dockerfile#2transferringdockerfile:816B0.0sdone#2WARN:SecretsUsedInArgOrEnv:DonotuseARGorENVinstructionsforsensitivedata(ENV"MYSQL_PASSWORD")(line18)#2DONE0.0s#3[clamavinternal]loadbuilddefinitionfromclamav.dockerfile#3transferringdockerfile:1.45kB0.0sdone#3DONE0.0s#4[databaseinternal]loadmetadatafordocker.io/uselagoon/mysql-8.4:26.8.0#4DONE0.0s#5[cliinternal]loadbuilddefinitionfromcli.dockerfile#5transferringdockerfile:4.18kB0.0sdone#5DONE0.0s#6[solrinternal]loadbuilddefinitionfromsolr.dockerfile#6transferringdockerfile:1.46kBdone#6DONE0.1s#7[cliinternal]loadmetadatafordocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#7DONE0.0s#8[databaseinternal]load.dockerignore#8transferringcontext:1.23kBdone#8DONE0.0s#9[database1/3]FROMdocker.io/uselagoon/mysql-8.4:26.8.0#9DONE0.0s#10[nginxinternal]loadbuilddefinitionfromnginx-drupal.dockerfile#11DONE0.1s#12[databaseinternal]loadbuildcontext#12transferringcontext:564B0.0sdone#12DONE0.1s#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:8a8c78a93a7832368d9390e73639ac1215c4ca4bfa61063d6a74e40f61693a27f61693a27done#15namingtodocker.io/library/vortex_videos-databasedone#15DONE0.0s#16[database]resolvingprovenanceformetadatafile#16DONE0.0s#17[phpinternal]loadmetadatafordocker.io/uselagoon/php-8.4-fpm:26.8.0#17...#18[auth]uselagoon/php-8.4-fpm:pulltokenforregistry-1.docker.io#18DONE0.0s#19[auth]clamav/clamav-debian: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]uselagoon/commons:pulltokenforregistry-1.docker.io#22DONE0.0s#23[nginxinternal]loadmetadatafordocker.io/uselagoon/nginx-drupal:26.8.0#23...#24[solrinternal]loadmetadatafordocker.io/uselagoon/solr-9-drupal:26.8.0#24DONE1.6s#25[nginxstage-11/5]FROMdocker.io/uselagoon/nginx-drupal:26.8.0@sha256:56ad1a69dc2c752cdd0061a269dcf0723825911bae380565951d7814c701fecf#25DONE0.0s#26[nginxstage-01/10]FROMdocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#26DONE0.0s#27[nginxinternal]loadbuildcontext#29[nginxinternal]loadbuildcontext#29transferringcontext:2.74MB0.1sdone#29DONE0.1s#30[solrinternal]loadbuildcontext#30transferringcontext:1.54MB0.0sdone#30DONE0.0s#31[solr2/3]COPY.docker/config/solr/config-set/solr-conf/conf/#31CACHED#35[nginxstage-02/10]RUNapkadd--no-cachencursespvtzdataautoconfg++make&&peclinstallpcov&&docker-php-ext-enablepcov&&docker-php-ext-installpcntl&&apkdelg++makeautoconf#35CACHED#36[nginxstage-04/10]COPYscripts/app/scripts#36CACHED#37[nginxstage-05/10]COPYcomposer.jsoncomposer.*patches.lock.*.env*auth*/app/#37CACHED#38[nginxstage-03/10]COPYpatches/app/patches#38CACHED#39[nginxstage-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#39CACHED#40[nginxstage-07/10]COPY./app#40DONE0.1s#17DONE1.8s#42[phpstage-11/3]FROMdocker.io/uselagoon/php-8.4-fpm:26.8.0@sha256:cafd9304ab495d6f102fc5ec27f770a4ef33139a89c64bc94db467ccb23ba411#42DONE0.0s#40[phpstage-07/10]COPY./app#40DONE0.2s#43[clamavinternal]loadmetadatafordocker.io/clamav/clamav-debian:1.5.4#43DONE2.0s#44[clamavstage-11/7]FROMdocker.io/clamav/clamav-debian:1.5.4@sha256:2bb8cd7dfe3e87f86e969a2c415f7698583175e46dc2234672be9210c982c144#44DONE0.0s#45[clamavcommons1/1]FROMdocker.io/uselagoon/commons:26.8.0@sha256:0af1b1ed0e4b76a035415637d910290f8ecd75fb46a05be8ca8bfec24f2a84e6#45DONE0.0s#46[clamavinternal]loadbuildcontext#46transferringcontext:285Bdone#46DONE0.1s#47[phpstage-08/10]RUNmkdir-p-m2775"/app/web/sites/default/files""/app/web/sites/default/files/private""/tmp"#50[clamavstage-14/7]RUNapt-getupdate-qq&&DEBIAN_FRONTEND=noninteractiveapt-getinstall-y--no-install-recommendstzdata&&apt-getclean&&rm-rf/var/lib/apt/lists/*#50CACHED#51[clamavstage-12/7]COPY--from=commons/lagoon/lagoon#51CACHED#52[clamavstage-15/7]COPY.docker/config/clamav/clamav.conf/tmp/clamav.conf#52CACHED#53[clamavstage-17/7]RUNfix-permissions/var/lib/clamav#53CACHED#54[clamav]exportingtoimage#54exportinglayersdone#54writingimagesha256:7ac7c6ac3f13de064a3cfc25b0cb3c1c735436a8b0d2a2391b82a29e945f7658done#54namingtodocker.io/library/vortex_videos-clamavdone#54DONE0.0s#55[clamav]resolvingprovenanceformetadatafile#55DONE0.0s#47DONE0.4s#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.918npmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupported#562.352npmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.#562.402npmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.me#562.737npmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinstead#562.757npmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainstead#563.012npmwarndeprecatedrimraf@2.7.1:Rimrafversionspriortov4arenol#563.685npmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.#564.239#564.239>star_wars@1.0.0postinstall#564.239>patch-package#564.327patch-package6.5.1#564.327Applyingpatches...#564.327Nopatchfilesfound#564.344#564.344added475packagesin4s#564.470#564.470>star_wars@1.0.0build#564.470>npmrunclean&&mkdir-pbuild/js&&npmrunconcat&&npmrunuglify&&npmrunsass:prod&&npmrunpostcss:prod&&npmruncopy#564.561#564.561>star_wars@1.0.0clean#564.561>rm-rfbuild#564.655#564.655>star_wars@1.0.0concat#564.655>findjs-name'*.js'!-name'*.min.js'-execcat{}+>build/js/star_wars.min.js#564.752#564.752>star_wars@1.0.0uglify#564.752>terserbuild/js/star_wars.min.js-obuild/js/star_wars.min.js-cdrop_console=true-mreserved=['jQuery','Drupal']2>/dev/null||true#564.920#564.920>star_wars@1.0.0sass:prod#564.920>sassscss/styles.scssbuild/css/star_wars.min.css--no-source-map--style=compressed#565.239#565.239>star_wars@1.0.0postcss:prod#565.239>postcssbuild/css/star_wars.min.css-obuild/css/star_wars.min.css--no-map#565.566#565.566>star_wars@1.0.0copy#565.566>npmruncopy:images&&npmruncopy:fonts#565.666#565.666>star_wars@1.0.0copy:images#565.666>mkdir-pbuild/images&&cp-rimages/*build/images/2>/dev/null||true#565.778#565.778>star_wars@1.0.0copy:fonts#565.778>mkdir-pbuild/fonts&&cp-rfonts/*build/fonts/2>/dev/null||true#565.888npmwarnusing--forceRecommendedprotectionsdisabled.#56DONE6.2s#57[clistage-010/10]WORKDIR/app#57DONE0.0s#58[cli]exportingtoimage#58exportinglayers#58exportinglayers0.9sdone#58writingimagesha256:3c5179dfc29c535e66f78b176d67344de94ac216a0bef9da022a8b7e6f1849e4e6f1849e4done#58namingtodocker.io/library/vortex_videosdone#58DONE0.9s#59[cli]resolvingprovenanceformetadatafile#59DONE0.0s#60[nginxstage-13/5]COPY./.docker/config/nginx/redirects-map.conf/etc/nginx/redirects-map.conf#60CACHED#61[nginxstage-12/5]RUNapkadd--no-cachetzdata#61CACHED#62[nginxstage-14/5]RUNfix-permissions/etc/nginx#62CACHED#63[phpstage-12/3]RUNapkadd--no-cachetzdata#63CACHED#64[phpstage-13/3]COPY--from=cli/app/app#64...#65[nginxstage-15/5]COPY--from=cli/app/app#65DONE3.1s#64DONE3.1s#66[php]exportingtoimage#66exportinglayers#66exportinglayers2.5sdone#66writingimagesha256:87e13a68fa19f38253d12c4a97c0296289f2b10cfc6a469441ea5b87120916fadone#66namingtodocker.io/library/vortex_videos-phpdone#66DONE2.5s#67[nginx]exportingtoimage#67exportinglayers2.5sdone#67writingimagesha256:8bf713408cb97eaa6f2a2d5e3df26643ea39cf850e51e2ee1c6a3c4163e97bbc0.0sdone#67namingtodocker.io/library/vortex_videos-nginxdone#67DONE2.5s#68[nginx]resolvingprovenanceformetadatafile#68DONE0.0s#69[php]resolvingprovenanceformetadatafile#69DONE0.0s[+]up8/12Imagevortex_videos-databaseBuilt20.3sImagevortex_videos-solrBuilt20.3sImagevortex_videos-clamavBuilt20.3sImagevortex_videos-phpBuilt20.3sImagevortex_videos-nginxBuilt20.3sImagevortex_videosBuilt20.3sNetworkvortex_videos_defaultCreated0.0sVolumevortex_videos_solrCreated0.0sContainervortex_videos-clamav-1Creating0.1sContainervortex_videos-database-1Creating0.1sContainervortex_videos-redis-1Creating0.1sContainervortex_videos-solr-1Creating0.1s[+]up10/12Containervortex_videos-clamav-1Creating0.2sContainervortex_videos-database-1Created0.1sContainervortex_videos-redis-1Created0.1sContainervortex_videos-solr-1Creating0.2s[+]up13/14Imagevortex_videos-databaseBuilt20.3sImagevortex_videos-solrBuilt20.3sImagevortex_videos-clamavBuilt20.3sImagevortex_videos-phpBuilt20.3sImagevortex_videos-nginxBuilt20.3sImagevortex_videosBuilt20.3sNetworkvortex_videos_defaultCreated0.0sVolumevortex_videos_solrCreated0.0sContainervortex_videos-clamav-1Created0.2sContainervortex_videos-database-1Created0.1sContainervortex_videos-redis-1Created0.1sContainervortex_videos-solr-1Created0.2sContainervortex_videos-wait-for-dependencies-1Created0.1sContainervortex_videos-cli-1Creating0.0sContainervortex_videos-cli-1Creating0.1s[+]up14/17Containervortex_videos-cli-1Created0.1sContainervortex_videos-php-1Creating0.1sContainervortex_videos-nginx-1Creating0.1sContainervortex_videos-chrome-1Creating0.1sContainervortex_videos-php-1Creating0.2sContainervortex_videos-nginx-1Creating0.2sContainervortex_videos-chrome-1Creating0.2s[+]up16/17Containervortex_videos-php-1Created0.2sContainervortex_videos-nginx-1Created0.2sContainervortex_videos-chrome-1Creating0.3s[+]up13/17Containervortex_videos-clamav-1Starting0.8sContainervortex_videos-database-1Starting0.8sContainervortex_videos-redis-1Starting0.8sContainervortex_videos-solr-1Starting0.8sContainervortex_videos-chrome-1Created0.3sContainervortex_videos-clamav-1Starting0.9sContainervortex_videos-database-1Starting0.9sContainervortex_videos-redis-1Starting0.9sContainervortex_videos-solr-1Starting0.9sContainervortex_videos-clamav-1Starting1.0sContainervortex_videos-database-1Starting1.0sContainervortex_videos-redis-1Starting1.0sContainervortex_videos-solr-1Starting1.0sContainervortex_videos-clamav-1Starting1.1sContainervortex_videos-database-1Starting1.1sContainervortex_videos-redis-1Starting1.1sContainervortex_videos-solr-1Starting1.1sContainervortex_videos-clamav-1Starting1.2sContainervortex_videos-database-1Starting1.2sContainervortex_videos-redis-1Starting1.2sContainervortex_videos-solr-1Starting1.2sContainervortex_videos-clamav-1Starting1.3sContainervortex_videos-database-1Starting1.3sContainervortex_videos-redis-1Starting1.3sContainervortex_videos-solr-1Starting1.3sContainervortex_videos-clamav-1Starting1.4sContainervortex_videos-database-1Starting1.4sContainervortex_videos-redis-1Starting1.4sContainervortex_videos-solr-1Starting1.4sContainervortex_videos-clamav-1Starting1.5sContainervortex_videos-database-1Started1.4sContainervortex_videos-redis-1Starting1.5sContainervortex_videos-solr-1Starting1.5s[+]up15/17Containervortex_videos-clamav-1Starting1.6sContainervortex_videos-redis-1Started1.5sContainervortex_videos-solr-1Starting1.6sContainervortex_videos-clamav-1Started1.6sContainervortex_videos-solr-1Started1.6sContainervortex_videos-wait-for-dependencies-1Starting1.5sContainervortex_videos-wait-for-dependencies-1Starting1.6sContainervortex_videos-wait-for-dependencies-1Starting1.7sContainervortex_videos-wait-for-dependencies-1Starting1.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-1Waiting11.8sContainervortex_videos-wait-for-dependencies-1Waiting11.9sContainervortex_videos-wait-for-dependencies-1Waiting12.0sContainervortex_videos-wait-for-dependencies-1Waiting12.1sContainervortex_videos-wait-for-dependencies-1Waiting12.2sContainervortex_videos-wait-for-dependencies-1Waiting12.3sContainervortex_videos-wait-for-dependencies-1Exited12.4sContainervortex_videos-cli-1Starting12.3sContainervortex_videos-cli-1Starting12.4sContainervortex_videos-cli-1Starting12.5sContainervortex_videos-cli-1Starting12.6sContainervortex_videos-cli-1Starting12.7sContainervortex_videos-cli-1Started12.8sContainervortex_videos-php-1Starting12.7sContainervortex_videos-nginx-1Starting12.7sContainervortex_videos-chrome-1Starting12.7sContainervortex_videos-php-1Starting12.8sContainervortex_videos-nginx-1Starting12.8sContainervortex_videos-chrome-1Starting12.8sContainervortex_videos-php-1Starting12.9sContainervortex_videos-nginx-1Starting12.9sContainervortex_videos-chrome-1Starting12.9sContainervortex_videos-php-1Starting13.0sContainervortex_videos-nginx-1Starting13.0sContainervortex_videos-chrome-1Starting13.0sContainervortex_videos-php-1Starting13.1sContainervortex_videos-nginx-1Starting13.1sContainervortex_videos-chrome-1Starting13.1sContainervortex_videos-php-1Starting13.2sContainervortex_videos-nginx-1Starting13.2sContainervortex_videos-chrome-1Starting13.2sContainervortex_videos-php-1Starting13.3sContainervortex_videos-nginx-1Starting13.3sContainervortex_videos-chrome-1Started13.2sContainervortex_videos-php-1Started13.3sContainervortex_videos-nginx-1Starting13.4s[+]up17/17Containervortex_videos-nginx-1Started13.5sNo 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/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)-Lockin-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)-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)-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)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):Extractingarchive-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):Extractingarchive-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):Extractingarchive-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):Extractingarchive58/187[========>-------------------]31%114/187[=================>----------]60%27packagesuggestionswereaddedbynewdependencies,use`composersuggest`toseedetails.Generatingautoloadfiles110packagesyouareusingarelookingforfunding.Usethe`composerfund`commandtofindoutmore!Scaffoldingfilesfordrupal/core:-Skip[web-root]/.htaccess:overriddeninrebellion/star_wars-Skip[web-root]/README.md:overriddeninrebellion/star_wars-Skip[web-root]/.csslintrc:overriddeninrebellion/star_wars-Skip[web-root]/robots.txt:overriddeninrebellion/star_wars-Skip[web-root]/update.php:overriddeninrebellion/star_wars-Skip[web-root]/INSTALL.txt:overriddeninrebellion/star_wars-Skip[web-root]/.eslintignore:overriddeninrebellion/star_wars-Skip[web-root]/.eslintrc.json:overriddeninrebellion/star_wars-Skip[web-root]/.ht.router.php:overriddeninrebellion/star_wars-Copy[web-root]/sites/README.txtfromassets/scaffold/files/sites.README.txt-Skip[project-root]/.editorconfig:overriddeninrebellion/star_wars-Skip[web-root]/example.gitignore:overriddeninrebellion/star_wars-Copy[web-root]/themes/README.txtfromassets/scaffold/files/themes.README.txt-Skip[project-root]/.gitattributes:overriddeninrebellion/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:overriddeninrebellion/star_wars-Copy[web-root]/sites/development.services.ymlfromassets/scaffold/files/development.services.yml-Skip[web-root]/sites/example.settings.local.php:overriddeninrebellion/star_warsPHPCodeSnifferConfiginstalled_pathssetto../../drevops/phpcs-standard/src,../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,../../phpcsstandards/phpcsutils,../../sirbrillig/phpcs-variable-analysis,../../slevomat/coding-standard>composer/pcre:installed>mglaman/phpstan-drupal:installed>phpstan/phpstan-deprecation-rules:installed-localheinz/diffinstalledinversion1.3.0Releasenotes:https://github.com/localheinz/diff/releases/tag/1.3.01Releasenotes:https://github.com/ergebnis/composer-normalize/releases/tag/2.52.0-phpstan/phpstaninstalledinversion2.2.8-symfony/polyfill-intl-normalizerinstalledinversionv1.38.0v3.7.1Releasenotes: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-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.0Releasenotes:https://github.com/doctrine/persistence/releases/tag/4.2.0-symfony/yamlinstalledinversionv7.4.1515-symfony/var-exporterinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/var-exporter/releases/tag/v7.4.16Releasenotes:https://github.com/drevops/behat-format-progress-fail/releases/tag/1.5.1-symfony/polyfill-php83installedinversionv1.41.0Releasenotes: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-symfony/mimeinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/mime/releases/tag/v7.4.16-twig/html-extrainstalledinversionv3.28.0-psr/http-messageinstalledinversion2.0Releasenotes:https://github.com/php-fig/http-message/releases/tag/2.0-symfony/psr-http-message-bridgeinstalledinversionv7.4.8-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-php-tuf/composer-stagerinstalledinversionv2.1.1Releasenotes:https://github.com/php-tuf/composer-stager/releases/tag/v2.1.1-pear/pear_exceptioninstalledinversionv1.0.2-symfony/polyfill-php80installedinversionv1.37.0Releasenotes:https://github.com/symfony/polyfill-php80/releases/tag/v1.37.0-ralouphie/getallheadersinstalledinversion3.0.3-asm89/stack-corsinstalledinversionv2.4.0Releasenotes:https://github.com/pfrenssen/coder/releases/tag/9.0.1-drupal/coffeeinstalledinversion2.0.1-drupal/config_splitinstalledinversion2.0.2--lullabot/mink-selenium2-driverinstalledinversionv1.7.4.0-drupal/shieldinstalledinversion1.8.0-drupal/stage_file_proxyinstalledinversion4.0.0-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-phpowermove/docblockinstalledinversionv4.0Releasenotes:https://github.com/phpowermove/docblock/releases/tag/v4.0-consolidation/roboinstalledinversion5.1.1-mikey179/vfsstreaminstalledinversionv1.6.122Releasenotes:https://github.com/phpDocumentor/ReflectionCommon/releases/tag/2.2.0-sebastian/object-reflectorinstalledinversion4.0.1.0.2-theseer/tokenizerinstalledinversion1.3.1Releasenotes:https://github.com/theseer/tokenizer/releases/tag/1.3.1releases/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,andaudited612packagesin8s171packagesarelookingforfundingrun`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.menpmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainsteadnpmwarndeprecatedrimraf@2.7.1:Rimrafversionspriortov4arenolongersuppnpmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.>star_wars@1.0.0postinstall>patch-packagepatch-package6.5.1Applyingpatches...Nopatchfilesfoundadded475packages,andaudited476packagesin7s169packagesarelookingforfunding2vulnerabilities(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.(4s)[TASK]Clearingcacheafterdatabaseupdates.[success]Cacherebuildcomplete.[OK]Cachewascleared.(2s)[TASK]Rebuildingcache.[OK]Cachewasrebuilt.(2s)[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".(45s)[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".(17s)[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".(1s)[TASK]Disablingmaintenancemode.[OK]Disabledmaintenancemode.(1s)[OK]Finishedsiteprovisioning(1m25s).[INFO]Projectinformation:Projectname:star_warsDockerComposeprojectname:vortex_videosSitelocalURL:http://vortex_videos.docker.amazee.ioPathtowebroot:/app/webDBhost:databaseDBusername:drupalDBpassword:drupalDBport:3306DBportonhost:56345('ahoydb'tostartSequelAce)SolrURLonhost:http://127.0.0.1:56348SeleniumVNCURLonhost:http://localhost:56375/?autoconnect=1&password=secretMailhogURL:http://mailhog.docker.amazee.io/Xdebug:Disabled('ahoydebug'toenable)Siteloginlink:http://vortex_videos.docker.amazee.io/user/reset/1/1787268313/[REDACTED]/login$$a$ah$aho$ahoyb$ahoybu$ahoybui$ahoybuil#10transferringdockerfile:675B0.1sdone#10DONE0.1s#11[phpinternal]loadbuilddefinitionfromphp.dockerfile#11transferringdockerfile:526B0.0sdone#8[nginxinternal]load.dockerignore#23DONE1.5s#27transferringcontext:254B0.0sdone#27DONE0.1s#28[solr1/3]FROMdocker.io/uselagoon/solr-9-drupal:26.8.0@sha256:de7bb5e9758fe8caf4bc2fb726a9e544e10cfa59c78e319592fed6102f804683#28DONE0.0s#32[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#32CACHED#33[solr]exportingtoimage#33exportinglayersdone#33writingimagesha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660fd05e2d58bcafdone#33namingtodocker.io/library/vortex_videos-solrdone#33DONE0.0s#34[solr]resolvingprovenanceformetadatafile#41[clamavinternal]loadmetadatafordocker.i#41[clamavinternal]loadmetadatafordocker.io/uselagoon/commons:26.8.0#26[phpstage-01/10]FROMdocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#29[phpinternal]loadbuildcontext#29DONE0.2s#36[phpstage-04/10]COPYscripts/app/scripts#37[phpstage-05/10]COPYcomposer.jsoncomposer.*patches.lock.*.env*auth*/app/#38[phpstage-03/10]COPYpatches/app/patches#35[phpstage-02/10]RUNapkadd--no-cachencursespvtzdataautoconfg++make&&peclinstallpcov&&docker-php-ext-enablepcov&&docker-php-ext-installpcntl&&apkdelg++makeautoconf#39[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_A#47[phpstage-08/10]RUNmkdir-p-m277#48[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#48CACHED#49[clamavstage-13/7]COPY--from=commons/bin/fix-permissions/bin/ep/bin/docker-sleep/bin/wait-for/bin/#49CACHED#5Containervortex_videos-cli-1Creating0.1sContainervortex_videos-solr-1Starting1.5sContainervortex_videos-wait-for-dependencies-1Waiting5.2sContainervortex_videos-cli-1Starting12.6s-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/shield(-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)-Lockingpear/pear-core-minimal-Lock-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)0/83[>---------------------------]0%10/83[===>------------------------]12%21/83[=======>--------------------]25%25/83[========>-------------------]30%34/83[===========>----------------]40%43/83[==============>-------------]51%53/83[=================>----------]63%59/83[===================>--------]71%67/83[======================>-----]80%77/83[=========================>--]92%0/8[>---------------------------]0%7/8[========================>---]87%0/187[>---------------------------]0%22/187[===>------------------------]11%41/187[======>---------------------]21%75/187[===========>----------------]40%96/187[==============>-------------]51%132/187[===================>--------]70%143/187[=====================>------]76%151/187[======================>-----]80%169/187[=========================>--]90%183/187[===========================>]97%184/187[===========================>]98%185/187[===========================>]98%186/187[===========================>]99%phpstan/extension-installer:ExtensionsinstalledChangelogssummary:-pyrech/composer-changelogsinstalledinversionv2.2.0Releasenotes:https://github.com/pyrech/composer-changelogs/releases/tag/v2.2.0-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-ergeb-ergebnis/json-printerinstalledinversion3.8.1Releasenotes:https://github.com/ergebnis/json-printer/releases/tag/3.8.1-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.-ergebnis/composer-normalizeinstalledinversion2.52.0-phpstan/exte-phpstan/extension-installerinstalledinversion1.4.3Releasenotes:https://github.com/phpstan/extension-installer/releases/tag/1.4.3-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.2Releasenotes:https://github.com/symReleasenotes:https://github.com/symfony/polyfill-intl-normalizer/releases/tag/v1.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/-symfony/stringinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/string/releases/tag/v7.4.15-psr/containerinstalledinversion2.0.2-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-dantleech/gherkin-lintinstalledinversion0.2.4Releasenotes:https://github.com/dantleech/gherkin-lint-php/releases/tag/0.2.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/symfony/yReleasenotes:https://github.com/symfony/yaml/releases/tag/v7.4.15-symfony/translation-contractsinstalledinversionv3.7.1Releasenotes: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.-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/sReleasenotes:https://github.com/symfony/polyfill-php83/releases/tag/v1.41.0-symfony/http-client-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/symfony/http-client-contracts/releases/tag/-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.5-drevops/behat-steps-drevops/behat-stepsinstalledinversion3.14.1Releasenotes:https://github.com/drevops/behat-steps/releases/tag/3.14.1-drevops/phpcs-standardinstalledinversion1.0.0Releasenotes:https://github.com/drevops/phpcs-standard/releases/tag/1.0.0-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.1Releasenotes:https://github.com/twigphp/html-extra/releases/tag/v3.28.Releasenotes: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.16Releasenotes:httReleasenotes: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-symfony/var-dumperinstalledinv-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.9Releasenotes:https://github.com/pear/PEAR_Exception/releases/tag/v1.0.Releasenotes: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.1Releasenotes:https://github.comReleasenotes:https://github.com/ralouphie/getallheaders/releases/tag/3.0.3-psr/http-factoryinstalledinversion1.1.0Releasenotes: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.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.4Releasenotes:https://github.com/asm89Releasenotes: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.1-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://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.1-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.7Releasenotes:https://github.coReleasenotes: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.1Releasenotes: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/drupal_helpersinstalledinversion2.1.1-drupal/environment_indicatorinstalledinversion4.0.25-drupal/generated_contentinstalledinversion2.1.1-drupal/navigation_extra_toolsinstalledinversion1.3.2-dru-drupal/tokeninstalledinversion1.17.0-drupal/ctoolsinstalledinversion4.1.1-drupal/pathautoinstalledinversion1.15.0-drupal/redirectinstalledinversion1.13.0-drupal/redisinstalledinversion1.11.0-drupal/reroute_emailinstalledinversion2.3.0-rc2-drupal/robotstxtinstalledinversion1.6.0-drupal/sdc_develinstalledinversion1.0.3-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/lam-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/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.5-laravel/promptsinstalledinversionv0.3.23Releasenotes: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-co-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.1Releasenotes:https://github.com/symfony/polyfill-php81/releases/tag/v1.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.3Releasenotes:https://github.cReleasenotes: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-drush/drushinstalledinversion13.7.6Releasenotes:https://github.com/drush-ops/drush/releases/tag/13.7.6-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.2Releasenotes:https://github.com/bovigo/vfsStream/releases/tag/v1.Releasenotes: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.-phpcsstandards/phpcsutilsinstalledinversion1.2.3Releasenotes:https://github.com/PHPCSStandards/PHPCSUtils/releases/tag/1.2.3-phpcompatibility/php-compatibilityinstalledinversion10.0.0-alpha2Releasenotes:https://github.com/PHPCompatibility/PHPCompatibility/releases/tag/10.0.0-alpha2-webmozart/assertinstalledinversion2.4.1Releasenotes:https://github.com/webmozarts/assert/releases/tag/2.4.1-phpdocumentor/reflection-commoninstalledinversion2.2.0-phpdocumentor/type-resolver-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.5Releasenotes: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.3-sebastian/recursion-contextinstalledinversion6.0.3Releasenotes:https://github.com/sebastianbergmann/recursion-context/releases/tag/6.0.3Releasenotes: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.2Releasenotes: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-sebastian/comparatorinstalledinversion6.3.3Releasenotes:https://github.com/sebastianbergmann/comparator/releases/tag/6.3.3-sebastian/code-unitinstalledinversion3.0.3Releasenotes:https://github.com/sebaReleasenotes: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-phpunit/php-timerinstalledinversion7.0.1Releasenotes:https://github.com/sebastianbergmann/php-timer/releases/tag/7.0.1-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/5.0.1-phpunit/php-file-iteratorinstalledinversion5.1.1Releasenotes:https://github.com/sebastianbergmann/php-file-iterator/releases/tag/5.1.1-seba-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/-myclabs/deep-copyinstalledinversion1.1-softcreatr/jsonpnavigation.Siteloginlink: \ No newline at end of file +$ahoy$ahoybuild[INFO]StartedVortextoolinginstallation.[OK]FinishedVortextoolinginstallation.[INFO]Startedreset.[OK]Finishedreset.#1[internal]loadlocalbakedefinitions#1readingfromstdin4.04kBdone#1DONE0.0s#2[nginxinternal]loadbuilddefinitionfromnginx-drupal.dockerfile#2transferringdockerfile:675Bdone0#10[databaseinternal]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[auth]uselagoon/solr-9-drupal:pulltokenforregistry-1.docker.io#17DONE0.0s#18[auth]clamav/clamav-debian:pulltokenforregistry-1.docker.io#18DONE0.0s#19[auth]uselagoon/commons:pulltokenforregistry-1.docker.io#19DONE0.0s#20[auth]uselagoon/php-8.4-fpm:pulltokenforregistry-1.docker.io#20DONE0.0s#21[auth]uselagoon/nginx-drupal:pulltokenforregistry-1.docker.io#21DONE0.0s#22[phpinternal]loadmetadatafordocker.io/uselagoon/php-8.4-fpm:26.8.0#22...#23[nginxinternal]loadmetadatafordocker.io/uselagoon/nginx-drupal:26.8.0#23DONE1.2s#10[nginxinternal]load.dockerignore#24[nginxstage-11/5]FROMdocker.io/uselagoon/nginx-drupal:26.8.0@sha256:56ad1a69dc2c752cdd0061a269dcf0723825911bae380565951d7814c701fecf#24DONE0.0s#25[nginxstage-01/10]FROMdocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#25DONE0.0s#26[nginxinternal]loadbuildcontext#26transferringcontext:254Bdone#26DONE0.0s#27[clamavinternal]loadmetadatafordocker.io/uselagoon/commons:26.8.0#27DONE1.3s#28[nginxinternal]loadbuildcontext#28transferringcontext:2.64MB0.0sdone#28DONE0.1s#29[nginxstage-02/10]RUNapkadd--no-cachencursespvtzdataautoconfg++make&&peclinstallpcov&&docker-php-ext-enablepcov&&docker-php-ext-installpcntl&&apkdelg++makeautoconf#29CACHED#30[nginxstage-03/10]COPYpatches/app/patches#30CACHED#31[nginxstage-05/10]COPYcomposer.jsoncomposer.*patches.lock.*.env*auth*/app/#31CACHED#32[nginxstage-04/10]COPYscripts/app/scripts#32CACHED#33[nginxstage-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#33CACHED#34[nginxstage-07/10]COPY./app#34DONE0.1s#35[solrinternal]loadmetadatafordocker.io/uselagoon/solr-9-drupal:26.8.0#35...#36[nginxstage-08/10]RUNmkdir-p-m2775"/app/web/sites/default/files""/app/web/sites/default/files/private""/tmp"#36DONE0.2s#37[clamavinternal]loadmetadatafordocker.io/clamav/clamav-debian:1.5.4#37DONE1.7s#38[nginxstage-09/10]RUNif["0"!="1"];thentheme_path="/app/web/themes/custom/star_wars";exportnpm_config_cache=/tmp/npm-cache;npm--prefix="${theme_path}"ci--no-progress--no-audit--no-fund&&npm--prefix="${theme_path}"runbuild&&rm-rf/tmp/npm-cache;fi#38...#10[solrinternal]load.dockerignore#25[phpstage-01/10]FROMdocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#28[phpinternal]loadbuildcontext#50writingimagesha256:7ac7c6ac3f13de064a3cfc25b0cb3c1c735436a8b0d2a2391b82a29e945f7658done#53[clamav]resolvingprovenanceformetadatafile#53DONE0.0s#54[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#54CACHED#38[phpstage-09/10]RUNif["0"!="1"];thentheme_path="/app/web/themes/custom/star_wars";exportnpm_config_cache=/tmp/npm-cache;npm--prefix="${theme_path}"ci--no-progress--no-audit--no-fund&&npm--prefix="${theme_path}"runbuild&&rm-rf/tmp/npm-cache;fi#55[solr]exportingtoimage#55exportinglayersdone#55writingimagesha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660fd05e2d58bcaf0.0sdone#55namingtodocker.io/library/vortex_videos-solrdone#55DONE0.1s#56[solr]resolvingprovenanceformetadatafile#56DONE0.0s#384.475#384.475>star_wars@1.0.0postinstall#384.475>patch-package#384.586patch-package8.0.1#384.586Applyingpatches...#384.586Nopatchfilesfound#384.601#384.601added462packagesin4s#384.733#384.733>star_wars@1.0.0build#384.733>npmrunclean&&mkdir-pbuild/js&&npmrunconcat&&npmrunuglify&&npmrunsass:prod&&npmrunpostcss:prod&&npmruncopy#384.825#384.825>star_wars@1.0.0clean#384.825>rm-rfbuild#384.918#384.918>star_wars@1.0.0concat#384.918>findjs-name'*.js'!-name'*.min.js'-execcat{}+>build/js/star_wars.min.js#385.019#385.019>star_wars@1.0.0uglify#385.019>terserbuild/js/star_wars.min.js-obuild/js/star_wars.min.js-cdrop_console=true-mreserved=['jQuery','Drupal']2>/dev/null||true#385.190#385.190>star_wars@1.0.0sass:prod#385.190>sassscss/styles.scssbuild/css/star_wars.min.css--no-source-map--style=compressed#385.523#385.523>star_wars@1.0.0postcss:prod#385.523>postcssbuild/css/star_wars.min.css-obuild/css/star_wars.min.css--no-map#385.855#385.855>star_wars@1.0.0copy#385.855>npmruncopy:images&&npmruncopy:fonts#385.945#385.945>star_wars@1.0.0copy:images#385.945>mkdir-pbuild/images&&cp-rimages/*build/images/2>/dev/null||true#386.048#386.048>star_wars@1.0.0copy:fonts#386.048>mkdir-pbuild/fonts&&cp-rfonts/*build/fonts/2>/dev/null||true#38DONE6.4s#57[clistage-010/10]WORKDIR/app#57DONE0.0s#58[cli]exportingtoimage#58exportinglayers#58exportinglayers0.9sdone#58writingimagesha256:3a21edf1507a761ce1e76fec40f07b22f8bb7c22b8a5ae0fab2ecc83082c037b3082c037bdone#58namingtodocker.io/library/vortex_videos0.0sdone#58DONE1.0s#59[cli]resolvingprovenanceformetadatafile#59DONE0.0s#60[nginxstage-12/5]RUNapkadd--no-cachetzdata#60CACHED#61[nginxstage-13/5]COPY./.docker/config/nginx/redirects-map.conf/etc/nginx/redirects-map.conf#61CACHED#62[nginxstage-14/5]RUNfix-permissions/etc/nginx#62CACHED#63[nginxstage-15/5]COPY--from=cli/app/app#63...#64[phpstage-12/3]RUNapkadd--no-cachetzdata#64CACHED#65[phpstage-13/3]COPY--from=cli/app/app#65DONE3.1s#63DONE3.1s#66[nginx]exportingtoimage#66exportinglayers#66exportinglayers2.6sdone#66writingimagesha256:8a25818a88ea693f2e3badb82b2057b46d0b06afe07ec7e074ff963eef640f11done#66namingtodocker.io/library/vortex_videos-nginxdone#66DONE2.6s#67[php]exportingtoimage#67exportinglayers2.6sdone#67writingimagesha256:e0d169a72e66d2e891a211a161928358e6c0b0930fa62babf3cd1a7e0ff00cbadone#67namingtodocker.io/library/vortex_videos-phpdone#67DONE2.6s#68[nginx]resolvingprovenanceformetadatafile#68DONE0.0s#69[php]resolvingprovenanceformetadatafile#69DONE0.0s[+]up8/12Imagevortex_videos-solrBuilt19.9sImagevortex_videosBuilt19.9sImagevortex_videos-clamavBuilt19.9sImagevortex_videos-phpBuilt19.9sImagevortex_videos-nginxBuilt19.9sImagevortex_videos-databaseBuilt19.9sNetworkvortex_videos_defaultCreated0.0sVolumevortex_videos_solrCreated0.0sContainervortex_videos-database-1Creating0.1sContainervortex_videos-solr-1Creating0.1sContainervortex_videos-redis-1Creating0.1sContainervortex_videos-clamav-1Creating0.1s[+]up11/12Containervortex_videos-solr-1Creating0.2sContainervortex_videos-redis-1Created0.1sContainervortex_videos-clamav-1Created0.2s[+]up12/13Imagevortex_videos-solrBuilt19.9sImagevortex_videosBuilt19.9sImagevortex_videos-clamavBuilt19.9sImagevortex_videos-phpBuilt19.9sImagevortex_videos-nginxBuilt19.9sImagevortex_videos-databaseBuilt19.9sNetworkvortex_videos_defaultCreated0.0sVolumevortex_videos_solrCreated0.0sContainervortex_videos-database-1Created0.2sContainervortex_videos-solr-1Created0.2sContainervortex_videos-redis-1Created0.1sContainervortex_videos-clamav-1Created0.2sContainervortex_videos-wait-for-dependencies-1Creating0.1s[+]up13/14Containervortex_videos-wait-for-dependencies-1Created0.2sContainervortex_videos-cli-1Creating0.0sContainervortex_videos-cli-1Creating0.1s[+]up14/17Containervortex_videos-cli-1Created0.1sContainervortex_videos-nginx-1Creating0.1sContainervortex_videos-php-1Creating0.1sContainervortex_videos-chrome-1Creating0.1s[+]up16/17Containervortex_videos-nginx-1Creating0.2sContainervortex_videos-php-1Created0.2sContainervortex_videos-chrome-1Created0.1s[+]up13/17Containervortex_videos-database-1Starting0.8sContainervortex_videos-solr-1Starting0.8sContainervortex_videos-redis-1Starting0.8sContainervortex_videos-clamav-1Starting0.8sContainervortex_videos-nginx-1Created0.2sContainervortex_videos-database-1Starting0.9sContainervortex_videos-solr-1Starting0.9sContainervortex_videos-redis-1Starting0.9sContainervortex_videos-clamav-1Starting0.9sContainervortex_videos-database-1Starting1.0sContainervortex_videos-solr-1Starting1.0sContainervortex_videos-redis-1Starting1.0sContainervortex_videos-clamav-1Starting1.0sContainervortex_videos-database-1Starting1.1sContainervortex_videos-solr-1Starting1.1sContainervortex_videos-redis-1Starting1.1sContainervortex_videos-clamav-1Starting1.1sContainervortex_videos-database-1Starting1.2sContainervortex_videos-solr-1Starting1.2sContainervortex_videos-redis-1Starting1.2sContainervortex_videos-clamav-1Started1.1s[+]up15/17Containervortex_videos-database-1Starting1.3sContainervortex_videos-solr-1Started1.2sContainervortex_videos-redis-1Starting1.3sContainervortex_videos-database-1Starting1.4sContainervortex_videos-redis-1Started1.3sContainervortex_videos-database-1Started1.4sContainervortex_videos-wait-for-dependencies-1Starting1.3sContainervortex_videos-wait-for-dependencies-1Starting1.4sContainervortex_videos-wait-for-dependencies-1Starting1.5sContainervortex_videos-wait-for-dependencies-1Starting1.6sContainervortex_videos-wait-for-dependencies-1Starting1.7sContainervortex_videos-wait-for-dependencies-1Starting1.8sContainervortex_videos-wait-for-dependencies-1Starting1.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-1Waiting11.8sContainervortex_videos-wait-for-dependencies-1Waiting11.9sContainervortex_videos-wait-for-dependencies-1Waiting12.0sContainervortex_videos-wait-for-dependencies-1Waiting12.1sContainervortex_videos-wait-for-dependencies-1Waiting12.2sContainervortex_videos-wait-for-dependencies-1Waiting12.3sContainervortex_videos-wait-for-dependencies-1Waiting12.4sContainervortex_videos-wait-for-dependencies-1Exited12.4sContainervortex_videos-cli-1Starting12.3sContainervortex_videos-cli-1Starting12.4sContainervortex_videos-cli-1Started12.5sContainervortex_videos-nginx-1Starting12.4sContainervortex_videos-php-1Starting12.4sContainervortex_videos-chrome-1Starting12.4sContainervortex_videos-nginx-1Starting12.5sContainervortex_videos-php-1Starting12.5sContainervortex_videos-chrome-1Starting12.5sContainervortex_videos-nginx-1Starting12.6sContainervortex_videos-php-1Starting12.6sContainervortex_videos-chrome-1Starting12.6sContainervortex_videos-nginx-1Starting12.7sContainervortex_videos-php-1Starting12.7sContainervortex_videos-chrome-1Starting12.7sContainervortex_videos-nginx-1Starting12.8sContainervortex_videos-php-1Starting12.8sContainervortex_videos-chrome-1Started12.7sContainervortex_videos-nginx-1Starting12.9sContainervortex_videos-php-1Started12.9sContainervortex_videos-nginx-1Starting13.0s[+]up17/17Containervortex_videos-nginx-1Started13.0sNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information. LoadingcomposerrepositorieswithpackageinformationUpdatingdependencies-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/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)-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/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/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/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):Extractingarchive-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):Extractingarchive-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):Extractingarchive-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):Extractingarchive58/187[========>-------------------]31%27packagesuggestionswereaddedbynewdependencies,use`composersuggest`toseedetails.Generatingautoloadfiles110packagesyouareusingarelookingforfunding.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_wars-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>composer/pcre:installed>mglaman/phpstan-drupal:installed>phpstan/phpstan-deprecation-rules:installed-localheinz/diffinstalledinversion1.3.0Releasenotes:https://github.com/localheinz/diff/releases/tag/1.3.01Releasenotes:https://github.com/ergebnis/composer-normalize/releases/tag/2.52.0-phpstan/phpstaninstalledinversion2.2.8-symfony/polyfill-intl-normalizerinstalledinversionv1.38.0v3.7.1Releasenotes: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-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.0Releasenotes:https://github.com/doctrine/persistence/releases/tag/4.2.0-symfony/yamlinstalledinversionv7.4.1515-symfony/var-exporterinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/var-exporter/releases/tag/v7.4.16Releasenotes:https://github.com/drevops/behat-format-progress-fail/releases/tag/1.5.1-symfony/polyfill-php83installedinversionv1.41.0Releasenotes: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-symfony/mimeinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/mime/releases/tag/v7.4.16-twig/html-extrainstalledinversionv3.28.0-psr/http-messageinstalledinversion2.0Releasenotes:https://github.com/php-fig/http-message/releases/tag/2.0-symfony/psr-http-message-bridgeinstalledinversionv7.4.8-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-php-tuf/composer-stagerinstalledinversionv2.1.1Releasenotes:https://github.com/php-tuf/composer-stager/releases/tag/v2.1.1-pear/pear_exceptioninstalledinversionv1.0.2-symfony/polyfill-php80installedinversionv1.37.0Releasenotes:https://github.com/symfony/polyfill-php80/releases/tag/v1.37.0-ralouphie/getallheadersinstalledinversion3.0.3-asm89/stack-corsinstalledinversionv2.4.0Releasenotes:https://github.com/pfrenssen/coder/releases/tag/9.0.1-drupal/coffeeinstalledinversion2.0.1-drupal/config_splitinstalledinversion2.0.2--lullabot/mink-selenium2-driverinstalledinversionv1.7.4.0-drupal/shieldinstalledinversion1.8.0-drupal/stage_file_proxyinstalledinversion4.0.0-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-phpowermove/docblockinstalledinversionv4.0Releasenotes:https://github.com/phpowermove/docblock/releases/tag/v4.0-consolidation/roboinstalledinversion5.1.1-mikey179/vfsstreaminstalledinversionv1.6.122Releasenotes:https://github.com/phpDocumentor/ReflectionCommon/releases/tag/2.2.0-sebastian/object-reflectorinstalledinversion4.0.1.0.2-theseer/tokenizerinstalledinversion1.3.1Releasenotes:https://github.com/theseer/tokenizer/releases/tag/1.3.1releases/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-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/jsonpathinstalledinversion0.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/4added599packages,andaudited600packagesin22s180packagesarelookingforfundingrun`npmfund`fordetails2highseverityvulnerabilitiesToaddressallissues,run:npmauditfixRun`npmaudit`fordetails.>star_wars@1.0.0postinstall>patch-packagepatch-package8.0.1Applyingpatches...Nopatchfilesfoundadded462packages,andaudited463packagesin19s173packagesarelookingforfunding3highseverityvulnerabilities>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.(0s)[TASK]Runningdatabaseupdates.[success]Nopendingupdates.[OK]Completedrunningdatabaseupdates.(7s)[TASK]Clearingcacheafterdatabaseupdates.[success]Cacherebuildcomplete.[OK]Cachewascleared.(2s)[TASK]Rebuildingcache.[OK]Cachewasrebuilt.(6s)[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".(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".(15s)[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".(1s)[TASK]Disablingmaintenancemode.[OK]Disabledmaintenancemode.(0s)[OK]Finishedsiteprovisioning(1m33s).[INFO]Projectinformation:Projectname:star_warsDockerComposeprojectname:vortex_videosSitelocalURL:http://vortex_videos.docker.amazee.ioPathtowebroot:/app/webDBhost:databaseDBusername:drupalDBpassword:drupalDBport:3306DBportonhost:65416('ahoydb'tostartSequelAce)SolrURLonhost:http://127.0.0.1:65414SeleniumVNCURLonhost:http://localhost:65462/?autoconnect=1&password=secretMailhogURL:http://mailhog.docker.amazee.io/Xdebug:Disabled('ahoydebug'toenable)Siteloginlink:http://vortex_videos.docker.amazee.io/user/reset/1/1787274836/[REDACTED]/login$$a$ah$aho$ahoyb$ahoybu$ahoybui$ahoybuil#2DONE0.0s#3[databaseinternal]loadbuilddefinitionfromdatabase.dockerfile#3transferringdockerfile:931Bdone#3DONE0.0s#4[clamavinternal]loadbuilddefinitionfromclamav.dockerfile#4transferringdockerfile:1.45kBdone#8[cliinternal]loadbuilddefinitionfromcli.dockerfile#8transferringdockerfile:4.45kBdone#8DONE0.0s#9[cliinternal]loadmetadatafordocker.io/uselagoon/php-8.4-cli-drupal:26.8.#9DONE0.0s#15[data#30[phpstage-03/10]COPYpatches/app/patches#31[phpstage-05/10]COPYcomposer.jsoncomposer.*patches.lock.*.env*auth*/app/#32[phpstage-04/10]COPYscripts/app/scripts#29[phpstage-02/10]RUNapkadd--no-cachencursespvtzdataautoconfg++make&&peclinstallpcov&&docker-php-ext-enablepcov&&docker-php-ext-installpcntl&&apkdelg++makeautoconf#33[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#34[phpstage-07/10]COPY./app#36[phpstage-08/10]RUNmkdir-p-m2775"/app/web/sites/default/files""/app/web/sites/default/files/private""/tmp"#2#39[phpstage-11/3]FROMdocker.io/uselagoon/php-8.4-fpm:26.8.0@sha256:cafd9304ab495d6f102fc5ec27f770a4ef33139a89c64bc94db467ccb23ba411#39DONE0.0s#40[clamavstage-11/7]FROMdocker.io/clamav/clamav-debian:1.5.4@sha256:2bb8cd7dfe3e87f86e969a2c415f7698583175e46dc2234672be9210c982c144#40DONE0.0s#41[clamavcommons1/1]FROMdocker.io/uselagoon/commons:26.8.0@sha256:0af1b1ed0e4b76a035415637d910290f8ecd75fb46a05be8ca8bfec24f2a84e6#41DONE0.0s#42[clamavinternal]loadbuildcontext#42transferringcontext:285Bdone#42DONE0.0s#35DONE1.7s#43[clamavstage-15/7]COPY.docker/config/clamav/clamav.conf/tmp/clamav.conf#43CACHED#44[clamavstage-13/7]COPY--from=commons/bin/fix-permissions/bin/ep/bin/docker-sleep/bin/wait-for/bin/#44CACHED#45[clamavstage-12/7]COPY--from=commons/la#45[clamavstage-12/7]COPY--from=commons/lagoon/lagoon#45CACHED#46[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#46CACHED#47[clamavstage-14/7]RUNapt-getupdate-qq&&DEBIAN_FRONTEND=noninteractiveapt-getinstall-y--no-install-recommendstzdata&&apt-getclean&&rm-rf/var/lib/apt/lists/*#47CACHED#48[clamavstage-17/7]RUNfix-permissions/var/lib/clamav#48CACHED#49[solr1/3]FROMdocker.io/uselagoon/solr-9-drupal:26.8.0@sha256:de7bb5e9758fe8caf4bc2fb726a9e544e10cfa59c78e319592fed6102f804683#49DONE0.0s#50[clamav]exportingtoimage#50exportinglayersdone#50naming#50namingtodocker.io/library/vortex_videos-clamavdone#50DONE0.0s#51[solrinternal]loadbuildcontext#51transferringcontext:1.54MB0.0sdone#51DONE0.0s#52[solr2/3]COPY.docker/config/solr/config-set/solr-conf/conf/#52CACHEDContainervortex_videos-database-1Created0.2sContainervortex_videos-chrome-1Creating0.1sContainervortex_videos-solr-1Starting0.8sContainervortex_videos-redis-1Starting1.0sContainervortex_videos-wait-for-dependencies-1Waiting6.6sLockfileoperations:207installs,0updates,0removals-Lockingasm89/stack-cors(v2.4.0)-Lockingbehat/behat(v3.32.0)-Lockingbehat/gherkin(v4.17.0)-Lockingbehat/mink(v1.13.0)-Lockingdoctrine/lexer-Lockingpear/console_getopt(v1.4.3)-Lockingpear/pear-core-minimal(v1.10.18)-Lockingphpdocumentor/type-resolver(2.0.0)-Lockingphpowermove/docblock(v4.0)-Lockingphpspec/prophecy(v1.26.1)-Lockingphpspec/prophecy-phpunit(v2.5.0)-Locking-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)-Lockingsymfony/browser-kit(-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/mai-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/psr-http-message-bridge(v7.-Lockingwebmozart0/83[>---------------------------]0%9/83[===>------------------------]10%18/83[======>---------------------]21%26/83[========>-------------------]31%35/83[===========>----------------]42%44/83[==============>-------------]53%51/83[=================>----------]61%60/83[====================>-------]72%70/83[=======================>----]84%76/83[=========================>--]91%0/8[>---------------------------]0%2/8[=======>--------------------]25%7/8[========================>---]87%0/187[>---------------------------]0%22/187[===>------------------------]11%38/187[=====>----------------------]20%80/187[===========>----------------]42%95/187[==============>-------------]50%114/187[=================>----------]60%133/187[===================>--------]71%142/187[=====================>------]75%150/187[======================>-----]80%172/187[=========================>--]91%183/187[===========================>]97%184/187[===========================>]98%185/187[===========================>]98%186/187[===========================>]99%phpstan/extension-installer:ExtensionsinstalledChangelogssummary:-pyrech/composer-changelogsinstalledinversionv2.2.0Releasenotes:https://github.com/pyrech/composer-changelogs/releases/tag/v2.2.0-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-ergeb-ergebnis/json-printerinstalledinversion3.8.1Releasenotes:https://github.com/ergebnis/json-printer/releases/tag/3.8.1-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.-ergebnis/composer-normalizeinstalledinversion2.52.0-phpstan/exte-phpstan/extension-installerinstalledinversion1.4.3Releasenotes:https://github.com/phpstan/extension-installer/releases/tag/1.4.3-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.2Releasenotes:https://github.com/symReleasenotes:https://github.com/symfony/polyfill-intl-normalizer/releases/tag/v1.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/-symfony/stringinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/string/releases/tag/v7.4.15-psr/containerinstalledinversion2.0.2-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-dantleech/gherkin-lintinstalledinversion0.2.4Releasenotes:https://github.com/dantleech/gherkin-lint-php/releases/tag/0.2.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/symfony/yReleasenotes:https://github.com/symfony/yaml/releases/tag/v7.4.15-symfony/translation-contractsinstalledinversionv3.7.1Releasenotes: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.-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/sReleasenotes:https://github.com/symfony/polyfill-php83/releases/tag/v1.41.0-symfony/http-client-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/symfony/http-client-contracts/releases/tag/-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.5-drevops/behat-steps-drevops/behat-stepsinstalledinversion3.14.1Releasenotes:https://github.com/drevops/behat-steps/releases/tag/3.14.1-drevops/phpcs-standardinstalledinversion1.0.0Releasenotes:https://github.com/drevops/phpcs-standard/releases/tag/1.0.0-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.1Releasenotes:https://github.com/twigphp/html-extra/releases/tag/v3.28.Releasenotes: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.16Releasenotes:httReleasenotes: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-symfony/var-dumperinstalledinv-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.9Releasenotes:https://github.com/pear/PEAR_Exception/releases/tag/v1.0.Releasenotes: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.1Releasenotes:https://github.comReleasenotes:https://github.com/ralouphie/getallheaders/releases/tag/3.0.3-psr/http-factoryinstalledinversion1.1.0Releasenotes: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.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.4Releasenotes:https://github.com/asm89Releasenotes: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.1-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://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.1-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.7Releasenotes:https://github.coReleasenotes: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.1Releasenotes: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/drupal_helpersinstalledinversion2.1.1-drupal/environment_indicatorinstalledinversion4.0.25-drupal/generated_contentinstalledinversion2.1.1-drupal/navigation_extra_toolsinstalledinversion1.3.2-dru-drupal/tokeninstalledinversion1.17.0-drupal/ctoolsinstalledinversion4.1.1-drupal/pathautoinstalledinversion1.15.0-drupal/redirectinstalledinversion1.13.0-drupal/redisinstalledinversion1.11.0-drupal/reroute_emailinstalledinversion2.3.0-rc2-drupal/robotstxtinstalledinversion1.6.0-drupal/sdc_develinstalledinversion1.0.3-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/lam-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/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.5-laravel/promptsinstalledinversionv0.3.23Releasenotes: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-co-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.1Releasenotes:https://github.com/symfony/polyfill-php81/releases/tag/v1.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.3Releasenotes:https://github.cReleasenotes: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-drush/drushinstalledinversion13.7.6Releasenotes:https://github.com/drush-ops/drush/releases/tag/13.7.6-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.2Releasenotes:https://github.com/bovigo/vfsStream/releases/tag/v1.Releasenotes: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.-phpcsstandards/phpcsutilsinstalledinversion1.2.3Releasenotes:https://github.com/PHPCSStandards/PHPCSUtils/releases/tag/1.2.3-phpcompatibility/php-compatibilityinstalledinversion10.0.0-alpha2Releasenotes:https://github.com/PHPCompatibility/PHPCompatibility/releases/tag/10.0.0-alpha2-webmozart/assertinstalledinversion2.4.1Releasenotes:https://github.com/webmozarts/assert/releases/tag/2.4.1-phpdocumentor/reflection-commoninstalledinversion2.2.0-phpdocumentor/type-resolver-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.5Releasenotes: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.3-sebastian/recursion-contextinstalledinversion6.0.3Releasenotes:https://github.com/sebastianbergmann/recursion-context/releases/tag/6.0.3Releasenotes: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.2Releasenotes: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-sebastian/comparatorinstalledinversion6.3.3Releasenotes:https://github.com/sebastianbergmann/comparator/releases/tag/6.3.3-sebastian/code-unitinstalledinversion3.0.3Releasenotes:https://github.com/sebaReleasenotes: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-phpunit/php-timerinstalledinversion7.0.1Releasenotes:https://github.com/sebastianbergmann/php-timer/releases/tag/7.0.1-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/5.0.1-phpunit/php-file-iteratorinstalledinversion5.1.1Releasenotes:https://github.com/sebastianbergmann/php-file-iterator/releases/tag/5.1.1-seba-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/-myclabs/deep-copyinstalledinversion1.1-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-softcreatr/jsonpnavigation.Siteloginlink: \ No newline at end of file diff --git a/.vortex/docs/static/img/lint.json b/.vortex/docs/static/img/lint.json index 0e53cd97c..bf05f5ce7 100644 --- a/.vortex/docs/static/img/lint.json +++ b/.vortex/docs/static/img/lint.json @@ -1,48 +1,48 @@ -{"version":2,"width":80,"height":27,"timestamp":1787268447,"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.031469,"o","$ "] -[0.282629,"o","a"] -[0.310142,"o","h"] -[0.337392,"o","o"] -[0.364173,"o","y"] -[0.390965,"o"," "] -[0.416231,"o","l"] -[0.443762,"o","i"] -[0.470167,"o","n"] -[0.49604,"o","t"] -[0.723729,"o","\r\n"] -[1.563973,"o","."] -[1.565991,"o","."] -[1.590805,"o","."] -[1.644604,"o","."] -[1.655293,"o","."] -[1.662112,"o","."] -[1.670536,"o","."] -[1.671664,"o","."] -[1.711836,"o","."] -[1.800564,"o",". 10 / 10 (100%)\r\n\r\n\r\n"] -[1.801253,"o","Time: 1.91 secs; Memory: 16MB\r\n"] -[2.253493,"o","Note: Using configuration file /app/phpstan.neon.\r\n"] -[3.912426,"o"," 0/58 [\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%"] -[7.374819,"o","\u001b[1G\u001b[2K 20/58 [\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] 34%"] -[8.367966,"o","\u001b[1G\u001b[2K 39/58 [\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] 67%"] -[9.009334,"o","\u001b[1G\u001b[2K 58/58 [\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%"] -[9.033457,"o","\r\n\r\n"] -[9.037612,"o","\r\n [OK] No errors \r\n\r\n"] -[10.863227,"o"," 0/58 [\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%"] -[27.590638,"o","\u001b[1G\u001b[2K 16/58 [\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] 27%"] -[30.598695,"o","\u001b[1G\u001b[2K 26/58 [\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\u2591] 44%"] -[31.215959,"o","\u001b[1G\u001b[2K 42/58 [\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] 72%"] -[31.644114,"o","\u001b[1G\u001b[2K 58/58 [\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%"] -[31.707792,"o","\r\n\r\n [OK] Rector is done! \r\n\r\n"] -[31.881969,"o","\r\n"] -[31.882421,"o"," [OK] Files linted: 3, notices: 0, warnings: 0, errors: 0 \r\n\r\n"] -[32.015874,"o","\r\n> lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] -[32.066706,"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"] -[33.305413,"o","\r\n> lint-css\r\n> stylelint --allow-empty-input \"web/modules/custom/**/*.css\"\r\n\r\n"] -[33.929812,"o","\r\n> star_wars@1.0.0 lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] -[33.978669,"o","\r\n> star_wars@1.0.0 lint-js\r\n> eslint 'js/**/*.js' --ignore-pattern '*.min.js'\r\n\r\n"] -[34.971063,"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"] -[35.031352,"o","\r\n> star_wars@1.0.0 lint-css\r\n> stylelint 'scss/**/*.scss'\r\n\r\n"] -[35.735434,"o","Using config file \"gherkinlint.json\"\r\n"] -[35.774975,"o","No problems found in 13 feature files (took 0.048448085784912 seconds)\r\n"] -[35.785129,"x","0"] +{"version":2,"width":80,"height":27,"timestamp":1787274851,"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.035364,"o","$ "] +[0.285654,"o","a"] +[0.312236,"o","h"] +[0.338299,"o","o"] +[0.365815,"o","y"] +[0.393333,"o"," "] +[0.420842,"o","l"] +[0.447119,"o","i"] +[0.476889,"o","n"] +[0.502764,"o","t"] +[0.730332,"o","\r\n"] +[1.679193,"o","."] +[1.679251,"o","."] +[1.73092,"o","."] +[1.731278,"o","."] +[1.731843,"o","."] +[1.761808,"o","."] +[1.767424,"o","."] +[1.77134,"o","."] +[1.814285,"o","."] +[1.894097,"o",". 10 / 10 (100%)\r\n\r\n\r\n"] +[1.894685,"o","Time: 2.01 secs; Memory: 16MB\r\n"] +[2.351541,"o","Note: Using configuration file /app/phpstan.neon.\r\n"] +[3.952611,"o"," 0/58 [\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%"] +[7.406399,"o","\u001b[1G\u001b[2K 20/58 [\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] 34%"] +[8.390395,"o","\u001b[1G\u001b[2K 39/58 [\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] 67%"] +[9.054363,"o","\u001b[1G\u001b[2K 58/58 [\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%"] +[9.06942,"o","\r\n\r\n"] +[9.073444,"o","\r\n [OK] No errors \r\n\r\n"] +[11.093473,"o"," 0/58 [\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%"] +[28.50269,"o","\u001b[1G\u001b[2K 16/58 [\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] 27%"] +[31.650648,"o","\u001b[1G\u001b[2K 26/58 [\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\u2591] 44%"] +[32.119956,"o","\u001b[1G\u001b[2K 42/58 [\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] 72%"] +[32.508651,"o","\u001b[1G\u001b[2K 58/58 [\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%"] +[32.528957,"o","\r\n\r\n"] +[32.529448,"o"," [OK] Rector is done! \r\n\r\n"] +[32.732277,"o","\r\n"] +[32.732736,"o"," [OK] Files linted: 3, notices: 0, warnings: 0, errors: 0 \r\n\r\n"] +[32.909298,"o","\r\n> lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] +[32.957568,"o","\r\n> lint-js\r\n> eslint web/modules/custom --max-warnings=0 --no-error-on-unmatched-pattern\r\n\r\n"] +[34.266059,"o","\r\n> lint-css\r\n> stylelint --allow-empty-input \"web/modules/custom/**/*.css\"\r\n\r\n"] +[34.942656,"o","\r\n> star_wars@1.0.0 lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] +[34.991264,"o","\r\n> star_wars@1.0.0 lint-js\r\n> eslint 'js/**/*.js' --ignore-pattern '*.min.js'\r\n\r\n"] +[36.049326,"o","\r\n> star_wars@1.0.0 lint-css\r\n> stylelint 'scss/**/*.scss'\r\n\r\n"] +[36.857443,"o","Using config file \"gherkinlint.json\"\r\n"] +[36.9072,"o","No problems found in 13 feature files (took 0.056607961654663 seconds)\r\n"] +[36.918428,"x","0"] diff --git a/.vortex/docs/static/img/lint.png b/.vortex/docs/static/img/lint.png index 3638a4350..065431211 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 8250578ea..a42a8dc4a 100644 --- a/.vortex/docs/static/img/lint.svg +++ b/.vortex/docs/static/img/lint.svg @@ -1 +1 @@ -$ahoy$ahoylint..........10/10(100%)Time:1.91secs;Memory:16MBNote:Usingconfigurationfile/app/phpstan.neon.0/58[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]0%58/58[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]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/58[▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░]34%39/58[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░]67%16/58[▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░]27%26/58[▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░]44%42/58[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░]72%Noproblemsfoundin13featurefiles(took0.048448085784912seconds) \ No newline at end of file +$ahoy$ahoylint..........10/10(100%)Time:2.01secs;Memory:16MBNote:Usingconfigurationfile/app/phpstan.neon.0/58[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]0%58/58[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]100%[OK]Noerrors[OK]Rectorisdone![OK]Fileslinted:3,notices:0,warnings:0,errors:0>lint>npmrunlint-js&&npmrunlint-css>lint-js>eslintweb/modules/custom--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'>star_wars@1.0.0lint-css>stylelint'scss/**/*.scss'Usingconfigfile"gherkinlint.json"$$a$ah$aho$ahoyl$ahoyli$ahoylin.............................................20/58[▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░]34%39/58[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░]67%16/58[▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░]27%26/58[▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░]44%42/58[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░]72%Noproblemsfoundin13featurefiles(took0.056607961654663seconds) \ No newline at end of file diff --git a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/cli.dockerfile b/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/cli.dockerfile index 45bb1a205..b176e93b4 100644 --- a/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/cli.dockerfile +++ b/.vortex/installer/tests/Fixtures/handler_process/_baseline/.docker/cli.dockerfile @@ -93,9 +93,10 @@ RUN mkdir -p -m 2775 "/app/${WEBROOT}/${DRUPAL_PUBLIC_FILES}" "/app/${WEBROOT}/$ RUN if [ "${VORTEX_FRONTEND_BUILD_SKIP}" != "1" ]; then \ theme_path="/app/${WEBROOT}/themes/custom/${DRUPAL_THEME}"; \ + export npm_config_cache=/tmp/npm-cache; \ npm --prefix="${theme_path}" ci --no-progress --no-audit --no-fund && \ npm --prefix="${theme_path}" run build && \ - npm cache clean --force; \ + rm -rf /tmp/npm-cache; \ fi WORKDIR /app diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/.docker/cli.dockerfile b/.vortex/installer/tests/Fixtures/handler_process/theme_claro/.docker/cli.dockerfile index e75ee483c..c90165c2c 100644 --- a/.vortex/installer/tests/Fixtures/handler_process/theme_claro/.docker/cli.dockerfile +++ b/.vortex/installer/tests/Fixtures/handler_process/theme_claro/.docker/cli.dockerfile @@ -7,16 +7,17 @@ ENV DRUPAL_THEME=${DRUPAL_THEME} ARG VORTEX_FRONTEND_BUILD_SKIP="0" -@@ -90,12 +90,5 @@ +@@ -90,13 +90,5 @@ # Create file directories and set correct permissions. # hadolint ignore=SC2174 # only the leaf directory needs the mode RUN mkdir -p -m 2775 "/app/${WEBROOT}/${DRUPAL_PUBLIC_FILES}" "/app/${WEBROOT}/${DRUPAL_PRIVATE_FILES}" "${DRUPAL_TEMPORARY_FILES}" - -RUN if [ "${VORTEX_FRONTEND_BUILD_SKIP}" != "1" ]; then \ - theme_path="/app/${WEBROOT}/themes/custom/${DRUPAL_THEME}"; \ +- export npm_config_cache=/tmp/npm-cache; \ - npm --prefix="${theme_path}" ci --no-progress --no-audit --no-fund && \ - npm --prefix="${theme_path}" run build && \ -- npm cache clean --force; \ +- rm -rf /tmp/npm-cache; \ - fi WORKDIR /app diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/.docker/cli.dockerfile b/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/.docker/cli.dockerfile index e75ee483c..c90165c2c 100644 --- a/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/.docker/cli.dockerfile +++ b/.vortex/installer/tests/Fixtures/handler_process/theme_olivero/.docker/cli.dockerfile @@ -7,16 +7,17 @@ ENV DRUPAL_THEME=${DRUPAL_THEME} ARG VORTEX_FRONTEND_BUILD_SKIP="0" -@@ -90,12 +90,5 @@ +@@ -90,13 +90,5 @@ # Create file directories and set correct permissions. # hadolint ignore=SC2174 # only the leaf directory needs the mode RUN mkdir -p -m 2775 "/app/${WEBROOT}/${DRUPAL_PUBLIC_FILES}" "/app/${WEBROOT}/${DRUPAL_PRIVATE_FILES}" "${DRUPAL_TEMPORARY_FILES}" - -RUN if [ "${VORTEX_FRONTEND_BUILD_SKIP}" != "1" ]; then \ - theme_path="/app/${WEBROOT}/themes/custom/${DRUPAL_THEME}"; \ +- export npm_config_cache=/tmp/npm-cache; \ - npm --prefix="${theme_path}" ci --no-progress --no-audit --no-fund && \ - npm --prefix="${theme_path}" run build && \ -- npm cache clean --force; \ +- rm -rf /tmp/npm-cache; \ - fi WORKDIR /app diff --git a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/.docker/cli.dockerfile b/.vortex/installer/tests/Fixtures/handler_process/theme_stark/.docker/cli.dockerfile index e75ee483c..c90165c2c 100644 --- a/.vortex/installer/tests/Fixtures/handler_process/theme_stark/.docker/cli.dockerfile +++ b/.vortex/installer/tests/Fixtures/handler_process/theme_stark/.docker/cli.dockerfile @@ -7,16 +7,17 @@ ENV DRUPAL_THEME=${DRUPAL_THEME} ARG VORTEX_FRONTEND_BUILD_SKIP="0" -@@ -90,12 +90,5 @@ +@@ -90,13 +90,5 @@ # Create file directories and set correct permissions. # hadolint ignore=SC2174 # only the leaf directory needs the mode RUN mkdir -p -m 2775 "/app/${WEBROOT}/${DRUPAL_PUBLIC_FILES}" "/app/${WEBROOT}/${DRUPAL_PRIVATE_FILES}" "${DRUPAL_TEMPORARY_FILES}" - -RUN if [ "${VORTEX_FRONTEND_BUILD_SKIP}" != "1" ]; then \ - theme_path="/app/${WEBROOT}/themes/custom/${DRUPAL_THEME}"; \ +- export npm_config_cache=/tmp/npm-cache; \ - npm --prefix="${theme_path}" ci --no-progress --no-audit --no-fund && \ - npm --prefix="${theme_path}" run build && \ -- npm cache clean --force; \ +- rm -rf /tmp/npm-cache; \ - fi WORKDIR /app diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.docker/cli.dockerfile b/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.docker/cli.dockerfile index e75ee483c..c90165c2c 100644 --- a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.docker/cli.dockerfile +++ b/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme/.docker/cli.dockerfile @@ -7,16 +7,17 @@ ENV DRUPAL_THEME=${DRUPAL_THEME} ARG VORTEX_FRONTEND_BUILD_SKIP="0" -@@ -90,12 +90,5 @@ +@@ -90,13 +90,5 @@ # Create file directories and set correct permissions. # hadolint ignore=SC2174 # only the leaf directory needs the mode RUN mkdir -p -m 2775 "/app/${WEBROOT}/${DRUPAL_PUBLIC_FILES}" "/app/${WEBROOT}/${DRUPAL_PRIVATE_FILES}" "${DRUPAL_TEMPORARY_FILES}" - -RUN if [ "${VORTEX_FRONTEND_BUILD_SKIP}" != "1" ]; then \ - theme_path="/app/${WEBROOT}/themes/custom/${DRUPAL_THEME}"; \ +- export npm_config_cache=/tmp/npm-cache; \ - npm --prefix="${theme_path}" ci --no-progress --no-audit --no-fund && \ - npm --prefix="${theme_path}" run build && \ -- npm cache clean --force; \ +- rm -rf /tmp/npm-cache; \ - fi WORKDIR /app diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.docker/cli.dockerfile b/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.docker/cli.dockerfile index e75ee483c..c90165c2c 100644 --- a/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.docker/cli.dockerfile +++ b/.vortex/installer/tests/Fixtures/handler_process/tools_groups_no_fe_lint_no_theme_circleci/.docker/cli.dockerfile @@ -7,16 +7,17 @@ ENV DRUPAL_THEME=${DRUPAL_THEME} ARG VORTEX_FRONTEND_BUILD_SKIP="0" -@@ -90,12 +90,5 @@ +@@ -90,13 +90,5 @@ # Create file directories and set correct permissions. # hadolint ignore=SC2174 # only the leaf directory needs the mode RUN mkdir -p -m 2775 "/app/${WEBROOT}/${DRUPAL_PUBLIC_FILES}" "/app/${WEBROOT}/${DRUPAL_PRIVATE_FILES}" "${DRUPAL_TEMPORARY_FILES}" - -RUN if [ "${VORTEX_FRONTEND_BUILD_SKIP}" != "1" ]; then \ - theme_path="/app/${WEBROOT}/themes/custom/${DRUPAL_THEME}"; \ +- export npm_config_cache=/tmp/npm-cache; \ - npm --prefix="${theme_path}" ci --no-progress --no-audit --no-fund && \ - npm --prefix="${theme_path}" run build && \ -- npm cache clean --force; \ +- rm -rf /tmp/npm-cache; \ - fi WORKDIR /app diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.docker/cli.dockerfile b/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.docker/cli.dockerfile index e75ee483c..c90165c2c 100644 --- a/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.docker/cli.dockerfile +++ b/.vortex/installer/tests/Fixtures/handler_process/tools_no_eslint_no_theme/.docker/cli.dockerfile @@ -7,16 +7,17 @@ ENV DRUPAL_THEME=${DRUPAL_THEME} ARG VORTEX_FRONTEND_BUILD_SKIP="0" -@@ -90,12 +90,5 @@ +@@ -90,13 +90,5 @@ # Create file directories and set correct permissions. # hadolint ignore=SC2174 # only the leaf directory needs the mode RUN mkdir -p -m 2775 "/app/${WEBROOT}/${DRUPAL_PUBLIC_FILES}" "/app/${WEBROOT}/${DRUPAL_PRIVATE_FILES}" "${DRUPAL_TEMPORARY_FILES}" - -RUN if [ "${VORTEX_FRONTEND_BUILD_SKIP}" != "1" ]; then \ - theme_path="/app/${WEBROOT}/themes/custom/${DRUPAL_THEME}"; \ +- export npm_config_cache=/tmp/npm-cache; \ - npm --prefix="${theme_path}" ci --no-progress --no-audit --no-fund && \ - npm --prefix="${theme_path}" run build && \ -- npm cache clean --force; \ +- rm -rf /tmp/npm-cache; \ - fi WORKDIR /app diff --git a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.docker/cli.dockerfile b/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.docker/cli.dockerfile index e75ee483c..c90165c2c 100644 --- a/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.docker/cli.dockerfile +++ b/.vortex/installer/tests/Fixtures/handler_process/tools_no_stylelint_no_theme/.docker/cli.dockerfile @@ -7,16 +7,17 @@ ENV DRUPAL_THEME=${DRUPAL_THEME} ARG VORTEX_FRONTEND_BUILD_SKIP="0" -@@ -90,12 +90,5 @@ +@@ -90,13 +90,5 @@ # Create file directories and set correct permissions. # hadolint ignore=SC2174 # only the leaf directory needs the mode RUN mkdir -p -m 2775 "/app/${WEBROOT}/${DRUPAL_PUBLIC_FILES}" "/app/${WEBROOT}/${DRUPAL_PRIVATE_FILES}" "${DRUPAL_TEMPORARY_FILES}" - -RUN if [ "${VORTEX_FRONTEND_BUILD_SKIP}" != "1" ]; then \ - theme_path="/app/${WEBROOT}/themes/custom/${DRUPAL_THEME}"; \ +- export npm_config_cache=/tmp/npm-cache; \ - npm --prefix="${theme_path}" ci --no-progress --no-audit --no-fund && \ - npm --prefix="${theme_path}" run build && \ -- npm cache clean --force; \ +- rm -rf /tmp/npm-cache; \ - fi WORKDIR /app