diff --git a/.vortex/docs/.utils/VideoRecorder.php b/.vortex/docs/.utils/VideoRecorder.php index 2987fb79d0..96fd719eeb 100644 --- a/.vortex/docs/.utils/VideoRecorder.php +++ b/.vortex/docs/.utils/VideoRecorder.php @@ -24,6 +24,42 @@ final class VideoRecorder { public const LINE_HEIGHT = '1.1'; + /** + * Height the renderer draws a character at, in column widths. + * + * Passed to the renderer, so this is the value it uses rather than a copy of + * it. + */ + public const FONT_SIZE = '1.67'; + + /** + * Return the rows that give a terminal of the given width a wanted shape. + * + * The renderer draws a cell one column wide and FONT_SIZE * LINE_HEIGHT + * column widths tall, so a terminal's rendered aspect is + * cols / (rows * FONT_SIZE * LINE_HEIGHT). Solving that for rows fixes the + * shape of every recording to one number rather than to a pair that has to + * be kept consistent by hand. + * + * @param int $cols + * Columns the terminal is recorded at. + * @param float $aspect + * Wanted width divided by height. + * + * @return int + * Rows to record, rounded to the nearest whole row. + */ + public static function rowsForAspect(int $cols, float $aspect): int { + if ($cols < 1) { + throw new InvalidArgumentException('Columns must be positive, got ' . $cols); + } + if ($aspect <= 0) { + throw new InvalidArgumentException('Aspect must be positive, got ' . $aspect); + } + + return max(1, (int) round($cols / ($aspect * (float) self::FONT_SIZE * (float) self::LINE_HEIGHT))); + } + public function __construct( public readonly string $project_root, public readonly string $docs_static_dir, @@ -405,6 +441,7 @@ public function renderSvg(string $cast_path, string $svg_path): void { $cast_path, $svg_path, '--line-height', self::LINE_HEIGHT, + '--font-size', self::FONT_SIZE, ]); if (!is_file($svg_path)) { @@ -466,6 +503,7 @@ public function renderPng(string $cast_path, string $png_path, ?int $at_ms = NUL $cast_path, $frame_svg, '--line-height', self::LINE_HEIGHT, + '--font-size', self::FONT_SIZE, '--at', (string) $at, ]); diff --git a/.vortex/docs/.utils/svg-term-render.js b/.vortex/docs/.utils/svg-term-render.js index e1f4c742e1..6c462655ce 100755 --- a/.vortex/docs/.utils/svg-term-render.js +++ b/.vortex/docs/.utils/svg-term-render.js @@ -11,6 +11,7 @@ * Options: * --at Timestamp of frame to render * --line-height Line height multiplier (default: 1.0) + * --font-size Character height in column widths (default: 1.67) * --font-family Font family (default: Consolas, monospace) */ @@ -30,6 +31,7 @@ if (args.length < 2 || args.includes('--help')) { console.log('Options:'); console.log(' --at Timestamp of frame to render'); console.log(' --line-height Line height multiplier (default: 1.0)'); + console.log(' --font-size Character height in column widths (default: 1.67)'); console.log(' --font-family Font family (default: Consolas, monospace)'); process.exit(args.includes('--help') ? 0 : 1); } @@ -40,6 +42,7 @@ const outputFile = args[1]; // Parse options. let at = null; let lineHeight = 1.0; +let fontSize = 1.67; let fontFamily = 'Consolas, "Courier New", Courier, "Liberation Mono", monospace'; for (let i = 2; i < args.length; i++) { @@ -49,6 +52,9 @@ for (let i = 2; i < args.length; i++) { } else if (args[i] === '--line-height' && i + 1 < args.length) { lineHeight = parseFloat(args[i + 1]); i++; + } else if (args[i] === '--font-size' && i + 1 < args.length) { + fontSize = parseFloat(args[i + 1]); + i++; } else if (args[i] === '--font-family' && i + 1 < args.length) { fontFamily = args[i + 1]; i++; @@ -129,7 +135,7 @@ const theme = { text: [171, 178, 191], // #abb2bf cursor: [82, 139, 255], // #528bff bold: [171, 178, 191], // #abb2bf - fontSize: 1.67, + fontSize: fontSize, lineHeight: lineHeight, fontFamily: fontFamily, }; @@ -150,6 +156,7 @@ try { fs.writeFileSync(outputFile, svg, 'utf8'); console.log(`SVG rendered successfully: ${outputFile}`); console.log(` lineHeight: ${lineHeight}`); + console.log(` fontSize: ${fontSize}`); console.log(` fontFamily: ${fontFamily}`); if (at !== null) { console.log(` at: ${at}ms`); diff --git a/.vortex/docs/.utils/update-videos.php b/.vortex/docs/.utils/update-videos.php index 38e963db4a..80d7c6782c 100755 --- a/.vortex/docs/.utils/update-videos.php +++ b/.vortex/docs/.utils/update-videos.php @@ -27,6 +27,14 @@ * php update-videos.php --keep lint # reuse workspace, record lint only */ +/** + * Shape every recording is given: the 2560x1600 of a MacBook screen. + * + * A terminal is configured by its columns alone; VideoRecorder::rowsForAspect() + * turns that width and this ratio into the rows to record at. + */ +const ASPECT_RATIO = 2560 / 1600; + const PROMPT_DELAY = 1; const WORKSPACE_REL = '.artifacts/tmp/videos-workspace'; @@ -39,7 +47,8 @@ * - command: the command executed inside the recording. NULL means the * installer expect script is used instead. * - speed: playback speed multiplier. 1.0 = recorded speed, 2.0 = 2x faster. - * - cols/rows: terminal dimensions passed to asciinema and used for renders. + * - cols: columns the terminal is recorded at. The rows follow from + * ASPECT_RATIO, so a recording cannot end up an arbitrary shape. * - poster_ms: cast timestamp (ms) at which the PNG poster frame is taken. * NULL means use the last frame of the cast. * - typer: wrap the command with the simulated-typing intro from @@ -51,7 +60,6 @@ 'command' => NULL, 'speed' => 1.0, 'cols' => 80, - 'rows' => 42, 'poster_ms' => 2000, 'typer' => FALSE, ], @@ -59,7 +67,6 @@ 'command' => 'ahoy build', 'speed' => 1.0, 'cols' => 80, - 'rows' => 42, 'poster_ms' => 2000, 'typer' => TRUE, ], @@ -67,7 +74,6 @@ 'command' => 'ahoy provision', 'speed' => 1.0, 'cols' => 80, - 'rows' => 42, 'poster_ms' => NULL, 'typer' => TRUE, ], @@ -75,7 +81,6 @@ 'command' => 'ahoy lint', 'speed' => 2.0, 'cols' => 80, - 'rows' => 42, 'poster_ms' => NULL, 'typer' => TRUE, ], @@ -83,7 +88,6 @@ 'command' => 'ahoy test', 'speed' => 2.0, 'cols' => 80, - 'rows' => 42, 'poster_ms' => 2000, 'typer' => TRUE, ], @@ -91,7 +95,6 @@ 'command' => 'ahoy test-bdd', 'speed' => 1.0, 'cols' => 80, - 'rows' => 42, 'poster_ms' => 2000, 'typer' => TRUE, ], @@ -99,7 +102,6 @@ 'command' => 'ahoy info', 'speed' => 1.0, 'cols' => 80, - 'rows' => 42, 'poster_ms' => NULL, 'typer' => TRUE, ], @@ -107,7 +109,6 @@ 'command' => 'ahoy doctor', 'speed' => 1.0, 'cols' => 80, - 'rows' => 42, 'poster_ms' => NULL, 'typer' => TRUE, ], @@ -115,7 +116,6 @@ 'command' => 'ahoy doctor info', 'speed' => 1.0, 'cols' => 80, - 'rows' => 42, 'poster_ms' => NULL, 'typer' => TRUE, ], @@ -310,7 +310,7 @@ function record_installer(VideoRecorder $recorder, string $workspace, string $pr command: $expect_script, title: 'Vortex Installer Demo', cols: (int) $cfg['cols'], - rows: (int) $cfg['rows'], + rows: VideoRecorder::rowsForAspect((int) $cfg['cols'], ASPECT_RATIO), ); render_video($recorder, 'installer', $workspace, $docs_static_dir); @@ -339,7 +339,7 @@ function record_command_video(VideoRecorder $recorder, string $name, string $pro title: "Vortex $cmd Demo", env: $env, cols: (int) $cfg['cols'], - rows: (int) $cfg['rows'], + rows: VideoRecorder::rowsForAspect((int) $cfg['cols'], ASPECT_RATIO), ); render_video($recorder, $name, $workspace, $docs_static_dir); diff --git a/.vortex/docs/src/components/AsciinemaPlayer/AsciinemaPlayer.js b/.vortex/docs/src/components/AsciinemaPlayer/AsciinemaPlayer.js index 5a29c2de43..f134ec5541 100644 --- a/.vortex/docs/src/components/AsciinemaPlayer/AsciinemaPlayer.js +++ b/.vortex/docs/src/components/AsciinemaPlayer/AsciinemaPlayer.js @@ -8,6 +8,7 @@ const AsciinemaPlayer = ({ loop = false, preload = true, controls = true, + fit, theme = 'asciinema', terminalLineHeight = 1.0, terminalFontFamily = 'Consolas, "Courier New", Courier, "Liberation Mono", monospace', @@ -54,6 +55,10 @@ const AsciinemaPlayer = ({ options.startAt = startAt; } + if (fit !== undefined) { + options.fit = fit; + } + window.AsciinemaPlayer.create(src, containerRef.current, options); } }; @@ -78,6 +83,10 @@ const AsciinemaPlayer = ({ options.startAt = startAt; } + if (fit !== undefined) { + options.fit = fit; + } + window.AsciinemaPlayer.create(src, containerRef.current, options); } } @@ -95,6 +104,7 @@ const AsciinemaPlayer = ({ loop, preload, controls, + fit, theme, terminalLineHeight, terminalFontFamily, diff --git a/.vortex/docs/src/css/custom.css b/.vortex/docs/src/css/custom.css index 506c5ba19c..4f2a6055a3 100644 --- a/.vortex/docs/src/css/custom.css +++ b/.vortex/docs/src/css/custom.css @@ -378,27 +378,6 @@ html[data-theme='dark'] .vtx-home .ic::after { .vtx-home .hero-media { min-width: 0; } -.vtx-home .hero-badge { - display: inline-flex; - align-items: center; - gap: 9px; - font-size: 0.78rem; - font-weight: 600; - color: var(--teal); - background: color-mix(in srgb, var(--teal) 11%, transparent); - border: 1px solid color-mix(in srgb, var(--teal) 30%, transparent); - padding: 6px 14px; - border-radius: 100px; - margin-bottom: 24px; -} -.vtx-home .hero-badge .pulse { - width: 7px; - height: 7px; - border-radius: 50%; - background: var(--teal); - box-shadow: 0 0 0 0 color-mix(in srgb, var(--teal) 60%, transparent); - animation: vtx-pulse 2.4s var(--ease) infinite; -} @keyframes vtx-pulse { 0% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--teal) 55%, transparent); @@ -647,11 +626,12 @@ html[data-theme='dark'] .vtx-home .btn-primary:hover { background: #0a0e15; line-height: 0; } +/* No ratio of its own: the tile takes the poster's, so it hugs the image and + follows it whenever the recording is re-shaped. */ .vtx-home .media-screen img { + display: block; width: 100%; height: auto; - aspect-ratio: 1280 / 705; - object-fit: cover; } .vtx-home .media-foot { display: flex; @@ -1395,8 +1375,27 @@ html[data-theme='dark'] .vtx-home .step-num { opacity: 1; } } +/* The panel spans most of the screen and takes its height from the player, so + the terminal grows with the viewport and the panel hugs whatever the player + drew. Only the width is computed here, and only to keep the panel inside the + viewport: '--vtx-demo-max' stops a wide desktop blowing the terminal up past + the width its poster is rendered at, and the last term stops a wide panel + from growing taller than the screen. That term needs the shape the player + draws, which is neither the SVG's nor the poster's - all three are rendered + with different cell metrics - and it only has to be close, since the height + itself comes from the player rather than from this number. + '--vtx-demo-chrome' is the title bar plus the body's padding, which sit + outside the terminal. */ .vtx-home .vtx-modal-panel { - width: min(960px, 100%); + --vtx-demo-ratio: 1.513; + --vtx-demo-chrome: 89px; + --vtx-demo-max: 1280px; + --vtx-demo-width: min( + 80vw, + var(--vtx-demo-max), + calc((90vh - var(--vtx-demo-chrome)) * var(--vtx-demo-ratio) + 32px) + ); + width: var(--vtx-demo-width); max-height: 90vh; display: flex; flex-direction: column; @@ -1407,6 +1406,21 @@ html[data-theme='dark'] .vtx-home .step-num { box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.85); animation: vtx-pop 260ms var(--ease); } +/* On a narrow screen there is no room to spare, so the dialog takes the whole + width and drops the frame that would only eat into it. */ +@media (max-width: 860px) { + .vtx-home .vtx-modal { + padding: 0; + } + .vtx-home .vtx-modal-panel { + --vtx-demo-width: min( + 100vw, + calc((100vh - var(--vtx-demo-chrome)) * var(--vtx-demo-ratio) + 32px) + ); + border-width: 0; + border-radius: 0; + } +} @keyframes vtx-pop { from { opacity: 0; @@ -1454,14 +1468,19 @@ html[data-theme='dark'] .vtx-home .step-num { width: 18px; height: 18px; } +/* The player fills the width and works out its own height, so the body takes + that height rather than imposing one. That is what makes the dialog hug the + terminal exactly at every size, since the player's rendered shape shifts + slightly as its font size rounds to whole pixels. */ .vtx-home .vtx-modal-body { padding: 16px; - overflow: auto; + overflow: hidden; background: #0a0e15; } .vtx-home .vtx-modal-body .asciinema-player, .vtx-home .vtx-cast { width: 100%; + height: auto; } @media (prefers-reduced-motion: reduce) { diff --git a/.vortex/docs/src/pages/index.js b/.vortex/docs/src/pages/index.js index 0446d555d5..ef491ad11d 100644 --- a/.vortex/docs/src/pages/index.js +++ b/.vortex/docs/src/pages/index.js @@ -179,7 +179,7 @@ function useReveals() { } export default function Home() { - const installerVideo = useBaseUrl('/img/installer.svg'); + const installerPoster = useBaseUrl('/img/installer.png'); const installerCast = useBaseUrl('/img/installer.json'); const [playerOpen, setPlayerOpen] = useState(false); const triggerRef = useRef(null); @@ -260,10 +260,6 @@ export default function Home() {
- - Production-grade Drupal, since - 2017 -

Ship Drupal projects on{' '} solid ground. @@ -315,12 +311,12 @@ export default function Home() { aria-label="Play the installer demo with playback controls" > Animated demo of the Vortex installer scaffolding a new project from a single command

+ {/* Fitting the width lets the player derive its own height, so + the dialog can take that height rather than guess at it. */}
diff --git a/.vortex/docs/static/img/build.json b/.vortex/docs/static/img/build.json index 19fd787ceb..d8261b6fc9 100644 --- a/.vortex/docs/static/img/build.json +++ b/.vortex/docs/static/img/build.json @@ -1,1355 +1,1507 @@ -{"version":2,"width":80,"height":42,"timestamp":1787192504,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy build'","title":"Vortex ahoy build Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} -[0.075677, "o", "$ "] -[0.57719, "o", "a"] -[0.632224, "o", "h"] -[0.682842, "o", "o"] -[0.736374, "o", "y"] -[0.791657, "o", " "] -[0.844991, "o", "b"] -[0.900971, "o", "u"] -[0.955143, "o", "i"] -[1.010099, "o", "l"] -[1.065091, "o", "d"] -[1.5226, "o", "\r\n"] -[1.99796, "o", "\u001b[36m[INFO] Started Vortex tooling installation.\u001b[0m\r\n"] -[5.937194, "o", "\u001b[32m[ OK ] Finished Vortex tooling installation.\u001b[0m\r\n"] -[6.40193, "o", "\u001b[36m[INFO] Started reset.\u001b[0m\r\n"] -[6.458982, "o", "\u001b[32m[ OK ] Finished reset.\u001b[0m\r\n"] -[6.785772, "o", "#1 [internal] load local bake definitions\r\n"] -[6.936372, "o", "#1 reading from stdin 4.03kB done\r\n#1 DONE 0.0s\r\n"] -[7.605225, "o", "\r\n#2 [php internal] load build definition from php.dockerfile\r\n#2 transferring dockerfile: 526B done\r\n#2 DONE 0.0s\r\n\r\n#3 [nginx internal] load build definition from nginx-drupal.dockerfile\r\n#3 transferring dockerfile: 675B done\r\n#3 DONE 0.0s\r\n\r\n#4 [solr internal] load build definition from solr.dockerfile\r\n#4 transferring dockerfile: 1.46kB done\r\n#4 DONE 0.0s\r\n\r\n#5 [cli internal] load build definition from cli.dockerfile\r\n#5 transferring dockerfile: 4.18kB done\r\n"] -[7.605332, "o", "#5 DONE 0.0s\r\n\r\n#6 [database internal] load build definition from database.dockerfile\r\n#6 transferring dockerfile: 816B done\r\n#6 WARN: SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV \"MYSQL_PASSWORD\") (line 18)\r\n#6 DONE 0.0s\r\n\r\n#7 [cli internal] load metadata for docker.io/uselagoon/php-8.4-cli-drupal:26.8.0\r\n#7 DONE 0.0s\r\n\r\n#8 [clamav internal] load build definition from clamav.dockerfile\r\n#8 transferring dockerfile: 1.45kB done\r\n#8 DONE 0.0s\r\n\r\n#9 [database internal] load metadata for docker.io/uselagoon/mysql-8.4:26.8.0\r\n#9 DONE 0.0s\r\n\r\n#10 [cli internal] load .dockerignore\r\n#10 transferring context: 1.23kB done\r\n"] -[7.60534, "o", "#10 DONE 0.0s\r\n\r\n#11 [database 1/3] FROM docker.io/uselagoon/mysql-8.4:26.8.0\r\n#11 DONE 0.0s\r\n\r\n#12 [database internal] load build context\r\n#12 transferring context: 564B done\r\n#12 DONE 0.0s\r\n\r\n#13 [database 2/3] COPY ./.docker/config/database/my.cnf /etc/mysql/conf.d/server.cnf\r\n#13 CACHED\r\n\r\n#14 [database 3/3] RUN fix-permissions /etc/mysql/conf.d/\r\n#14 CACHED\r\n\r\n#15 [database] exporting to image\r\n#15 exporting layers done\r\n#15 writing image sha256:8a8c78a93a7832368d9390e73639ac1215c4ca4bfa61063d6a74e40f61693a27 done\r\n#15 naming to docker.io/library/vortex_videos-database done\r\n#15 DONE 0.0s\r\n\r\n#16 [database] resolving provenance for metadata file\r\n#16 DONE 0.0s\r\n\r\n#17 [nginx internal] load metadata for docker.io/uselagoon/nginx-drupal:26.8.0\r\n"] -[8.369904, "o", "#17 ...\r\n\r\n#18 [auth] uselagoon/php-8.4-fpm:pull token for registry-1.docker.io\r\n#18 DONE 0.0s\r\n\r\n#19 [auth] uselagoon/commons:pull token for registry-1.docker.io\r\n#19 DONE 0.0s\r\n\r\n#20 [auth] uselagoon/nginx-drupal:pull token for registry-1.docker.io\r\n#20 DONE 0.0s\r\n\r\n#21 [auth] uselagoon/solr-9-drupal:pull token for registry-1.docker.io\r\n#21 DONE 0.0s\r\n\r\n#22 [auth] clamav/clamav-debian:pull token for registry-1.docker.io\r\n#22 DONE 0.0s\r\n"] -[8.520364, "o", "\r\n#23 [php internal] load metadata for docker.io/uselagoon/php-8.4-fpm:26.8.0\r\n"] -[8.86111, "o", "#23 ...\r\n\r\n#17 [nginx internal] load metadata for docker.io/uselagoon/nginx-drupal:26.8.0\r\n#17 DONE 1.4s\r\n"] -[8.964283, "o", "\r\n#10 [solr internal] load .dockerignore\r\n#10 transferring context: 1.23kB done\r\n#10 DONE 0.0s\r\n\r\n#24 [nginx stage-1 1/5] FROM docker.io/uselagoon/nginx-drupal:26.8.0@sha256:56ad1a69dc2c752cdd0061a269dcf0723825911bae380565951d7814c701fecf\r\n#24 DONE 0.0s\r\n\r\n#23 [php internal] load metadata for docker.io/uselagoon/php-8.4-fpm:26.8.0\r\n#23 DONE 1.5s\r\n\r\n#25 [php stage-1 1/3] FROM docker.io/uselagoon/php-8.4-fpm:26.8.0@sha256:cafd9304ab495d6f102fc5ec27f770a4ef33139a89c64bc94db467ccb23ba411\r\n#25 DONE 0.0s\r\n\r\n#26 [nginx internal] load build context\r\n"] -[8.964292, "o", "#26 transferring context: 254B 0.0s done\r\n#26 DONE 0.0s\r\n\r\n#27 [php stage-0 1/10] FROM docker.io/uselagoon/php-8.4-cli-drupal:26.8.0\r\n#27 DONE 0.0s\r\n\r\n#28 [clamav internal] load metadata for docker.io/uselagoon/commons:26.8.0\r\n#28 DONE 1.5s\r\n\r\n#29 [clamav internal] load metadata for docker.io/clamav/clamav-debian:1.5.4\r\n#29 DONE 1.5s\r\n\r\n#30 [solr internal] load metadata for docker.io/uselagoon/solr-9-drupal:26.8.0\r\n#30 DONE 1.5s\r\n\r\n#31 [clamav stage-1 1/7] FROM docker.io/clamav/clamav-debian:1.5.4@sha256:2bb8cd7dfe3e87f86e969a2c415f7698583175e46dc2234672be9210c982c144\r\n#31 DONE 0.0s\r\n\r\n#32 [clamav commons 1/1] FROM docker.io/uselagoon/commons:26.8.0@sha256:0af1b1ed0e4b76a035415637d910290f8ecd75fb46a05be8ca8bfec24f2a84e6\r\n#32 DONE 0.0s\r\n\r\n"] -[8.964295, "o", "#33 [solr 1/3] FROM docker.io/uselagoon/solr-9-drupal:26.8.0@sha256:de7bb5e9758fe8caf4bc2fb726a9e544e10cfa59c78e319592fed6102f804683\r\n#33 DONE 0.0s\r\n\r\n#34 [clamav internal] load build context\r\n"] -[8.964316, "o", "#34 transferring context: 285B done\r\n#34 DONE 0.0s\r\n"] -[8.964323, "o", "\r\n"] -[8.964326, "o", "#35 [clamav stage-1 2/7] COPY --from=commons /lagoon /lagoon\r\n#35 CACHED\r\n\r\n"] -[8.96441, "o", "#36 [clamav stage-1 4/7] RUN apt-get update -qq && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends tzdata && apt-get clean && rm -rf /var/lib/apt/lists/*\r\n#36 CACHED\r\n\r\n#37 [clamav stage-1 3/7] COPY --from=commons /bin/fix-permissions /bin/ep /bin/docker-sleep /bin/wait-for /bin/\r\n#37 CACHED\r\n\r\n#38 [clamav stage-1 6/7] RUN cat /tmp/clamav.conf >> /etc/clamav/clamd.conf && rm /tmp/clamav.conf && sed -i \"s/^LogFile /# LogFile /g\" /etc/clamav/clamd.conf && sed -i \"s/^#LogSyslog /LogSyslog /g\" /etc/clamav/clamd.conf && sed -i \"s/^UpdateLogFile /# UpdateLogFile /g\" /etc/clamav/freshclam.conf && sed -i \"s/^#LogSyslog /LogSyslog /g\" /etc/clamav/freshclam.conf\r\n#38 CACHED\r\n\r\n#39 [clamav stage-1 5/7] COPY .docker/config/clamav/clamav.conf /tmp/clamav.conf\r\n#39 CACHED\r\n\r\n#40 [clamav stage-1 7/7] RUN fix-permissions /var/lib/clamav\r\n#40 CACHED\r\n\r\n#41 [nginx internal] load build context\r\n#41 transferring context: 2.74MB 0.1s done\r\n#41 DONE 0.1s\r\n\r\n#42 [clamav] exporti"] -[8.96443, "o", "ng to image\r\n#42 exporting layers done\r\n#42 writing image sha256:7ac7c6ac3f13de064a3cfc25b0cb3c1c735436a8b0d2a2391b82a29e945f7658 done\r\n#42 naming to docker.io/library/vortex_videos-clamav done\r\n#42 DONE 0.0s\r\n\r\n#43 [solr internal] load build context\r\n#43 transferring context: 1.54MB 0.0s done\r\n"] -[9.077369, "o", "#43 DONE 0.0s\r\n\r\n#44 [clamav] resolving provenance for metadata file\r\n#44 DONE 0.0s\r\n\r\n#45 [solr 2/3] COPY .docker/config/solr/config-set /solr-conf/conf/\r\n#45 CACHED\r\n\r\n#46 [solr 3/3] RUN sed -i -e \"s#${solr.data.dir:}#/var/solr/${solr.core.name}#g\" /solr-conf/conf/solrconfig.xml && sed -i -e \"s#solr.lock.type:native#solr.lock.type:none#g\" /solr-conf/conf/solrconfig.xml && sed -i -e \"s#solr.autoSoftCommit.MaxTime=5000#solr.autoSoftCommit.MaxTime=-1#g\" /solr-conf/conf/solrcore.properties\r\n#46 CACHED\r\n\r\n#47 [cli stage-0 2/10] RUN apk add --no-cache ncurses pv tzdata autoconf g++ make && pecl install pcov && docker-php-ext-enable pcov && docker-php-ext-install pcntl && apk del g++ make autoconf\r\n#47 CACHED\r\n\r\n#48 [cli stage-0 3/10] COPY patches /app/patches\r\n#48 CACHED\r\n\r\n#49 [cli stage-0 4/10] COPY scripts /app/scripts\r\n#49 CACHED\r\n\r\n#50 [solr] exporting to image\r\n#50 exporting layers done\r\n#50 writing image sha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660"] -[9.077436, "o", "fd05e2d58bcaf 0.0s done\r\n#50 naming to docker.io/library/vortex_videos-solr done\r\n#50 DONE 0.1s\r\n\r\n#51 [php stage-0 5/10] COPY composer.json composer.* patches.lock.* .env* auth* /app/\r\n"] -[9.247912, "o", "#51 DONE 0.1s\r\n\r\n#52 [solr] resolving provenance for metadata file\r\n#52 DONE 0.0s\r\n\r\n#53 [php stage-0 6/10] RUN --mount=type=secret,id=package_token token=$(if [ -s /run/secrets/package_token ]; then cat /run/secrets/package_token; else echo \"XXXXX\"; fi) && if [ -n \"${token}\" ]; then export COMPOSER_AUTH=\"{\"github-oauth\": {\"github.com\": \"${token}\"}}\"; fi && COMPOSER_MEMORY_LIMIT=-1 composer install -n --no-dev --ansi --prefer-dist --optimize-autoloader\r\n"] -[9.294744, "o", "#53 0.260 \u001b[30;43mNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information.\u001b[39;49m\r\n"] -[9.445505, "o", "#53 0.261 \u001b[32mLoading composer repositories with package information\u001b[39m\r\n"] -[29.508568, "o", "#53 20.48 \u001b[32mUpdating dependencies\u001b[39m\r\n"] -[29.938006, "o", "#53 20.74 \u001b[32mLock file operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n#53 20.74 - Locking \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0"] -[29.938015, "o", ".3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m)"] -[29.938039, "o", "\r\n#53 20.74 - Locking \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoc"] -[29.938061, "o", "trine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/core-composer-scaff"] -[29.938084, "o", "old\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[3"] -[29.938099, "o", "3m1.6.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m)\r\n#53 20.74 - Locking \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32merg"] -[29.938108, "o", "ebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlocalhei"] -[29.938143, "o", "nz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/pear-core-minimal\u001b["] -[29.93817, "o", "39m (\u001b[33mv1.10.18\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n#53 20.74 - Lo"] -[29.938191, "o", "cking \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n#53 20.74 - Locki"] -[29.938201, "o", "ng \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] -[29.938246, "o", "#53 20.74 - Locking \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n#"] -[29.938271, "o", "53 20.74 - Locking \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33"] -[29.938277, "o", "mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony"] -[29.938348, "o", "/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/psr-http-message-b"] -[29.938378, "o", "ridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 20.74 - Locking \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m)"] -[29.938389, "o", "\r\n#53 20.74 - Locking \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n#53 20.74 - Locking \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n#53 20.75 \u001b[32mWriting lock file\u001b[39m\r\n#53 20.75 \u001b[32mInstalling dependencies from lock file\u001b[39m\r\n#53 20.75 \u001b[32mPackage operations: 124 installs, 0 updates, 0 removals\u001b[39m\r\n#53 20.75 - Downloading \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[30.511872, "o", "#53 21.48 - Installing \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[30.680232, "o", "#53 21.50 - Downloading \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[31.30157, "o", "#53 22.09 - Installing \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n#53 22.10 - Downloading \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/se"] -[31.30158, "o", "rvice-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)"] -[31.301652, "o", "\r\n#53 22.10 - Downloading \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7"] -[31.301687, "o", ".1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.10 - Downloading \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n"] -[31.301748, "o", "#53 22.11 - Downloading \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n#53 22.11 - "] -[31.301789, "o", "Downloading \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32msymfony/polyfil"] -[31.301819, "o", "l-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdoctrine"] -[31.301846, "o", "/common\u001b[39m (\u001b[33m3.5.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n#53 22.11 - Download"] -[31.30185, "o", "ing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m)\r\n#5"] -[31.301879, "o", "3 22.11 - Downloading \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m)\r\n#53 22.11 - Downloading \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b"] -[31.301912, "o", "[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n#53 "] -[31.301917, "o", "22.12 - Downloading \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m)\r\n#53 22.12 - Downloading \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n"] -[31.689051, "o", "#53 22.50 0/121 [>---------------------------] 0%"] -[32.735952, "o", "\u001b[1G\u001b[2K 12/121 [==>-------------------------] 9%"] -[32.88661, "o", "\u001b[1G\u001b[2K 19/121 [====>-----------------------] 15%"] -[33.304941, "o", "\u001b[1G\u001b[2K 28/121 [======>---------------------] 23%"] -[33.998941, "o", "\u001b[1G\u001b[2K 37/121 [========>-------------------] 30%"] -[34.632275, "o", "\u001b[1G\u001b[2K 52/121 [============>---------------] 42%"] -[34.978369, "o", "\u001b[1G\u001b[2K 61/121 [==============>-------------] 50%"] -[35.283345, "o", "\u001b[1G\u001b[2K 84/121 [===================>--------] 69%\u001b[1G\u001b[2K 90/121 [====================>-------] 74%"] -[36.035593, "o", "\u001b[1G\u001b[2K 102/121 [=======================>----] 84%"] -[36.49565, "o", "\u001b[1G"] -[36.646759, "o", "\u001b[2K 112/121 [=========================>--] 92%"] -[37.041451, "o", "\u001b[1G\u001b[2K 121/121 [============================] 100%\u001b[1G\u001b[2K"] -[37.230566, "o", "\u001b[30;43mpatches.lock.json does not exist. Creating a new patches.lock.json.\u001b[39;49m\r\n#53 28.01 - \u001b[32mResolving patches from dependencies.\u001b[39m\r\n#53 28.01 - Installing \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n#53 28.02 - Installing \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m): Extracting archive\r\n#53 28.03 - Installing \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[3"] -[37.23067, "o", "3mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n#53 28.04 - Installing \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b"] -[37.230812, "o", "[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/routing\u001b["] -[37.230872, "o", "39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive"] -[37.2309, "o", "\r\n#53 28.05 - Installing \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b["] -[37.230936, "o", "39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mralouphie/geta"] -[37.230963, "o", "llheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n#53 28.05 - Installing \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2"] -[37.230993, "o", "\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n#53 28.06 - Installing \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1."] -[37.231021, "o", "15.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m): Extracting archive\r\n#53 28.06 - Installing \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdflydev/dot-access-data\u001b[39"] -[37.231047, "o", "m (\u001b[33mv3.0.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[3"] -[37.332934, "o", "9m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m"] -[37.333015, "o", "): Extracting archive\r\n#53 28.07 - Installing \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mconsolidation/filter"] -[37.333127, "o", "-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m): Extracting archive\r\n#53 28.07 - Installing \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n#53 28.08 0/118 [>---------------------------] 0%\u001b[1G\u001b[2K 40/118 [=========>------------------] 33%\u001b[1G\u001b[2K 64/118 [===============>------------] 54%"] -[37.568804, "o", "\u001b[1G\u001b[2K 84/118 [===================>--------] 71%\u001b[1G\u001b[2K 97/118 [=======================>----] 82%"] -[37.829429, "o", "\u001b[1G\u001b[2K 110/118 [==========================>-] 93%"] -[38.817002, "o", "\u001b[1G\u001b[2K 118/118 [============================] 100%\u001b[1G\u001b[2K"] -[39.288218, "o", "\u001b[32m34 package suggestions were added by new dependencies, use `composer suggest` to see details.\u001b[39m\r\n"] -[39.448582, "o", "#53 30.26 \u001b[32mGenerating optimized autoload files\u001b[39m\r\n"] -[40.185412, "o", "#53 31.15 \u001b[32m57 packages you are using are looking for funding.\u001b[39m\r\n#53 31.15 \u001b[32mUse the `composer fund` command to find out more!\u001b[39m\r\n"] -[40.338074, "o", "#53 31.15 Scaffolding files for \u001b[33mdrupal/core\u001b[39m:\r\n#53 31.15 - Skip \u001b[32m[web-root]/.htaccess\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.15 - Skip \u001b[32m[web-root]/README.md\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/index.php\u001b[39m from \u001b[32massets/scaffold/files/index.php\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.csslintrc\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/robots.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/update.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/INSTALL.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.eslintignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.eslintrc.json\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/.ht.router.php\u001b[39m: "] -[40.338086, "o", "overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/README.txt\u001b[39m from \u001b[32massets/scaffold/files/sites.README.txt\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[project-root]/.editorconfig\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/example.gitignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/themes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/themes.README.txt\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[project-root]/.gitattributes\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/modules/README.txt\u001b[39m from \u001b[32massets/scaffold/files/modules.README.txt\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/profiles/README.txt\u001b[39m from \u001b[32massets/scaffold/files/profiles.README.txt\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[project-root]/recipes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/recipes.README.txt\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/sites/example.sites.php\u001b[39m: overr"] -[40.338123, "o", "idden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/development.services.yml\u001b[39m from \u001b[32massets/scaffold/files/development.services.yml\u001b[39m\r\n#53 31.16 - Skip \u001b[32m[web-root]/sites/example.settings.local.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/default/default.services.yml\u001b[39m from \u001b[32massets/scaffold/files/default.services.yml\u001b[39m\r\n#53 31.16 - Copy \u001b[32m[web-root]/sites/default/default.settings.php\u001b[39m from \u001b[32massets/scaffold/files/default.settings.php\u001b[39m\r\n"] -[40.687275, "o", "#53 DONE 31.5s\r\n\r\n#54 [nginx stage-0 7/10] COPY . /app\r\n#54 DONE 0.1s\r\n\r\n#55 [php stage-0 8/10] RUN mkdir -p -m 2775 \"/app/web/sites/default/files\" \"/app/web/sites/default/files/private\" \"/tmp\"\r\n"] -[40.840008, "o", "#55 DONE 0.2s\r\n\r\n#56 [cli stage-0 9/10] RUN if [ \"0\" != \"1\" ]; then theme_path=\"/app/web/themes/custom/star_wars\"; npm --prefix=\"${theme_path}\" ci --no-progress --no-audit --no-fund && npm --prefix=\"${theme_path}\" run build && npm cache clean --force; fi\r\n"] -[42.075021, "o", "#56 1.432 npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] -[42.61691, "o", "#56 1.756 npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\r\n#56 1.821 npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me\r\n"] -[42.752129, "o", "#56 2.110 npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] -[42.913605, "o", "#56 2.119 npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] -[42.999055, "o", "#56 2.357 npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported\r\n"] -[43.7131, "o", "#56 3.071 npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.\r\n"] -[44.50803, "o", "#56 3.654 \r\n#56 3.654 > star_wars@1.0.0 postinstall\r\n#56 3.654 > patch-package\r\n#56 3.654 \r\n#56 3.738 patch-package 6.5.1\r\n#56 3.738 Applying patches...\r\n#56 3.739 No patch files found\r\n#56 3.753 \r\n#56 3.753 added 475 packages in 3s\r\n#56 3.866 \r\n#56 3.866 > star_wars@1.0.0 build\r\n#56 3.866 > npm run clean && mkdir -p build/js && npm run concat && npm run uglify && npm run sass:prod && npm run postcss:prod && npm run copy\r\n#56 3.866 \r\n"] -[44.690503, "o", "#56 3.954 \r\n#56 3.954 > star_wars@1.0.0 clean\r\n#56 3.954 > rm -rf build\r\n#56 3.954 \r\n#56 4.049 \r\n#56 4.049 > star_wars@1.0.0 concat\r\n#56 4.049 > find js -name '*.js' ! -name '*.min.js' -exec cat {} + > build/js/star_wars.min.js\r\n#56 4.049 \r\n"] -[44.935623, "o", "#56 4.143 \r\n#56 4.143 > star_wars@1.0.0 uglify\r\n#56 4.143 > terser build/js/star_wars.min.js -o build/js/star_wars.min.js -c drop_console=true -m reserved=['jQuery','Drupal'] 2>/dev/null || true\r\n#56 4.143 \r\n"] -[44.963687, "o", "#56 4.322 \r\n#56 4.322 > star_wars@1.0.0 sass:prod\r\n#56 4.322 > sass scss/styles.scss build/css/star_wars.min.css --no-source-map --style=compressed\r\n#56 4.322 \r\n"] -[45.41425, "o", "#56 4.621 \r\n#56 4.621 > star_wars@1.0.0 postcss:prod\r\n#56 4.621 > postcss build/css/star_wars.min.css -o build/css/star_wars.min.css --no-map\r\n#56 4.621 \r\n"] -[45.546244, "o", "#56 4.903 \r\n#56 4.903 > star_wars@1.0.0 copy\r\n#56 4.903 > npm run copy:images && npm run copy:fonts\r\n#56 4.903 \r\n"] -[45.726931, "o", "#56 4.991 \r\n#56 4.991 > star_wars@1.0.0 copy:images\r\n#56 4.991 > mkdir -p build/images && cp -r images/* build/images/ 2>/dev/null || true\r\n#56 4.991 \r\n"] -[45.95082, "o", "#56 5.079 \r\n#56 5.079 > star_wars@1.0.0 copy:fonts\r\n#56 5.079 > mkdir -p build/fonts && cp -r fonts/* build/fonts/ 2>/dev/null || true\r\n#56 5.079 \r\n#56 5.157 npm warn using --force Recommended protections disabled.\r\n"] -[46.269836, "o", "#56 DONE 5.5s\r\n\r\n#57 [php stage-0 10/10] WORKDIR /app\r\n#57 DONE 0.0s\r\n\r\n#58 [cli] exporting to image\r\n#58 exporting layers\r\n"] -[48.09721, "o", "#58 exporting layers 2.0s done\r\n"] -[48.341366, "o", "#58 writing image sha256:e5bc1226bb03f6bd5d7c9faa49347169fd2c080cf00e7e6b6bbe3703f4e3557c done\r\n#58 naming to docker.io/library/vortex_videos done\r\n#58 DONE 2.0s\r\n\r\n#59 [nginx stage-1 2/5] RUN apk add --no-cache tzdata\r\n#59 CACHED\r\n\r\n#60 [nginx stage-1 3/5] COPY ./.docker/config/nginx/redirects-map.conf /etc/nginx/redirects-map.conf\r\n#60 CACHED\r\n\r\n#61 [nginx stage-1 4/5] RUN fix-permissions /etc/nginx\r\n#61 CACHED\r\n\r\n#62 [php stage-1 2/3] RUN apk add --no-cache tzdata\r\n#62 CACHED\r\n\r\n#63 [cli] resolving provenance for metadata file\r\n#63 DONE 0.0s\r\n\r\n#64 [php stage-1 3/3] COPY --from=cli /app /app\r\n"] -[51.168532, "o", "#64 DONE 3.0s\r\n\r\n#65 [nginx stage-1 5/5] COPY --from=cli /app /app\r\n"] -[51.32943, "o", "#65 DONE 3.0s\r\n\r\n#66 [nginx] exporting to image\r\n"] -[53.509658, "o", "#66 exporting layers 2.2s done\r\n#66 writing image sha256:c30ce198ed9988c1a91e2d3e84c92e42e76aa6bb515b2e4ac48eb88de5a38625 done\r\n#66 naming to docker.io/library/vortex_videos-nginx done\r\n#66 DONE 2.3s\r\n\r\n#67 [php] exporting to image\r\n#67 exporting layers 2.2s done\r\n"] -[53.509667, "o", "#67 writing image sha256:5bcfc19ac83ecf7f42168b526a175fd876eb85b3f22800120b02e63c0a41d0cb done\r\n#67 naming to docker.io/library/vortex_videos-php done\r\n#67 DONE 2.3s\r\n\r\n#68 [php] resolving provenance for metadata file\r\n#68 DONE 0.0s\r\n\r\n#69 [nginx] resolving provenance for metadata file\r\n#69 DONE 0.0s\r\n"] -[53.611886, "o", "\u001b[?25l\u001b[0G[+] up 8/12\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[53.611895, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[53.611898, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[53.611901, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[53.611903, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-clamav-1 Creating \u001b[34m 0.1s\u001b[0m\r\n"] -[53.611907, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-redis-1 Creating \u001b[34m 0.1s\u001b[0m\r\n"] -[53.61191, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-solr-1 Creating \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-database-1 Creating \u001b[34m 0.1s\u001b[0m\r\n"] -[53.611912, "o", "\u001b[?25h"] -[53.711587, "o", "\u001b[?25l\u001b[13A\u001b[0G[+] up 10/12\r\n"] -[53.711602, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[53.711607, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[53.71161, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[53.711613, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[53.711617, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[53.711622, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[53.711647, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[53.711654, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-solr-1 Creating \u001b[34m 0.2s\u001b[0m\r\n"] -[53.711657, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-database-1 Creating \u001b[34m 0.2s\u001b[0m\r\n"] -[53.711666, "o", "\u001b[?25h"] -[53.811873, "o", "\u001b[?25l\u001b[13A\u001b[0G[+] up 12/13\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[53.811883, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Creating \u001b[34m 0.0s\u001b[0m\r\n"] -[53.811885, "o", "\u001b[?25h"] -[53.918462, "o", "\u001b[?25l\u001b[14A\u001b[0G[+] up 13/14\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b["] -[53.918553, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-cli-1 Creating \u001b[34m 0.0s\u001b[0m\r\n\u001b[?25h"] -[54.021401, "o", "\u001b[?25l\u001b[15A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b["] -[54.02162, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-php-1 Creating \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-nginx-1 Creating \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-chrome-1 Creating \u001b[34m 0.0s\u001b[0m\r\n\u001b[?25h"] -[54.111267, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n"] -[54.11128, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[54.111283, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[54.111287, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[54.111363, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[54.111439, "o", "ortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-nginx-1 Creating \u001b[34m 0.1s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-chrome-1 Creating \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[54.211573, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n"] -[54.211589, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[54.211591, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[54.211594, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[54.211597, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[54.211661, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 0.7s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 0.7s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 0.7s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 0.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 "] -[54.211733, "o", " \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[54.312178, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[33"] -[54.312331, "o", "m⠹\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 0.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[54.411498, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 13/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-clamav-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[33"] -[54.411685, "o", "m⠸\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-solr-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-database-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[54.514075, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[54.514274, "o", "0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[54.612071, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[54.612194, "o", "0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-redis-1 Starting \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[54.714054, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[54.714304, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[54.812977, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[54.813073, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[54.81315, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 1.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[54.911893, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[54.912365, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 1.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[55.012321, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[55.012534, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Starting \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[55.11205, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[55.112063, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[55.11207, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[55.112074, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[55.112076, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.3s\u001b[0m\r\n"] -[55.112111, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[55.212145, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[55.212411, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[55.312051, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[55.312056, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.5s\u001b[0m\r\n"] -[55.312057, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[55.312066, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[55.312068, "o", "\u001b[?25h"] -[55.416992, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[55.417337, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[55.512492, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[55.512569, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[55.618153, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[55.621372, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[55.713519, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[55.713583, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[55.713594, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[55.713636, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 1.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[55.811218, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[55.811227, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[55.81123, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[55.811232, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[55.811234, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[55.811255, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[55.913108, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[55.913188, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[55.913195, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[55.913199, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[55.913202, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[55.913206, "o", "\u001b[?25h"] -[56.012135, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[56.012364, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[56.112115, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[56.112372, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[56.21311, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[56.213414, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[56.312642, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[56.312744, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[56.411964, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[56.411973, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[56.411975, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[56.411976, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[56.411977, "o", " \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.6s\u001b[0m\r\n"] -[56.411978, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[56.411979, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[56.411981, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[56.411982, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[56.411983, "o", "\u001b[?25h"] -[56.512127, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[56.51221, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[56.612147, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[56.612399, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[56.712039, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[56.712126, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[56.712205, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 2.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[56.812075, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[56.812091, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[56.812095, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[56.812193, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[56.81228, "o", "eos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[56.912123, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[56.91227, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[57.01154, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[57.01155, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.2s\u001b[0m\r\n"] -[57.011554, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[57.112036, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[57.112048, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[57.112054, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[57.112057, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.112059, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.11206, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.112061, "o", "\u001b[?25h"] -[57.212487, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[57.212921, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[57.312047, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[57.312055, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[57.312057, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[57.312058, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[57.312059, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[57.312061, "o", " \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.5s\u001b[0m\r\n"] -[57.312062, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.312063, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.312066, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.312068, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.312069, "o", "\u001b[?25h"] -[57.41207, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[57.412173, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[57.51205, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[57.51207, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[57.512118, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[57.512152, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.512157, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.512159, "o", "\u001b[?25h"] -[57.613687, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[57.613962, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[57.712385, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[57.712396, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[57.712399, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[57.712401, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[57.712402, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[57.712403, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 3.9s\u001b[0m\r\n"] -[57.712405, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.712406, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.712407, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.712408, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.71241, "o", "\u001b[?25h"] -[57.811957, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[57.811968, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[57.811997, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[57.812, "o", "\u001b[?25h"] -[57.912075, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[57.912181, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[58.012017, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[58.012028, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[58.01203, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[58.012033, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[58.012034, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[58.012035, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[58.012037, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[58.012086, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[58.112854, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[58.113519, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[58.211959, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[58.211965, "o", "0m\r\n"] -[58.211991, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[58.312332, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[58.312433, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.5s\u001b[0m\r\n"] -[58.312518, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[58.41218, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[58.412422, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[58.511265, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[58.511275, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[58.511278, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[58.51128, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[58.511284, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.7s\u001b[0m\r\n"] -[58.511287, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[58.511357, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[58.611932, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[58.611939, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.8s\u001b[0m\r\n"] -[58.611944, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[58.611946, "o", "\u001b[?25h"] -[58.712017, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[58.712098, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[58.712176, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 4.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[58.812034, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[58.812047, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[58.81205, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[58.812054, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[58.812121, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container v"] -[58.81218, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[58.911891, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[58.911901, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[58.911925, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[59.011964, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[59.011975, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.011977, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.011979, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.011981, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.011984, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.011987, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.01199, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[59.011992, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[59.011995, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[59.012001, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[59.012003, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[59.012005, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[59.012034, "o", " \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[59.111359, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[59.111367, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.11137, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.111372, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.111374, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.111403, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[59.11146, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[59.211914, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[59.211921, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.211969, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[59.211994, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[59.212019, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[59.312007, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[59.312016, "o", "0m\r\n"] -[59.312098, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[59.411937, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[59.411994, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[59.411998, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[59.412028, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[59.412072, "o", "\u001b[?25h"] -[59.511964, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[59.511975, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.511978, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.512019, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container v"] -[59.512026, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.7s\u001b[0m\r\n"] -[59.512028, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[59.512063, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[59.611965, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[59.611984, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[59.611987, "o", " \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[59.711953, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.711959, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.71198, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[59.712001, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 5.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[59.712003, "o", "\u001b[?25h"] -[59.812038, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[59.812045, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[59.812046, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[59.812047, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[59.812061, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[59.911927, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[59.911936, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[59.911939, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[59.911941, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[59.911942, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[59.911968, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[60.011945, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.011952, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.011996, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[60.011998, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[60.012, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[60.012001, "o", "\u001b[?25h"] -[60.111925, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[60.111934, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.111936, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.111937, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.111965, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[60.111991, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[60.212241, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[60.212284, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.212294, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[60.212297, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[60.212301, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[60.212303, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[60.212307, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[60.212318, "o", " \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[60.21232, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[60.212322, "o", "\u001b[?25h"] -[60.311963, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[60.312694, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[60.312751, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[60.312774, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[60.412057, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[60.412076, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.412079, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.412083, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.412086, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[60.412089, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[60.412092, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[60.412148, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[60.511784, "o", "\u001b[?25l\u001b[18A\u001b[0G"] -[60.511795, "o", "[+] up 16/17\r\n"] -[60.511886, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[60.511954, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[60.611172, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[60.611189, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.611192, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.611195, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.611198, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.611251, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[60.611321, "o", "eos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[60.711844, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[60.711859, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.711863, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.711865, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.711871, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[60.711874, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[60.711935, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 6.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[60.81171, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[60.811835, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[60.91199, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[60.911998, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[60.912, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[60.912002, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[60.912004, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[60.912004, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[60.912005, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[60.912007, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[60.912019, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[61.01197, "o", "\u001b[?25l\u001b[18A\u001b[0G"] -[61.0121, "o", "[+] up 16/17\r\n"] -[61.012152, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.012156, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.012162, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[61.01219, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[61.012193, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[61.012232, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[61.012263, "o", "\u001b[?25h"] -[61.111364, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[61.111379, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.111382, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.111386, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.111449, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container v"] -[61.111513, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[61.212006, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[61.212013, "o", "0m\r\n"] -[61.212016, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[61.212018, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[61.212019, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[61.212054, "o", " \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[61.310943, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[61.310952, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.311003, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[61.31103, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[61.311087, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[61.411968, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[61.411982, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[61.411984, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[61.411986, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[61.412004, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[61.511831, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.511842, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[61.511879, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[61.611955, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[61.612004, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[61.612011, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[61.612013, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[61.612017, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[61.612018, "o", "\u001b[?25h"] -[61.711956, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.711962, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.711964, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[61.711965, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[61.711967, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[61.712001, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 7.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[61.811471, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[61.811478, "o", "0m\r\n"] -[61.811511, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[61.912282, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[61.912526, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[62.011539, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[62.011554, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[62.011627, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[62.011714, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[62.111961, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[62.111968, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[62.111969, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[62.111971, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[62.111973, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[62.112006, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[62.112013, "o", "eos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[62.112045, "o", "\u001b[?25h"] -[62.212103, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[62.21231, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[62.312059, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[62.312186, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[62.411962, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[62.411988, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[62.412063, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[62.412085, "o", "eos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[62.511015, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[62.511057, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[62.511065, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[62.511067, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[62.511068, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[62.511069, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[62.511071, "o", "\u001b[?25h"] -[62.611222, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[62.611356, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[62.611365, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[62.61142, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[62.712978, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[62.713877, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 8.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[62.814766, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[62.814802, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[62.814819, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[62.814865, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[62.915543, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[62.916426, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[63.012103, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[63.012114, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[63.012168, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_vid"] -[63.012234, "o", "eos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[63.11153, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[63.111535, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[63.111536, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[63.111537, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[63.111538, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[63.111539, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[63.11154, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[63.111543, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[63.111545, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[63.111547, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[63.111548, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[63.111549, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[63.111576, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[63.111578, "o", "\u001b[?25h"] -[63.212174, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[63.212377, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[63.311691, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[63.311704, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[63.311707, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[63.311772, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[63.412758, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[63.41288, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[63.512479, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[63.512678, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[63.619379, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[63.619568, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[63.71201, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[63.712023, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[63.712027, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[63.71203, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[63.712077, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m 9.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[63.811904, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[63.811911, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[63.811913, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[63.811916, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[63.811918, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[63.811919, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.0s\u001b[0m\r\n"] -[63.811922, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[63.811968, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[63.911316, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[63.911524, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[64.011977, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[64.012232, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[64.112094, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[64.112113, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[64.112116, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[64.112119, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[64.112177, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.3s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[64.211922, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[64.212, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[64.212021, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.212029, "o", "\u001b[?25h"] -[64.311996, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[64.312003, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[64.312054, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[64.41102, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[64.411029, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[64.41103, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[64.411031, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[64.411096, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container v"] -[64.411106, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.6s\u001b[0m\r\n"] -[64.411119, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.411127, "o", "\u001b[?25h"] -[64.511952, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[64.511961, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[64.511962, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[64.511964, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[64.511981, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[64.613573, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[64.613975, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠋\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[64.711774, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[64.711784, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[64.711791, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[64.711793, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m10.9s\u001b[0m\r\n"] -[64.711795, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.711796, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.711797, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.711798, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.711799, "o", "\u001b[?25h"] -[64.811937, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[64.811974, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[64.811982, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[64.811984, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[64.811986, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.0s\u001b[0m\r\n"] -[64.81199, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.811992, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.811995, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.811997, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.811999, "o", "\u001b[?25h"] -[64.911971, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[64.911983, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[64.911988, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[64.911991, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[64.911993, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[64.911996, "o", " \u001b[33m⠸\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.1s\u001b[0m\r\n"] -[64.911999, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.912001, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[64.912026, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[65.011944, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[65.011951, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[65.011953, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.011955, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.011968, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[65.111332, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[65.111345, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[65.111347, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[65.111349, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[65.111351, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[65.111352, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[65.111353, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.111355, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[65.111356, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.111358, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.111359, "o", " \u001b[33m⠴\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.3s\u001b[0m\r\n"] -[65.11136, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[65.111361, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[65.111363, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[65.111366, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[65.111367, "o", "\u001b[?25h"] -[65.212038, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[65.212047, "o", "0m\r\n"] -[65.212067, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠦\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[65.212068, "o", "\u001b[?25h"] -[65.311943, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[65.311994, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[65.312002, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[65.312041, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠧\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.5s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[65.411406, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[65.411413, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[65.411437, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠇\u001b[0m Container v"] -[65.41146, "o", "ortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.6s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[65.511938, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[65.512014, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[65.512047, "o", "ortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[65.512079, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[33m⠏\u001b[0m Container vortex_videos-wait-for-dependencies-1 Waiting \u001b[34m11.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[65.512082, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[65.512085, "o", "\u001b[?25h"] -[65.611948, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n"] -[65.611958, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[65.61196, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[65.611962, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[65.611964, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.611965, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[65.611966, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.611968, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.611969, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n"] -[65.612009, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m11.7s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[65.711633, "o", "\u001b[?25l\u001b[18A\u001b[0G"] -[65.711638, "o", "[+] up 16/17\r\n"] -[65.711673, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[65.711675, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[65.71169, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[65.711691, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n"] -[65.711692, "o", "\u001b[?25h"] -[65.81209, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[65.812207, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-cli-1 Starting \u001b[34m11.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mCreated\u001b[0m \u001b[34m 0.1s\u001b[0m\r\n\u001b[?25h"] -[65.911958, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[65.911968, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.911974, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[65.911975, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n"] -[65.911977, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n"] -[65.911979, "o", " \u001b[33m⠙\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m11.9s\u001b[0m\r\n"] -[65.911983, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m11.9s\u001b[0m\r\n"] -[65.911984, "o", " \u001b[33m⠹\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m11.9s\u001b[0m\r\n"] -[65.911986, "o", "\u001b[?25h"] -[66.011935, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] -[66.011943, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[66.011979, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container v"] -[66.011984, "o", "ortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[66.012002, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[33m⠹\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.0s\u001b[0m\r\n"] -[66.012006, "o", "\u001b[?25h"] -[66.111416, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 14/17\r\n"] -[66.111423, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[66.111424, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[66.111426, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[66.111427, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[66.111429, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[66.111431, "o", " \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[66.111432, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[66.111433, "o", " \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n"] -[66.111435, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[66.111436, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n"] -[66.111437, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[66.111439, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[66.111469, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[33m⠸\u001b[0m Container vortex_videos-php-1 Starting \u001b[34m12.1s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.1s\u001b[0m\r\n \u001b[33m⠼\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.1s\u001b[0m\r\n\u001b[?25h"] -[66.212972, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 15/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[66.213431, "o", "0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.1s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.2s\u001b[0m\r\n \u001b[33m⠴\u001b[0m Container vortex_videos-chrome-1 Starting \u001b[34m12.2s\u001b[0m\r\n\u001b[?25h"] -[66.312035, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 16/17\r\n \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b["] -[66.312052, "o", "0m\r\n"] -[66.312095, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.1s\u001b[0m\r\n"] -[66.312099, "o", " \u001b[33m⠦\u001b[0m Container vortex_videos-nginx-1 Starting \u001b[34m12.3s\u001b[0m\r\n"] -[66.312115, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.3s\u001b[0m\r\n\u001b[?25h"] -[66.383269, "o", "\u001b[?25l\u001b[18A\u001b[0G[+] up 17/17\r\n"] -[66.383354, "o", " \u001b[32m✔\u001b[0m Image vortex_videos \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-php \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-nginx \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-database \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-solr \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Image vortex_videos-clamav \u001b[32mBuilt\u001b[0m \u001b[34m46.8s\u001b[0m\r\n"] -[66.383359, "o", " \u001b[32m✔\u001b[0m Network vortex_videos_default \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Volume vortex_videos_solr \u001b[32mCreated\u001b[0m \u001b[34m 0.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-clamav-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n"] -[66.383385, "o", " \u001b[32m✔\u001b[0m Container vortex_videos-redis-1 \u001b[32mStarted\u001b[0m \u001b[34m 1.2s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-solr-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-database-1 \u001b[32mStarted\u001b[0m \u001b[34m 0.9s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-wait-for-dependencies-1 \u001b[32mExited\u001b[0m \u001b[34m11.8s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-cli-1 \u001b[32mStarted\u001b[0m \u001b[34m12.0s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-php-1 \u001b[32mStarted\u001b[0m \u001b[34m12.1s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-nginx-1 \u001b[32mStarted\u001b[0m \u001b[34m12.4s\u001b[0m\r\n \u001b[32m✔\u001b[0m Container vortex_videos-chrome-1 \u001b[32mStarted\u001b[0m \u001b[34m12.3s\u001b[0m\r\n\u001b[?25h"] -[67.052833, "o", "\u001b[30;43mNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information.\u001b[39;49m\r\n\u001b[32mLoading composer repositories with package information\u001b[39m\r\n"] -[76.665592, "o", "\u001b[32mUpdating dependencies\u001b[39m\r\n"] -[76.944949, "o", "\u001b[32mLock file operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n"] -[76.945447, "o", " - Locking \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m)\r\n - Locking \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n - Locking \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n - Locking \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n - Locking \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n - Locking \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n - Locking \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n - Locking \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n"] -[76.946333, "o", " - Locking \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m)\r\n - Locking \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n - Locking \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m)\r\n - Locking \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n - Locking \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n - Locking \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m)\r\n - Locking \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m)\r\n - Locking \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n - Locking \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m)\r\n - Locking \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m)\r\n - Locking \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n - Locking \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n - Locking \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n - Locking \u001b[32mdantleech/"] -[76.946346, "o", "invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n - Locking \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m)\r\n - Locking \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m)\r\n - Locking \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m)\r\n - Locking \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n - Locking \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n - Locking \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Locking \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m)\r\n - Locking \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n - Locking \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n - Locking \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n - Locking \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n - Locking \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n"] -[76.946396, "o", " - Locking \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n - Locking \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m)\r\n - Locking \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n - Locking \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n - Locking \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n"] -[76.946484, "o", " - Locking \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m)\r\n"] -[76.946754, "o", " - Locking \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n"] -[76.948312, "o", " - Locking \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m)\r\n - Locking \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m)\r\n - Locking \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m)\r\n - Locking \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m)\r\n - Locking \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n - Locking \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m)\r\n - Locking \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m)\r\n - Locking \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m)\r\n - Locking \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b"] -[76.94832, "o", "[39m)\r\n - Locking \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m)\r\n - Locking \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n - Locking \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n - Locking \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n - Locking \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n - Locking \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n - Locking \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Locking \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n - Locking \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m)\r\n - Locking \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m)\r\n - Locking \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m)\r\n - Locking \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m)\r\n - Locking \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m)\r\n - Locki"] -[76.948333, "o", "ng \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m)\r\n - Locking \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m)\r\n - Locking \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m)\r\n - Locking \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n - Locking \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n - Locking \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n - Locking \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m)\r\n - Locking \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m)\r\n - Locking \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m)\r\n - Locking \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m)\r\n - Locking \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n - Locking \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n - Locking \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n - Locking \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m)\r\n - Locking \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n - Locking \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m)\r\n - Locking \u001b[32mpear/console_getopt\u001b[39m (\u001b["] -[76.948359, "o", "33mv1.4.3\u001b[39m)\r\n - Locking \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m)\r\n - Locking \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m)\r\n - Locking \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n - Locking \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n - Locking \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n - Locking \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m)\r\n - Locking \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m)\r\n - Locking \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n - Locking \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n - Locking \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n - Locking \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n - Locking \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n - Locking \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m)\r\n - Locking \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n - Locking \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n - Locking \u001b[32mphps"] -[76.948375, "o", "tan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n - Locking \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n - Locking \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n - Locking \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n - Locking \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n - Locking \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m)\r\n - Locking \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m)\r\n - Locking \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n - Locking \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m)\r\n - Locking \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m)\r\n - Locking \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m)\r\n - Locking \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n - Locking"] -[76.948387, "o", " \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m)\r\n - Locking \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n - Locking \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n - Locking \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n - Locking \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m)\r\n - Locking \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n - Locking \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] -[76.949255, "o", " - Locking \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n - Locking \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m)\r\n - Locking \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n - Locking \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n - Locking \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n - Locking \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n - Locking \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n - Locking \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n - Locking \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n - Locking \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n - Locking \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n - Locking \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0."] -[76.94927, "o", "10.0\u001b[39m)\r\n - Locking \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m)\r\n - Locking \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n - Locking \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n - Locking \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n - Locking \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n - Locking \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n - Locking \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n - Locking \u001b[32msymfony/http-client\u001b"] -[76.949306, "o", "[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n - Locking \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m)"] -[76.949328, "o", "\r\n - Locking \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n"] -[76.949447, "o", " - Locking \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m)\r\n"] -[76.950286, "o", " - Locking \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m)\r\n - Locking \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m)\r\n - Locking \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m)\r\n - Locking \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n - Locking \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n - Locking \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m)\r\n - Locking \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n - Locking \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n - Locking \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m)\r\n - Locking \u001b[32mvincentlanglet/twig"] -[76.950314, "o", "-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n - Locking \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n - Locking \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n"] -[76.955824, "o", "\u001b[32mWriting lock file\u001b[39m\r\n\u001b[32mInstalling dependencies from lock file (including require-dev)\u001b[39m\r\n"] -[76.966052, "o", "\u001b[32mPackage operations: 207 installs, 0 updates, 0 removals\u001b[39m\r\n"] -[76.977046, "o", " - Installing \u001b[32mcweagans/composer-configurable-plugin\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[77.026581, "o", " - Installing \u001b[32mcweagans/composer-patches\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[77.1039, "o", " - Downloading \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m)\r\n"] -[77.104962, "o", " - Downloading \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m)\r\n"] -[77.105843, "o", " - Downloading \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m)\r\n"] -[77.112897, "o", " - Downloading \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m)\r\n"] -[77.114338, "o", " - Downloading \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m)\r\n"] -[77.115523, "o", " - Downloading \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m)\r\n"] -[77.11626, "o", " - Downloading \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m)\r\n"] -[77.11705, "o", " - Downloading \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m)\r\n"] -[77.117711, "o", " - Downloading \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m)\r\n"] -[77.118416, "o", " - Downloading \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m)\r\n"] -[77.119544, "o", " - Downloading \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m)\r\n"] -[77.120351, "o", " - Downloading \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m)\r\n"] -[77.124307, "o", " - Downloading \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m)\r\n"] -[77.124873, "o", " - Downloading \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m)\r\n"] -[77.163145, "o", " - Downloading \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[77.163877, "o", " - Downloading \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m)\r\n"] -[77.164378, "o", " - Downloading \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m)\r\n"] -[77.164835, "o", " - Downloading \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m)\r\n"] -[77.165481, "o", " - Downloading \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m)\r\n"] -[77.182605, "o", " - Downloading \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] -[77.197088, "o", " - Downloading \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] -[77.205619, "o", " - Downloading \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m)\r\n"] -[77.206385, "o", " - Downloading \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m)\r\n"] -[77.207282, "o", " - Downloading \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m)\r\n"] -[77.210317, "o", " - Downloading \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m)\r\n"] -[77.210884, "o", " - Downloading \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m)\r\n"] -[77.211426, "o", " - Downloading \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m)\r\n"] -[77.21176, "o", " - Downloading \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m)\r\n"] -[77.212493, "o", " - Downloading \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m)\r\n"] -[77.212976, "o", " - Downloading \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m)\r\n"] -[77.213423, "o", " - Downloading \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m)\r\n"] -[77.213803, "o", " - Downloading \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m)\r\n"] -[77.385573, "o", " - Downloading \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m)\r\n"] -[77.386309, "o", " - Downloading \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m)\r\n"] -[77.387407, "o", " - Downloading \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m)\r\n"] -[77.388163, "o", " - Downloading \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m)\r\n"] -[77.412434, "o", " - Downloading \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m)\r\n"] -[77.413093, "o", " - Downloading \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m)\r\n"] -[77.413619, "o", " - Downloading \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m)\r\n"] -[77.414008, "o", " - Downloading \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m)\r\n"] -[77.41438, "o", " - Downloading \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m)\r\n"] -[77.414745, "o", " - Downloading \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m)\r\n"] -[77.415237, "o", " - Downloading \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m)\r\n"] -[77.606862, "o", " - Downloading \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m)\r\n"] -[77.607491, "o", " - Downloading \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m)\r\n"] -[77.608258, "o", " - Downloading \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m)\r\n"] -[77.608938, "o", " - Downloading \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m)\r\n"] -[77.610051, "o", " - Downloading \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m)\r\n"] -[77.610942, "o", " - Downloading \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m)\r\n"] -[77.612218, "o", " - Downloading \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m)\r\n"] -[77.612977, "o", " - Downloading \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m)\r\n"] -[77.613825, "o", " - Downloading \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m)\r\n"] -[77.614346, "o", " - Downloading \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m)\r\n"] -[77.614845, "o", " - Downloading \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n"] -[77.615554, "o", " - Downloading \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m)\r\n"] -[77.616197, "o", " - Downloading \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m)\r\n"] -[77.616714, "o", " - Downloading \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m)\r\n"] -[77.617262, "o", " - Downloading \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m)\r\n"] -[77.618553, "o", " - Downloading \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[77.619286, "o", " - Downloading \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m)\r\n"] -[77.62006, "o", " - Downloading \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m)\r\n"] -[77.621266, "o", " - Downloading \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m)\r\n"] -[77.622319, "o", " - Downloading \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m)\r\n"] -[77.62302, "o", " - Downloading \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m)\r\n"] -[77.623656, "o", " - Downloading \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m)\r\n"] -[77.624313, "o", " - Downloading \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m)\r\n"] -[77.625218, "o", " - Downloading \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m)\r\n"] -[77.625864, "o", " - Downloading \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[77.626453, "o", " - Downloading \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m)\r\n"] -[77.627096, "o", " - Downloading \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m)\r\n"] -[77.628056, "o", " - Downloading \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m)\r\n"] -[77.628896, "o", " - Downloading \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m)\r\n"] -[77.629804, "o", " - Downloading \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[77.630312, "o", " - Downloading \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m)\r\n"] -[77.631011, "o", " - Downloading \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m)\r\n"] -[77.631793, "o", " - Downloading \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m)\r\n"] -[77.632455, "o", " - Downloading \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m)\r\n"] -[77.633272, "o", " - Downloading \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m)\r\n"] -[77.634035, "o", " - Downloading \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m)\r\n"] -[77.635185, "o", " - Downloading \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m)\r\n"] -[77.636086, "o", " - Downloading \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m)\r\n"] -[77.637113, "o", " - Downloading \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m)\r\n"] -[77.63817, "o", " - Downloading \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m)\r\n"] -[77.644001, "o", " 0/83 [>---------------------------] 0%"] -[78.505018, "o", "\u001b[1G\u001b[2K 10/83 [===>------------------------] 12%"] -[79.010285, "o", "\u001b[1G\u001b[2K 17/83 [=====>----------------------] 20%"] -[79.602732, "o", "\u001b[1G\u001b[2K 26/83 [========>-------------------] 31%"] -[79.91189, "o", "\u001b[1G\u001b[2K 34/83 [===========>----------------] 40%"] -[80.402506, "o", "\u001b[1G\u001b[2K 45/83 [===============>------------] 54%"] -[80.936282, "o", "\u001b[1G\u001b[2K 50/83 [================>-----------] 60%"] -[81.495535, "o", "\u001b[1G\u001b[2K 60/83 [====================>-------] 72%"] -[81.619842, "o", "\u001b[1G\u001b[2K 67/83 [======================>-----] 80%"] -[82.416967, "o", "\u001b[1G\u001b[2K 76/83 [=========================>--] 91%"] -[82.670003, "o", "\u001b[1G\u001b[2K 83/83 [============================] 100%\u001b[1G\u001b[2K"] -[82.670695, "o", "\u001b[30;43mpatches.lock.json does not exist. Creating a new patches.lock.json.\u001b[39;49m\r\n"] -[82.679123, "o", " - \u001b[32mResolving patches from dependencies.\u001b[39m\r\n"] -[82.681697, "o", " - Installing \u001b[32mcomposer/installers\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] -[82.763675, "o", " - Installing \u001b[32msymfony/runtime\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] -[82.804234, "o", " - Installing \u001b[32mdrupal/core-composer-scaffold\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] -[82.851302, "o", " - Installing \u001b[32mpyrech/composer-changelogs\u001b[39m (\u001b[33mv2.2.0\u001b[39m): Extracting archive\r\n"] -[82.957767, "o", " - Installing \u001b[32msquizlabs/php_codesniffer\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] -[83.416903, "o", " - Installing \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m (\u001b[33mv1.2.1\u001b[39m): Extracting archive\r\n"] -[83.437931, "o", " - Installing \u001b[32mmarc-mabe/php-enum\u001b[39m (\u001b[33mv4.7.2\u001b[39m): Extracting archive\r\n"] -[83.439919, "o", " - Installing \u001b[32mjustinrainbow/json-schema\u001b[39m (\u001b[33m6.8.2\u001b[39m): Extracting archive\r\n"] -[83.441503, "o", " - Installing \u001b[32mlocalheinz/diff\u001b[39m (\u001b[33m1.3.0\u001b[39m): Extracting archive\r\n"] -[83.443391, "o", " - Installing \u001b[32mergebnis/json-printer\u001b[39m (\u001b[33m3.8.1\u001b[39m): Extracting archive\r\n"] -[83.445228, "o", " - Installing \u001b[32mergebnis/json-pointer\u001b[39m (\u001b[33m3.8.0\u001b[39m): Extracting archive\r\n"] -[83.447468, "o", " - Installing \u001b[32mergebnis/json\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] -[83.449919, "o", " - Installing \u001b[32mergebnis/json-schema-validator\u001b[39m (\u001b[33m4.5.1\u001b[39m): Extracting archive\r\n"] -[83.453124, "o", " - Installing \u001b[32mergebnis/json-normalizer\u001b[39m (\u001b[33m4.10.1\u001b[39m): Extracting archive\r\n"] -[83.456793, "o", " 0/8 [>---------------------------] 0%"] -[83.560835, "o", "\u001b[1G\u001b[2K 7/8 [========================>---] 87%"] -[83.631437, "o", "\u001b[1G\u001b[2K 8/8 [============================] 100%\u001b[1G\u001b[2K"] -[83.632008, "o", " - Installing \u001b[32mergebnis/composer-normalize\u001b[39m (\u001b[33m2.52.0\u001b[39m): Extracting archive\r\n"] -[83.668965, "o", " - Installing \u001b[32mphpstan/phpstan\u001b[39m (\u001b[33m2.2.8\u001b[39m): Extracting archive\r\n"] -[84.168653, "o", " - Installing \u001b[32mphpstan/extension-installer\u001b[39m (\u001b[33m1.4.3\u001b[39m): Extracting archive\r\n"] -[84.187271, "o", " - Installing \u001b[32mpsr/log\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] -[84.188273, "o", " - Installing \u001b[32mcomposer/pcre\u001b[39m (\u001b[33m3.4.0\u001b[39m): Extracting archive\r\n"] -[84.189503, "o", " - Installing \u001b[32mcomposer/xdebug-handler\u001b[39m (\u001b[33m3.0.5\u001b[39m): Extracting archive\r\n"] -[84.190848, "o", " - Installing \u001b[32msymfony/polyfill-iconv\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] -[84.193116, "o", " - Installing \u001b[32msymfony/polyfill-mbstring\u001b[39m (\u001b[33mv1.38.2\u001b[39m): Extracting archive\r\n"] -[84.195477, "o", " - Installing \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m (\u001b[33mv1.38.0\u001b[39m): Extracting archive\r\n"] -[84.198139, "o", " - Installing \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[84.201208, "o", " - Installing \u001b[32msymfony/polyfill-ctype\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] -[84.203997, "o", " - Installing \u001b[32msymfony/deprecation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[84.20827, "o", " - Installing \u001b[32msymfony/string\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[84.211501, "o", " - Installing \u001b[32mpsr/container\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] -[84.214587, "o", " - Installing \u001b[32msymfony/service-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[84.218203, "o", " - Installing \u001b[32msymfony/console\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.221967, "o", " - Installing \u001b[32mconsolidation/log\u001b[39m (\u001b[33m3.1.2\u001b[39m): Extracting archive\r\n"] -[84.225684, "o", " - Installing \u001b[32msymfony/finder\u001b[39m (\u001b[33mv7.4.14\u001b[39m): Extracting archive\r\n"] -[84.229425, "o", " - Installing \u001b[32msymfony/filesystem\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[84.232662, "o", " - Installing \u001b[32mdantleech/invoke\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[84.236651, "o", " - Installing \u001b[32mcucumber/messages\u001b[39m (\u001b[33mv19.1.4\u001b[39m): Extracting archive\r\n"] -[84.239067, "o", " - Installing \u001b[32mcucumber/gherkin\u001b[39m (\u001b[33mv24.1.0\u001b[39m): Extracting archive\r\n"] -[84.241854, "o", " - Installing \u001b[32mdantleech/gherkin-lint\u001b[39m (\u001b[33m0.2.4\u001b[39m): Extracting archive\r\n"] -[84.244477, "o", " - Installing \u001b[32mdoctrine/instantiator\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] -[84.247511, "o", " - Installing \u001b[32mpsr/cache\u001b[39m (\u001b[33m3.0.0\u001b[39m): Extracting archive\r\n"] -[84.249734, "o", " - Installing \u001b[32mdoctrine/event-manager\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] -[84.251603, "o", " - Installing \u001b[32mdoctrine/deprecations\u001b[39m (\u001b[33m1.1.6\u001b[39m): Extracting archive\r\n"] -[84.253734, "o", " - Installing \u001b[32mdoctrine/persistence\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] -[84.256119, "o", " - Installing \u001b[32msymfony/yaml\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[84.258288, "o", " - Installing \u001b[32msymfony/translation-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[84.259889, "o", " - Installing \u001b[32msymfony/translation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.261803, "o", " - Installing \u001b[32mpsr/event-dispatcher\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] -[84.263513, "o", " - Installing \u001b[32msymfony/event-dispatcher-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[84.26543, "o", " - Installing \u001b[32msymfony/event-dispatcher\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[84.266882, "o", " - Installing \u001b[32msymfony/var-exporter\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.268166, "o", " - Installing \u001b[32msymfony/dependency-injection\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.269482, "o", " - Installing \u001b[32msymfony/config\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.271161, "o", " - Installing \u001b[32mnikic/php-parser\u001b[39m (\u001b[33mv5.8.0\u001b[39m): Extracting archive\r\n"] -[84.272974, "o", " - Installing \u001b[32mbehat/gherkin\u001b[39m (\u001b[33mv4.17.0\u001b[39m): Extracting archive\r\n"] -[84.274243, "o", " - Installing \u001b[32mbehat/behat\u001b[39m (\u001b[33mv3.32.0\u001b[39m): Extracting archive\r\n"] -[84.276115, "o", " - Installing \u001b[32mdrevops/behat-format-progress-fail\u001b[39m (\u001b[33m1.5.1\u001b[39m): Extracting archive\r\n"] -[84.277906, "o", " - Installing \u001b[32msymfony/polyfill-php83\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[84.279751, "o", " - Installing \u001b[32msymfony/http-client-contracts\u001b[39m (\u001b[33mv3.7.1\u001b[39m): Extracting archive\r\n"] -[84.281136, "o", " - Installing \u001b[32msymfony/http-client\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.282393, "o", " - Installing \u001b[32msymfony/css-selector\u001b[39m (\u001b[33mv7.4.9\u001b[39m): Extracting archive\r\n"] -[84.283231, "o", " - Installing \u001b[32mbehat/mink\u001b[39m (\u001b[33mv1.13.0\u001b[39m): Extracting archive\r\n"] -[84.284201, "o", " - Installing \u001b[32mfriends-of-behat/mink-extension\u001b[39m (\u001b[33mv2.7.5\u001b[39m): Extracting archive\r\n"] -[84.28534, "o", " - Installing \u001b[32mdrevops/behat-screenshot\u001b[39m (\u001b[33m2.6.0\u001b[39m): Extracting archive\r\n"] -[84.286494, "o", " - Installing \u001b[32mdrevops/behat-steps\u001b[39m (\u001b[33m3.14.1\u001b[39m): Extracting archive\r\n"] -[84.288823, "o", " - Installing \u001b[32mdrevops/phpcs-standard\u001b[39m (\u001b[33m1.0.0\u001b[39m): Extracting archive\r\n"] -[84.290098, "o", " - Installing \u001b[32mdrevops/vortex-tooling\u001b[39m (\u001b[33m1.4.0\u001b[39m): Extracting archive\r\n"] -[84.291858, "o", " - Installing \u001b[32mtwig/twig\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] -[84.293013, "o", " - Installing \u001b[32msymfony/polyfill-intl-idn\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] -[84.294127, "o", " - Installing \u001b[32msymfony/mime\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.295837, "o", " - Installing \u001b[32mtwig/html-extra\u001b[39m (\u001b[33mv3.28.0\u001b[39m): Extracting archive\r\n"] -[84.297004, "o", " - Installing \u001b[32msymfony/validator\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.297969, "o", " - Installing \u001b[32msymfony/polyfill-php84\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] -[84.299474, "o", " - Installing \u001b[32msymfony/serializer\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.300599, "o", " - Installing \u001b[32msymfony/routing\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[84.302228, "o", " - Installing \u001b[32msymfony/http-foundation\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.303802, "o", " - Installing \u001b[32mpsr/http-message\u001b[39m (\u001b[33m2.0\u001b[39m): Extracting archive\r\n"] -[84.304714, "o", " - Installing \u001b[32msymfony/psr-http-message-bridge\u001b[39m (\u001b[33mv7.4.8\u001b[39m): Extracting archive\r\n"] -[84.305863, "o", " - Installing \u001b[32msymfony/process\u001b[39m (\u001b[33mv7.4.13\u001b[39m): Extracting archive\r\n"] -[84.307131, "o", " - Installing \u001b[32msymfony/polyfill-php86\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[84.308125, "o", " - Installing \u001b[32msymfony/polyfill-php85\u001b[39m (\u001b[33mv1.41.0\u001b[39m): Extracting archive\r\n"] -[84.30917, "o", " - Installing \u001b[32mdoctrine/lexer\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] -[84.311047, "o", " - Installing \u001b[32megulias/email-validator\u001b[39m (\u001b[33m4.0.4\u001b[39m): Extracting archive\r\n"] -[84.31295, "o", " - Installing \u001b[32msymfony/mailer\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[84.314865, "o", " - Installing \u001b[32msymfony/var-dumper\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[84.316319, "o", " - Installing \u001b[32msymfony/error-handler\u001b[39m (\u001b[33mv7.4.15\u001b[39m): Extracting archive\r\n"] -[84.317752, "o", " - Installing \u001b[32msymfony/http-kernel\u001b[39m (\u001b[33mv7.4.16\u001b[39m): Extracting archive\r\n"] -[84.318936, "o", " - Installing \u001b[32msebastian/diff\u001b[39m (\u001b[33m6.0.2\u001b[39m): Extracting archive\r\n"] -[84.320205, "o", " - Installing \u001b[32mrevolt/event-loop\u001b[39m (\u001b[33mv1.0.9\u001b[39m): Extracting archive\r\n"] -[84.322278, "o", " - Installing \u001b[32mphp-tuf/composer-stager\u001b[39m (\u001b[33mv2.1.1\u001b[39m): Extracting archive\r\n"] -[84.323732, "o", " - Installing \u001b[32mpear/pear_exception\u001b[39m (\u001b[33mv1.0.2\u001b[39m): Extracting archive\r\n"] -[84.324979, "o", " - Installing \u001b[32mpear/console_getopt\u001b[39m (\u001b[33mv1.4.3\u001b[39m): Extracting archive\r\n"] -[84.325971, "o", " - Installing \u001b[32mpear/pear-core-minimal\u001b[39m (\u001b[33mv1.10.18\u001b[39m): Extracting archive\r\n"] -[84.327167, "o", " - Installing \u001b[32mpear/archive_tar\u001b[39m (\u001b[33m1.6.1\u001b[39m): Extracting archive\r\n"] -[84.328713, "o", " - Installing \u001b[32mmck89/peast\u001b[39m (\u001b[33mv1.17.7\u001b[39m): Extracting archive\r\n"] -[84.329819, "o", " - Installing \u001b[32mmasterminds/html5\u001b[39m (\u001b[33m2.10.1\u001b[39m): Extracting archive\r\n"] -[84.330734, "o", " - Installing \u001b[32msymfony/polyfill-php80\u001b[39m (\u001b[33mv1.37.0\u001b[39m): Extracting archive\r\n"] -[84.331653, "o", " - Installing \u001b[32mralouphie/getallheaders\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] -[84.332611, "o", " - Installing \u001b[32mpsr/http-factory\u001b[39m (\u001b[33m1.1.0\u001b[39m): Extracting archive\r\n"] -[84.333855, "o", " - Installing \u001b[32mguzzlehttp/psr7\u001b[39m (\u001b[33m2.13.0\u001b[39m): Extracting archive\r\n"] -[84.335051, "o", " - Installing \u001b[32mpsr/http-client\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] -[84.336244, "o", " - Installing \u001b[32mguzzlehttp/promises\u001b[39m (\u001b[33m2.5.2\u001b[39m): Extracting archive\r\n"] -[84.337285, "o", " - Installing \u001b[32mguzzlehttp/guzzle\u001b[39m (\u001b[33m7.15.3\u001b[39m): Extracting archive\r\n"] -[84.338451, "o", " - Installing \u001b[32mcomposer/semver\u001b[39m (\u001b[33m3.4.4\u001b[39m): Extracting archive\r\n"] -[84.339434, "o", " - Installing \u001b[32masm89/stack-cors\u001b[39m (\u001b[33mv2.4.0\u001b[39m): Extracting archive\r\n"] -[84.342228, "o", " - Installing \u001b[32mdrupal/core\u001b[39m (\u001b[33m11.4.5\u001b[39m): Extracting archive\r\n"] -[84.343441, "o", " - Installing \u001b[32mdrupal/clamav\u001b[39m (\u001b[33m2.1.0\u001b[39m): Extracting archive\r\n"] -[84.344745, "o", " - Installing \u001b[32mphpstan/phpdoc-parser\u001b[39m (\u001b[33m2.3.3\u001b[39m): Extracting archive\r\n"] -[84.345833, "o", " - Installing \u001b[32mslevomat/coding-standard\u001b[39m (\u001b[33m8.31.1\u001b[39m): Extracting archive\r\n"] -[84.346829, "o", " - Installing \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m (\u001b[33mv2.13.0\u001b[39m): Extracting archive\r\n"] -[84.348003, "o", " - Installing \u001b[32mdrupal/coder\u001b[39m (\u001b[33m9.0.1\u001b[39m): Extracting archive\r\n"] -[84.349124, "o", " - Installing \u001b[32mdrupal/coffee\u001b[39m (\u001b[33m2.0.1\u001b[39m): Extracting archive\r\n"] -[84.350422, "o", " - Installing \u001b[32mdrupal/config_split\u001b[39m (\u001b[33m2.0.2\u001b[39m): Extracting archive\r\n"] -[84.35167, "o", " - Installing \u001b[32mdrupal/config_update\u001b[39m (\u001b[33m2.0.0-alpha4\u001b[39m): Extracting archive\r\n"] -[84.353697, "o", " - Installing \u001b[32mdrupal/core-recommended\u001b[39m (\u001b[33m11.4.5\u001b[39m)\r\n"] -[84.355688, "o", " - Installing \u001b[32mdoctrine/common\u001b[39m (\u001b[33m3.5.0\u001b[39m): Extracting archive\r\n"] -[84.356704, "o", " - Installing \u001b[32mdrupal/devel\u001b[39m (\u001b[33m5.5.0\u001b[39m): Extracting archive\r\n"] -[84.35768, "o", " - Installing \u001b[32mwebflo/drupal-finder\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] -[84.3586, "o", " - Installing \u001b[32msymfony/dom-crawler\u001b[39m (\u001b[33mv7.4.12\u001b[39m): Extracting archive\r\n"] -[84.359231, "o", " - Installing \u001b[32mlullabot/php-webdriver\u001b[39m (\u001b[33mv2.0.7\u001b[39m): Extracting archive\r\n"] -[84.35986, "o", " - Installing \u001b[32mlullabot/mink-selenium2-driver\u001b[39m (\u001b[33mv1.7.4\u001b[39m): Extracting archive\r\n"] -[84.360544, "o", " - Installing \u001b[32mdrupal/drupal-driver\u001b[39m (\u001b[33mv3.3.1\u001b[39m): Extracting archive\r\n"] -[84.361146, "o", " - Installing \u001b[32msymfony/browser-kit\u001b[39m (\u001b[33mv8.1.1\u001b[39m): Extracting archive\r\n"] -[84.361868, "o", " - Installing \u001b[32mbehat/mink-browserkit-driver\u001b[39m (\u001b[33mv2.3.0\u001b[39m): Extracting archive\r\n"] -[84.36255, "o", " - Installing \u001b[32mdrupal/drupal-extension\u001b[39m (\u001b[33mv6.1.0\u001b[39m): Extracting archive\r\n"] -[84.363812, "o", " - Installing \u001b[32mdrupal/drupal_helpers\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] -[84.365026, "o", " - Installing \u001b[32mdrupal/environment_indicator\u001b[39m (\u001b[33m4.0.25\u001b[39m): Extracting archive\r\n"] -[84.366452, "o", " - Installing \u001b[32mdrupal/generated_content\u001b[39m (\u001b[33m2.1.1\u001b[39m): Extracting archive\r\n"] -[84.368123, "o", " - Installing \u001b[32mdrupal/navigation_extra_tools\u001b[39m (\u001b[33m1.3.2\u001b[39m): Extracting archive\r\n"] -[84.369832, "o", " - Installing \u001b[32mdrupal/token\u001b[39m (\u001b[33m1.17.0\u001b[39m): Extracting archive\r\n"] -[84.371188, "o", " - Installing \u001b[32mdrupal/ctools\u001b[39m (\u001b[33m4.1.1\u001b[39m): Extracting archive\r\n"] -[84.37238, "o", " - Installing \u001b[32mdrupal/pathauto\u001b[39m (\u001b[33m1.15.0\u001b[39m): Extracting archive\r\n"] -[84.373654, "o", " - Installing \u001b[32mdrupal/redirect\u001b[39m (\u001b[33m1.13.0\u001b[39m): Extracting archive\r\n"] -[84.374815, "o", " - Installing \u001b[32mdrupal/redis\u001b[39m (\u001b[33m1.11.0\u001b[39m): Extracting archive\r\n"] -[84.376293, "o", " - Installing \u001b[32mdrupal/reroute_email\u001b[39m (\u001b[33m2.3.0-rc2\u001b[39m): Extracting archive\r\n"] -[84.377601, "o", " - Installing \u001b[32mdrupal/robotstxt\u001b[39m (\u001b[33m1.6.0\u001b[39m): Extracting archive\r\n"] -[84.378991, "o", " - Installing \u001b[32mdrupal/sdc_devel\u001b[39m (\u001b[33m1.0.3\u001b[39m): Extracting archive\r\n"] -[84.38091, "o", " - Installing \u001b[32mhalaxa/json-machine\u001b[39m (\u001b[33m1.2.6\u001b[39m): Extracting archive\r\n"] -[84.381813, "o", " - Installing \u001b[32msolarium/solarium\u001b[39m (\u001b[33m7.0.0\u001b[39m): Extracting archive\r\n"] -[84.382661, "o", " - Installing \u001b[32mmaennchen/zipstream-php\u001b[39m (\u001b[33m3.2.2\u001b[39m): Extracting archive\r\n"] -[84.383435, "o", " - Installing \u001b[32mlaminas/laminas-stdlib\u001b[39m (\u001b[33m3.21.0\u001b[39m): Extracting archive\r\n"] -[84.384664, "o", " - Installing \u001b[32mdrupal/search_api\u001b[39m (\u001b[33m1.41.0\u001b[39m): Extracting archive\r\n"] -[84.386005, "o", " - Installing \u001b[32mdflydev/dot-access-data\u001b[39m (\u001b[33mv3.0.3\u001b[39m): Extracting archive\r\n"] -[84.386966, "o", " - Installing \u001b[32mconsolidation/output-formatters\u001b[39m (\u001b[33m4.7.1\u001b[39m): Extracting archive\r\n"] -[84.387758, "o", " - Installing \u001b[32mconsolidation/annotated-command\u001b[39m (\u001b[33m4.10.5\u001b[39m): Extracting archive\r\n"] -[84.388648, "o", " - Installing \u001b[32mdrupal/search_api_solr\u001b[39m (\u001b[33m4.4.0\u001b[39m): Extracting archive\r\n"] -[84.390292, "o", " - Installing \u001b[32mdrupal/seckit\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] -[84.391866, "o", " - Installing \u001b[32mdrupal/shield\u001b[39m (\u001b[33m1.8.0\u001b[39m): Extracting archive\r\n"] -[84.39333, "o", " - Installing \u001b[32mdrupal/stage_file_proxy\u001b[39m (\u001b[33m4.0.0\u001b[39m): Extracting archive\r\n"] -[84.394595, "o", " - Installing \u001b[32mdrupal/testmode\u001b[39m (\u001b[33m2.7.2\u001b[39m): Extracting archive\r\n"] -[84.395936, "o", " - Installing \u001b[32mdrupal/xmlsitemap\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[84.397182, "o", " - Installing \u001b[32mpsy/psysh\u001b[39m (\u001b[33mv0.12.24\u001b[39m): Extracting archive\r\n"] -[84.398091, "o", " - Installing \u001b[32mleague/container\u001b[39m (\u001b[33m4.2.5\u001b[39m): Extracting archive\r\n"] -[84.398966, "o", " - Installing \u001b[32mlaravel/prompts\u001b[39m (\u001b[33mv0.3.23\u001b[39m): Extracting archive\r\n"] -[84.399793, "o", " - Installing \u001b[32mgrasmash/yaml-cli\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] -[84.400786, "o", " - Installing \u001b[32mgrasmash/expander\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] -[84.402704, "o", " - Installing \u001b[32mconsolidation/config\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] -[84.404787, "o", " - Installing \u001b[32mconsolidation/site-alias\u001b[39m (\u001b[33m4.1.3\u001b[39m): Extracting archive\r\n"] -[84.406186, "o", " - Installing \u001b[32mconsolidation/site-process\u001b[39m (\u001b[33m6.1.0\u001b[39m): Extracting archive\r\n"] -[84.407324, "o", " - Installing \u001b[32msymfony/polyfill-php81\u001b[39m (\u001b[33mv1.38.1\u001b[39m): Extracting archive\r\n"] -[84.408509, "o", " - Installing \u001b[32mphootwork/lang\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] -[84.409557, "o", " - Installing \u001b[32mphootwork/collection\u001b[39m (\u001b[33mv3.2.3\u001b[39m): Extracting archive\r\n"] -[84.410379, "o", " - Installing \u001b[32mphpowermove/docblock\u001b[39m (\u001b[33mv4.0\u001b[39m): Extracting archive\r\n"] -[84.411425, "o", " - Installing \u001b[32mconsolidation/robo\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] -[84.412385, "o", " - Installing \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m (\u001b[33m2.0.3\u001b[39m): Extracting archive\r\n"] -[84.413459, "o", " - Installing \u001b[32mchi-teck/drupal-code-generator\u001b[39m (\u001b[33m4.2.0\u001b[39m): Extracting archive\r\n"] -[84.414639, "o", " - Installing \u001b[32mdrush/drush\u001b[39m (\u001b[33m13.7.6\u001b[39m): Extracting archive\r\n"] -[84.415683, "o", " - Installing \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m (\u001b[33m2.0.5\u001b[39m): Extracting archive\r\n"] -[84.416612, "o", " - Installing \u001b[32mmglaman/phpstan-drupal\u001b[39m (\u001b[33m2.1.2\u001b[39m): Extracting archive\r\n"] -[84.417788, "o", " - Installing \u001b[32mmikey179/vfsstream\u001b[39m (\u001b[33mv1.6.12\u001b[39m): Extracting archive\r\n"] -[84.418772, "o", " - Installing \u001b[32mrector/rector\u001b[39m (\u001b[33m2.6.3\u001b[39m): Extracting archive\r\n"] -[84.419611, "o", " - Installing \u001b[32mpalantirnet/drupal-rector\u001b[39m (\u001b[33m1.1.2\u001b[39m): Extracting archive\r\n"] -[84.420366, "o", " - Installing \u001b[32mphpcsstandards/phpcsutils\u001b[39m (\u001b[33m1.2.3\u001b[39m): Extracting archive\r\n"] -[84.421077, "o", " - Installing \u001b[32mphpcompatibility/php-compatibility\u001b[39m (\u001b[33m10.0.0-alpha2\u001b[39m): Extracting archive\r\n"] -[84.421843, "o", " - Installing \u001b[32mwebmozart/assert\u001b[39m (\u001b[33m2.4.1\u001b[39m): Extracting archive\r\n"] -[84.422731, "o", " - Installing \u001b[32mphpdocumentor/reflection-common\u001b[39m (\u001b[33m2.2.0\u001b[39m): Extracting archive\r\n"] -[84.423741, "o", " - Installing \u001b[32mphpdocumentor/type-resolver\u001b[39m (\u001b[33m2.0.0\u001b[39m): Extracting archive\r\n"] -[84.42458, "o", " - Installing \u001b[32mphpdocumentor/reflection-docblock\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] -[84.425345, "o", " - Installing \u001b[32mstaabm/side-effects-detector\u001b[39m (\u001b[33m1.0.5\u001b[39m): Extracting archive\r\n"] -[84.42622, "o", " - Installing \u001b[32msebastian/version\u001b[39m (\u001b[33m5.0.2\u001b[39m): Extracting archive\r\n"] -[84.427195, "o", " - Installing \u001b[32msebastian/type\u001b[39m (\u001b[33m5.1.3\u001b[39m): Extracting archive\r\n"] -[84.428012, "o", " - Installing \u001b[32msebastian/recursion-context\u001b[39m (\u001b[33m6.0.3\u001b[39m): Extracting archive\r\n"] -[84.428749, "o", " - Installing \u001b[32msebastian/object-reflector\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[84.429519, "o", " - Installing \u001b[32msebastian/object-enumerator\u001b[39m (\u001b[33m6.0.1\u001b[39m): Extracting archive\r\n"] -[84.430487, "o", " - Installing \u001b[32msebastian/global-state\u001b[39m (\u001b[33m7.0.2\u001b[39m): Extracting archive\r\n"] -[84.431371, "o", " - Installing \u001b[32msebastian/exporter\u001b[39m (\u001b[33m6.3.2\u001b[39m): Extracting archive\r\n"] -[84.432175, "o", " - Installing \u001b[32msebastian/environment\u001b[39m (\u001b[33m7.2.1\u001b[39m): Extracting archive\r\n"] -[84.432911, "o", " - Installing \u001b[32msebastian/comparator\u001b[39m (\u001b[33m6.3.3\u001b[39m): Extracting archive\r\n"] -[84.43402, "o", " - Installing \u001b[32msebastian/code-unit\u001b[39m (\u001b[33m3.0.3\u001b[39m): Extracting archive\r\n"] -[84.43506, "o", " - Installing \u001b[32msebastian/cli-parser\u001b[39m (\u001b[33m3.0.2\u001b[39m): Extracting archive\r\n"] -[84.435996, "o", " - Installing \u001b[32mphpunit/php-timer\u001b[39m (\u001b[33m7.0.1\u001b[39m): Extracting archive\r\n"] -[84.436866, "o", " - Installing \u001b[32mphpunit/php-text-template\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[84.43762, "o", " - Installing \u001b[32mphpunit/php-invoker\u001b[39m (\u001b[33m5.0.1\u001b[39m): Extracting archive\r\n"] -[84.438444, "o", " - Installing \u001b[32mphpunit/php-file-iterator\u001b[39m (\u001b[33m5.1.1\u001b[39m): Extracting archive\r\n"] -[84.439326, "o", " - Installing \u001b[32mtheseer/tokenizer\u001b[39m (\u001b[33m1.3.1\u001b[39m): Extracting archive\r\n"] -[84.440158, "o", " - Installing \u001b[32msebastian/lines-of-code\u001b[39m (\u001b[33m3.0.1\u001b[39m): Extracting archive\r\n"] -[84.440987, "o", " - Installing \u001b[32msebastian/complexity\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[84.441923, "o", " - Installing \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m (\u001b[33m4.0.1\u001b[39m): Extracting archive\r\n"] -[84.442734, "o", " - Installing \u001b[32mphpunit/php-code-coverage\u001b[39m (\u001b[33m11.0.12\u001b[39m): Extracting archive\r\n"] -[84.443415, "o", " - Installing \u001b[32mphar-io/version\u001b[39m (\u001b[33m3.2.1\u001b[39m): Extracting archive\r\n"] -[84.444427, "o", " - Installing \u001b[32mphar-io/manifest\u001b[39m (\u001b[33m2.0.4\u001b[39m): Extracting archive\r\n"] -[84.445373, "o", " - Installing \u001b[32mmyclabs/deep-copy\u001b[39m (\u001b[33m1.14.0\u001b[39m): Extracting archive\r\n"] -[84.446318, "o", " - Installing \u001b[32mphpunit/phpunit\u001b[39m (\u001b[33m11.5.56\u001b[39m): Extracting archive\r\n"] -[84.44729, "o", " - Installing \u001b[32mphpspec/prophecy\u001b[39m (\u001b[33mv1.26.1\u001b[39m): Extracting archive\r\n"] -[84.448624, "o", " - Installing \u001b[32mphpspec/prophecy-phpunit\u001b[39m (\u001b[33mv2.5.0\u001b[39m): Extracting archive\r\n"] -[84.449481, "o", " - Installing \u001b[32msoftcreatr/jsonpath\u001b[39m (\u001b[33m0.10.0\u001b[39m): Extracting archive\r\n"] -[84.450286, "o", " - Installing \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m (\u001b[33m4.0.2\u001b[39m): Extracting archive\r\n"] -[84.473519, "o", " 0/187 [>---------------------------] 0%"] -[84.960561, "o", "\u001b[1G\u001b[2K 25/187 [===>------------------------] 13%"] -[85.490972, "o", "\u001b[1G"] -[85.491424, "o", "\u001b[2K 40/187 [=====>----------------------] 21%"] -[86.091363, "o", "\u001b[1G\u001b[2K 57/187 [========>-------------------] 30%"] -[86.797171, "o", "\u001b[1G\u001b[2K 79/187 [===========>----------------] 42%"] -[87.308793, "o", "\u001b[1G\u001b[2K 95/187 [==============>-------------] 50%"] -[88.096501, "o", "\u001b[1G\u001b[2K 114/187 [=================>----------] 60%"] -[88.950192, "o", "\u001b[1G\u001b[2K"] -[88.95023, "o", " 133/187 [===================>--------] 71%"] -[89.988987, "o", "\u001b[1G\u001b[2K 143/187 [=====================>------] 76%"] -[90.726717, "o", "\u001b[1G\u001b[2K 152/187 [======================>-----] 81%"] -[91.554151, "o", "\u001b[1G\u001b[2K 175/187 [==========================>-] 93%"] -[92.620195, "o", "\u001b[1G\u001b[2K 183/187 [===========================>] 97%"] -[93.620456, "o", "\u001b[1G\u001b[2K 184/187 [===========================>] 98%"] -[94.720518, "o", "\u001b[1G\u001b[2K 185/187 [===========================>] 98%"] -[97.229025, "o", "\u001b[1G\u001b[2K 186/187 [===========================>] 99%"] -[112.511404, "o", "\u001b[1G\u001b[2K 187/187 [============================] 100%\u001b[1G\u001b[2K"] -[113.082563, "o", "\u001b[32m27 package suggestions were added by new dependencies, use `composer suggest` to see details.\u001b[39m\r\n"] -[113.087088, "o", "\u001b[32mGenerating autoload files\u001b[39m\r\n"] -[114.079426, "o", "\u001b[32m110 packages you are using are looking for funding.\u001b[39m\r\n\u001b[32mUse the `composer fund` command to find out more!\u001b[39m\r\n"] -[114.091011, "o", "Scaffolding files for \u001b[33mdrupal/core\u001b[39m:\r\n - Skip \u001b[32m[web-root]/.htaccess\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[114.091428, "o", " - Skip \u001b[32m[web-root]/README.md\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.csslintrc\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/robots.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/update.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[114.09154, "o", " - Skip \u001b[32m[web-root]/INSTALL.txt\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.eslintignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[114.091686, "o", " - Skip \u001b[32m[web-root]/.eslintrc.json\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/.ht.router.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[114.09241, "o", " - Copy \u001b[32m[web-root]/sites/README.txt\u001b[39m from \u001b[32massets/scaffold/files/sites.README.txt\u001b[39m\r\n - Skip \u001b[32m[project-root]/.editorconfig\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n - Skip \u001b[32m[web-root]/example.gitignore\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[114.093262, "o", " - Copy \u001b[32m[web-root]/themes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/themes.README.txt\u001b[39m\r\n - Skip \u001b[32m[project-root]/.gitattributes\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[114.093944, "o", " - Copy \u001b[32m[web-root]/modules/README.txt\u001b[39m from \u001b[32massets/scaffold/files/modules.README.txt\u001b[39m\r\n"] -[114.094909, "o", " - Copy \u001b[32m[web-root]/profiles/README.txt\u001b[39m from \u001b[32massets/scaffold/files/profiles.README.txt\u001b[39m\r\n"] -[114.095682, "o", " - Copy \u001b[32m[project-root]/recipes/README.txt\u001b[39m from \u001b[32massets/scaffold/files/recipes.README.txt\u001b[39m\r\n - Skip \u001b[32m[web-root]/sites/example.sites.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[114.096303, "o", " - Copy \u001b[32m[web-root]/sites/development.services.yml\u001b[39m from \u001b[32massets/scaffold/files/development.services.yml\u001b[39m\r\n - Skip \u001b[32m[web-root]/sites/example.settings.local.php\u001b[39m: overridden in \u001b[33mstar_wars_org/star_wars\u001b[39m\r\n"] -[114.497821, "o", "PHP CodeSniffer Config \u001b[32minstalled_paths\u001b[39m \u001b[33mset to\u001b[39m \u001b[32m../../drevops/phpcs-standard/src,../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,../../phpcsstandards/phpcsutils,../../sirbrillig/phpcs-variable-analysis,../../slevomat/coding-standard\u001b[39m\r\n"] -[114.499817, "o", "\u001b[32mphpstan/extension-installer:\u001b[39m Extensions installed\r\n> \u001b[32mcomposer/pcre:\u001b[39m installed\r\n> \u001b[32mmglaman/phpstan-drupal:\u001b[39m installed\r\n> \u001b[32mphpstan/phpstan-deprecation-rules:\u001b[39m installed\r\n"] -[114.507021, "o", "\u001b[32mChangelogs summary:\u001b[39m\r\n\r\n - \u001b[32mpyrech/composer-changelogs\u001b[39m installed in version \u001b[33mv2.2.0\u001b[39m\r\n Release notes: https://github.com/pyrech/composer-changelogs/releases/tag/v2.2.0\r\n\r\n - \u001b[32msquizlabs/php_codesniffer\u001b[39m installed in version \u001b[33m4.0.4\u001b[39m\r\n Release notes: https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/tag/4.0.4\r\n\r\n - \u001b[32mdealerdirect/phpcodesniffer-composer-installer\u001b[39m installed in version \u001b[33mv1.2.1\u001b[39m\r\n Release notes: https://github.com/PHPCSStandards/composer-installer/releases/tag/v1.2.1\r\n\r\n - \u001b[32mmarc-mabe/php-enum\u001b[39m installed in version \u001b[33mv4.7.2\u001b[39m\r\n Release notes: https://github.com/marc-mabe/php-enum/releases/tag/v4.7.2\r\n\r\n - \u001b[32mjustinrainbow/json-schema\u001b[39m installed in version \u001b[33m6.8.2\u001b[39m\r\n Release notes: https://github.com/jsonrainbow/json-schema/releases/tag/6.8.2\r\n\r\n - \u001b[32mlocalheinz/diff\u001b[39m installed in version \u001b[33m1.3.0\u001b[39m\r\n Release notes: https://github.com/localheinz/diff/releases/tag/1.3.0\r\n\r\n - \u001b[32mergeb"] -[114.507034, "o", "nis/json-printer\u001b[39m installed in version \u001b[33m3.8.1\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-printer/releases/tag/3.8.1\r\n\r\n - \u001b[32mergebnis/json-pointer\u001b[39m installed in version \u001b[33m3.8.0\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-pointer/releases/tag/3.8.0\r\n\r\n - \u001b[32mergebnis/json\u001b[39m installed in version \u001b[33m1.6.0\u001b[39m\r\n Release notes: https://github.com/ergebnis/json/releases/tag/1.6.0\r\n\r\n - \u001b[32mergebnis/json-schema-validator\u001b[39m installed in version \u001b[33m4.5.1\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-schema-validator/releases/tag/4.5.1\r\n\r\n - \u001b[32mergebnis/json-normalizer\u001b[39m installed in version \u001b[33m4.10.1\u001b[39m\r\n Release notes: https://github.com/ergebnis/json-normalizer/releases/tag/4.10.1\r\n\r\n - \u001b[32mergebnis/composer-normalize\u001b[39m installed in version \u001b[33m2.52.0\u001b[39m\r\n Release notes: https://github.com/ergebnis/composer-normalize/releases/tag/2.52.0\r\n\r\n - \u001b[32mphpstan/phpstan\u001b[39m installed in version \u001b[33m2.2.8\u001b[39m\r\n\r\n - \u001b[32mphpstan/exte"] -[114.507073, "o", "nsion-installer\u001b[39m installed in version \u001b[33m1.4.3\u001b[39m\r\n Release notes: https://github.com/phpstan/extension-installer/releases/tag/1.4.3\r\n\r\n - \u001b[32mpsr/log\u001b[39m installed in version \u001b[33m3.0.2\u001b[39m\r\n Release notes: https://github.com/php-fig/log/releases/tag/3.0.2\r\n\r\n - \u001b[32mcomposer/pcre\u001b[39m installed in version \u001b[33m3.4.0\u001b[39m\r\n Release notes: https://github.com/composer/pcre/releases/tag/3.4.0\r\n\r\n - \u001b[32mcomposer/xdebug-handler\u001b[39m installed in version \u001b[33m3.0.5\u001b[39m\r\n Release notes: https://github.com/composer/xdebug-handler/releases/tag/3.0.5\r\n\r\n - \u001b[32msymfony/polyfill-iconv\u001b[39m installed in version \u001b[33mv1.37.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-iconv/releases/tag/v1.37.0\r\n\r\n - \u001b[32msymfony/polyfill-mbstring\u001b[39m installed in version \u001b[33mv1.38.2\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-mbstring/releases/tag/v1.38.2\r\n\r\n - \u001b[32msymfony/polyfill-intl-normalizer\u001b[39m installed in version \u001b[33mv1.38.0\u001b[39m\r\n Release notes: https://github.com/sym"] -[114.50713, "o", "fony/polyfill-intl-normalizer/releases/tag/v1.38.0\r\n\r\n - \u001b[32msymfony/polyfill-intl-grapheme\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-intl-grapheme/releases/tag/v1.41.0\r\n\r\n - \u001b[32msymfony/polyfill-ctype\u001b[39m installed in version \u001b[33mv1.37.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-ctype/releases/tag/v1.37.0\r\n\r\n - \u001b[32msymfony/deprecation-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/deprecation-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/string\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/string/releases/tag/v7.4.15\r\n\r\n - \u001b[32mpsr/container\u001b[39m installed in version \u001b[33m2.0.2\u001b[39m\r\n Release notes: https://github.com/php-fig/container/releases/tag/2.0.2\r\n\r\n - \u001b[32msymfony/service-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/service-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymf"] -[114.507153, "o", "ony/console\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/console/releases/tag/v7.4.16\r\n\r\n - \u001b[32mconsolidation/log\u001b[39m installed in version \u001b[33m3.1.2\u001b[39m\r\n Release notes: https://github.com/consolidation/log/releases/tag/3.1.2\r\n\r\n - \u001b[32msymfony/finder\u001b[39m installed in version \u001b[33mv7.4.14\u001b[39m\r\n Release notes: https://github.com/symfony/finder/releases/tag/v7.4.14\r\n\r\n - \u001b[32msymfony/filesystem\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/filesystem/releases/tag/v7.4.15\r\n\r\n - \u001b[32mdantleech/invoke\u001b[39m installed in version \u001b[33m2.0.0\u001b[39m\r\n Release notes: https://github.com/dantleech/invoke/releases/tag/2.0.0\r\n\r\n - \u001b[32mcucumber/messages\u001b[39m installed in version \u001b[33mv19.1.4\u001b[39m\r\n Release notes: https://github.com/cucumber/messages-php/releases/tag/v19.1.4\r\n\r\n - \u001b[32mcucumber/gherkin\u001b[39m installed in version \u001b[33mv24.1.0\u001b[39m\r\n Release notes: https://github.com/cucumber/gherkin-php/releases/tag/v24.1.0\r\n"] -[114.507168, "o", "\r\n - \u001b[32mdantleech/gherkin-lint\u001b[39m installed in version \u001b[33m0.2.4\u001b[39m\r\n Release notes: https://github.com/dantleech/gherkin-lint-php/releases/tag/0.2.4\r\n\r\n - \u001b[32mdoctrine/instantiator\u001b[39m installed in version \u001b[33m2.1.0\u001b[39m\r\n Release notes: https://github.com/doctrine/instantiator/releases/tag/2.1.0\r\n\r\n - \u001b[32mpsr/cache\u001b[39m installed in version \u001b[33m3.0.0\u001b[39m\r\n Release notes: https://github.com/php-fig/cache/releases/tag/3.0.0\r\n\r\n - \u001b[32mdoctrine/event-manager\u001b[39m installed in version \u001b[33m2.1.1\u001b[39m\r\n Release notes: https://github.com/doctrine/event-manager/releases/tag/2.1.1\r\n\r\n - \u001b[32mdoctrine/deprecations\u001b[39m installed in version \u001b[33m1.1.6\u001b[39m\r\n Release notes: https://github.com/doctrine/deprecations/releases/tag/1.1.6\r\n\r\n - \u001b[32mdoctrine/persistence\u001b[39m installed in version \u001b[33m4.2.0\u001b[39m\r\n Release notes: https://github.com/doctrine/persistence/releases/tag/4.2.0\r\n\r\n - \u001b[32msymfony/yaml\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/y"] -[114.507182, "o", "aml/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/translation-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/translation-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/translation\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/translation/releases/tag/v7.4.16\r\n\r\n - \u001b[32mpsr/event-dispatcher\u001b[39m installed in version \u001b[33m1.0.0\u001b[39m\r\n Release notes: https://github.com/php-fig/event-dispatcher/releases/tag/1.0.0\r\n\r\n - \u001b[32msymfony/event-dispatcher-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github.com/symfony/event-dispatcher-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/event-dispatcher\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/event-dispatcher/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/var-exporter\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/var-exporter/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymf"] -[114.507196, "o", "ony/dependency-injection\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/dependency-injection/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/config\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/config/releases/tag/v7.4.16\r\n\r\n - \u001b[32mnikic/php-parser\u001b[39m installed in version \u001b[33mv5.8.0\u001b[39m\r\n Release notes: https://github.com/nikic/PHP-Parser/releases/tag/v5.8.0\r\n\r\n - \u001b[32mbehat/gherkin\u001b[39m installed in version \u001b[33mv4.17.0\u001b[39m\r\n Release notes: https://github.com/Behat/Gherkin/releases/tag/v4.17.0\r\n\r\n - \u001b[32mbehat/behat\u001b[39m installed in version \u001b[33mv3.32.0\u001b[39m\r\n Release notes: https://github.com/Behat/Behat/releases/tag/v3.32.0\r\n\r\n - \u001b[32mdrevops/behat-format-progress-fail\u001b[39m installed in version \u001b[33m1.5.1\u001b[39m\r\n Release notes: https://github.com/drevops/behat-format-progress-fail/releases/tag/1.5.1\r\n\r\n - \u001b[32msymfony/polyfill-php83\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/s"] -[114.507199, "o", "ymfony/polyfill-php83/releases/tag/v1.41.0\r\n\r\n - \u001b[32msymfony/http-client-contracts\u001b[39m installed in version \u001b[33mv3.7.1\u001b[39m\r\n Release notes: https://github."] -[114.507214, "o", "com/symfony/http-client-contracts/releases/tag/v3.7.1\r\n\r\n - \u001b[32msymfony/http-client\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/http-client/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/css-selector\u001b[39m installed in version \u001b[33mv7.4.9\u001b[39m\r\n Release notes: https://github.com/symfony/css-selector/releases/tag/v7.4.9\r\n\r\n - \u001b[32mbehat/mink\u001b[39m installed in version \u001b[33mv1.13.0\u001b[39m\r\n Release notes: https://github.com/minkphp/Mink/releases/tag/v1.13.0\r\n\r\n - \u001b[32mfriends-of-behat/mink-extension\u001b[39m installed in version \u001b[33mv2.7.5\u001b[39m\r\n Release notes: https://github.com/FriendsOfBehat/MinkExtension/releases/tag/v2.7.5\r\n\r\n - \u001b[32mdrevops/behat-screenshot\u001b[39m installed in version \u001b[33m2.6.0\u001b[39m\r\n Release notes: https://github.com/drevops/behat-screenshot/releases/tag/2.6.0\r\n\r\n - \u001b[32mdrevops/behat-steps\u001b[39m installed in version \u001b[33m3.14.1\u001b[39m\r\n Release notes: https://github.com/drevops/behat-steps/releases/tag/3.14.1\r\n\r\n - \u001b[32mdrevops/phpcs-standard\u001b[39m "] -[114.507251, "o", "installed in version \u001b[33m1.0.0\u001b[39m\r\n Release notes: https://github.com/drevops/phpcs-standard/releases/tag/1.0.0\r\n\r\n - \u001b[32mdrevops/vortex-tooling\u001b[39m installed in version \u001b[33m1.4.0\u001b[39m\r\n Release notes: https://github.com/drevops/vortex-tooling/releases/tag/1.4.0\r\n\r\n - \u001b[32mtwig/twig\u001b[39m installed in version \u001b[33mv3.28.0\u001b[39m\r\n Release notes: https://github.com/twigphp/Twig/releases/tag/v3.28.0\r\n\r\n - \u001b[32msymfony/polyfill-intl-idn\u001b[39m installed in version \u001b[33mv1.38.1\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-intl-idn/releases/tag/v1.38.1\r\n\r\n - \u001b[32msymfony/mime\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/mime/releases/tag/v7.4.16\r\n\r\n - \u001b[32mtwig/html-extra\u001b[39m installed in version \u001b[33mv3.28.0\u001b[39m\r\n Release notes: https://github.com/twigphp/html-extra/releases/tag/v3.28.0\r\n\r\n - \u001b[32msymfony/validator\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/validator/releases/tag/v7.4.16\r\n\r\n - \u001b[3"] -[114.507284, "o", "2msymfony/polyfill-php84\u001b[39m installed in version \u001b[33mv1.38.1\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php84/releases/tag/v1.38.1\r\n\r\n - \u001b[32msymfony/serializer\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/serializer/releases/tag/v7.4.16\r\n\r\n - \u001b[32msymfony/routing\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/routing/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/http-foundation\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/http-foundation/releases/tag/v7.4.16\r\n\r\n - \u001b[32mpsr/http-message\u001b[39m installed in version \u001b[33m2.0\u001b[39m\r\n Release notes: https://github.com/php-fig/http-message/releases/tag/2.0\r\n\r\n - \u001b[32msymfony/psr-http-message-bridge\u001b[39m installed in version \u001b[33mv7.4.8\u001b[39m\r\n Release notes: https://github.com/symfony/psr-http-message-bridge/releases/tag/v7.4.8\r\n\r\n - \u001b[32msymfony/process\u001b[39m installed in version \u001b[33mv7.4.13\u001b[39m\r\n Release notes: htt"] -[114.507316, "o", "ps://github.com/symfony/process/releases/tag/v7.4.13\r\n\r\n - \u001b[32msymfony/polyfill-php86\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php86/releases/tag/v1.41.0\r\n\r\n - \u001b[32msymfony/polyfill-php85\u001b[39m installed in version \u001b[33mv1.41.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php85/releases/tag/v1.41.0\r\n\r\n - \u001b[32mdoctrine/lexer\u001b[39m installed in version \u001b[33m3.0.1\u001b[39m\r\n Release notes: https://github.com/doctrine/lexer/releases/tag/3.0.1\r\n\r\n - \u001b[32megulias/email-validator\u001b[39m installed in version \u001b[33m4.0.4\u001b[39m\r\n Release notes: https://github.com/egulias/EmailValidator/releases/tag/4.0.4\r\n\r\n - \u001b[32msymfony/mailer\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/mailer/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/var-dumper\u001b[39m installed in version \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/var-dumper/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/error-handler\u001b[39m installed in version"] -[114.507338, "o", " \u001b[33mv7.4.15\u001b[39m\r\n Release notes: https://github.com/symfony/error-handler/releases/tag/v7.4.15\r\n\r\n - \u001b[32msymfony/http-kernel\u001b[39m installed in version \u001b[33mv7.4.16\u001b[39m\r\n Release notes: https://github.com/symfony/http-kernel/releases/tag/v7.4.16\r\n\r\n - \u001b[32msebastian/diff\u001b[39m installed in version \u001b[33m6.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/diff/releases/tag/6.0.2\r\n\r\n - \u001b[32mrevolt/event-loop\u001b[39m installed in version \u001b[33mv1.0.9\u001b[39m\r\n Release notes: https://github.com/revoltphp/event-loop/releases/tag/v1.0.9\r\n\r\n - \u001b[32mphp-tuf/composer-stager\u001b[39m installed in version \u001b[33mv2.1.1\u001b[39m\r\n Release notes: https://github.com/php-tuf/composer-stager/releases/tag/v2.1.1\r\n\r\n - \u001b[32mpear/pear_exception\u001b[39m installed in version \u001b[33mv1.0.2\u001b[39m\r\n Release notes: https://github.com/pear/PEAR_Exception/releases/tag/v1.0.2\r\n\r\n - \u001b[32mpear/console_getopt\u001b[39m installed in version \u001b[33mv1.4.3\u001b[39m\r\n Release notes: https://github.com/pear/Console_Getopt/releases/tag/v1.4.3\r\n\r\n - \u001b"] -[114.507412, "o", "[32mpear/pear-core-minimal\u001b[39m installed in version \u001b[33mv1.10.18\u001b[39m\r\n Release notes: https://github.com/pear/pear-core-minimal/releases/tag/v1.10.18\r\n\r\n - \u001b[32mpear/archive_tar\u001b[39m installed in version \u001b[33m1.6.1\u001b[39m\r\n Release notes: https://github.com/pear/Archive_Tar/releases/tag/1.6.1\r\n\r\n - \u001b[32mmck89/peast\u001b[39m installed in version \u001b[33mv1.17.7\u001b[39m\r\n Release notes: https://github.com/mck89/peast/releases/tag/v1.17.7\r\n\r\n - \u001b[32mmasterminds/html5\u001b[39m installed in version \u001b[33m2.10.1\u001b[39m\r\n Release notes: https://github.com/Masterminds/html5-php/releases/tag/2.10.1\r\n\r\n - \u001b[32msymfony/polyfill-php80\u001b[39m installed in version \u001b[33mv1.37.0\u001b[39m\r\n Release notes: https://github.com/symfony/polyfill-php80/releases/tag/v1.37.0\r\n\r\n - \u001b[32mralouphie/getallheaders\u001b[39m installed in version \u001b[33m3.0.3\u001b[39m\r\n Release notes: https://github.com/ralouphie/getallheaders/releases/tag/3.0.3\r\n\r\n - \u001b[32mpsr/http-factory\u001b[39m installed in version \u001b[33m1.1.0\u001b[39m\r\n Release notes: https://github.com/php-fig/h"] -[114.507427, "o", "ttp-factory/releases/tag/1.1.0\r\n\r\n - \u001b[32mguzzlehttp/psr7\u001b[39m installed in version \u001b[33m2.13.0\u001b[39m\r\n Release notes: https://github.com/guzzle/psr7/releases/tag/2.13.0\r\n\r\n - \u001b[32mpsr/http-client\u001b[39m installed in version \u001b[33m1.0.3\u001b[39m\r\n Release notes: https://github.com/php-fig/http-client/releases/tag/1.0.3\r\n\r\n - \u001b[32mguzzlehttp/promises\u001b[39m installed in version \u001b[33m2.5.2\u001b[39m\r\n Release notes: https://github.com/guzzle/promises/releases/tag/2.5.2\r\n\r\n - \u001b[32mguzzlehttp/guzzle\u001b[39m installed in version \u001b[33m7.15.3\u001b[39m\r\n Release notes: https://github.com/guzzle/guzzle/releases/tag/7.15.3\r\n\r\n - \u001b[32mcomposer/semver\u001b[39m installed in version \u001b[33m3.4.4\u001b[39m\r\n Release notes: https://github.com/composer/semver/releases/tag/3.4.4\r\n\r\n - \u001b[32masm89/stack-cors\u001b[39m installed in version \u001b[33mv2.4.0\u001b[39m\r\n Release notes: https://github.com/asm89/stack-cors/releases/tag/v2.4.0\r\n\r\n - \u001b[32mdrupal/core\u001b[39m installed in version \u001b[33m11.4.5\u001b[39m\r\n Release notes: https://github.com/drupal/core/releases/tag/"] -[114.50744, "o", "11.4.5\r\n\r\n - \u001b[32mdrupal/clamav\u001b[39m installed in version \u001b[33m2.1.0\u001b[39m\r\n\r\n - \u001b[32mphpstan/phpdoc-parser\u001b[39m installed in version \u001b[33m2.3.3\u001b[39m\r\n Release notes: https://github.com/phpstan/phpdoc-parser/releases/tag/2.3.3\r\n\r\n - \u001b[32mslevomat/coding-standard\u001b[39m installed in version \u001b[33m8.31.1\u001b[39m\r\n Release notes: https://github.com/slevomat/coding-standard/releases/tag/8.31.1\r\n\r\n - \u001b[32msirbrillig/phpcs-variable-analysis\u001b[39m installed in version \u001b[33mv2.13.0\u001b[39m\r\n Release notes: https://github.com/sirbrillig/phpcs-variable-analysis/releases/tag/v2.13.0\r\n\r\n - \u001b[32mdrupal/coder\u001b[39m installed in version \u001b[33m9.0.1\u001b[39m\r\n Release notes: https://github.com/pfrenssen/coder/releases/tag/9.0.1\r\n\r\n - \u001b[32mdrupal/coffee\u001b[39m installed in version \u001b[33m2.0.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/config_split\u001b[39m installed in version \u001b[33m2.0.2\u001b[39m\r\n\r\n - \u001b[32mdrupal/config_update\u001b[39m installed in version \u001b[33m2.0.0-alpha4\u001b[39m\r\n\r\n - \u001b[32mdrupal/core-recommended\u001b[39m installed in version \u001b[33m11.4.5\u001b[39m\r\n Release "] -[114.507445, "o", "notes: https://github.com/drupal/core-recommended/releases/tag/11.4.5\r\n\r\n - \u001b[32mdoctrine/common\u001b[39m installed in version \u001b[33m3.5.0\u001b[39m\r\n Release notes: https://g"] -[114.507463, "o", "ithub.com/doctrine/common/releases/tag/3.5.0\r\n\r\n - \u001b[32mdrupal/devel\u001b[39m installed in version \u001b[33m5.5.0\u001b[39m\r\n\r\n - \u001b[32mwebflo/drupal-finder\u001b[39m installed in version \u001b[33m1.3.1\u001b[39m\r\n Release notes: https://github.com/webflo/drupal-finder/releases/tag/1.3.1\r\n\r\n - \u001b[32msymfony/dom-crawler\u001b[39m installed in version \u001b[33mv7.4.12\u001b[39m\r\n Release notes: https://github.com/symfony/dom-crawler/releases/tag/v7.4.12\r\n\r\n - \u001b[32mlullabot/php-webdriver\u001b[39m installed in version \u001b[33mv2.0.7\u001b[39m\r\n Release notes: https://github.com/Lullabot/php-webdriver/releases/tag/v2.0.7\r\n\r\n - \u001b[32mlullabot/mink-selenium2-driver\u001b[39m installed in version \u001b[33mv1.7.4\u001b[39m\r\n Release notes: https://github.com/Lullabot/MinkSelenium2Driver/releases/tag/v1.7.4\r\n\r\n - \u001b[32mdrupal/drupal-driver\u001b[39m installed in version \u001b[33mv3.3.1\u001b[39m\r\n Release notes: https://github.com/jhedstrom/DrupalDriver/releases/tag/v3.3.1\r\n\r\n - \u001b[32msymfony/browser-kit\u001b[39m installed in version \u001b[33mv8.1.1\u001b[39m\r\n Release notes: https://github.com/symfony/b"] -[114.507499, "o", "rowser-kit/releases/tag/v8.1.1\r\n\r\n - \u001b[32mbehat/mink-browserkit-driver\u001b[39m installed in version \u001b[33mv2.3.0\u001b[39m\r\n Release notes: https://github.com/minkphp/MinkBrowserKitDriver/releases/tag/v2.3.0\r\n\r\n - \u001b[32mdrupal/drupal-extension\u001b[39m installed in version \u001b[33mv6.1.0\u001b[39m\r\n Release notes: https://github.com/jhedstrom/drupalextension/releases/tag/v6.1.0\r\n\r\n - \u001b[32mdrupal/drupal_helpers\u001b[39m installed in version \u001b[33m2.1.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/environment_indicator\u001b[39m installed in version \u001b[33m4.0.25\u001b[39m\r\n\r\n - \u001b[32mdrupal/generated_content\u001b[39m installed in version \u001b[33m2.1.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/navigation_extra_tools\u001b[39m installed in version \u001b[33m1.3.2\u001b[39m\r\n\r\n - \u001b[32mdrupal/token\u001b[39m installed in version \u001b[33m1.17.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/ctools\u001b[39m installed in version \u001b[33m4.1.1\u001b[39m\r\n\r\n - \u001b[32mdrupal/pathauto\u001b[39m installed in version \u001b[33m1.15.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/redirect\u001b[39m installed in version \u001b[33m1.13.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/redis\u001b[39m installed in version \u001b[33m1.11.0\u001b[39m\r\n"] -[114.507547, "o", "\r\n - \u001b[32mdrupal/reroute_email\u001b[39m installed in version \u001b[33m2.3.0-rc2\u001b[39m\r\n\r\n - \u001b[32mdrupal/robotstxt\u001b[39m installed in version \u001b[33m1.6.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/sdc_devel\u001b[39m installed in version \u001b[33m1.0.3\u001b[39m\r\n\r\n - \u001b[32mhalaxa/json-machine\u001b[39m installed in version \u001b[33m1.2.6\u001b[39m\r\n Release notes: https://github.com/halaxa/json-machine/releases/tag/1.2.6\r\n\r\n - \u001b[32msolarium/solarium\u001b[39m installed in version \u001b[33m7.0.0\u001b[39m\r\n Release notes: https://github.com/solariumphp/solarium/releases/tag/7.0.0\r\n\r\n - \u001b[32mmaennchen/zipstream-php\u001b[39m installed in version \u001b[33m3.2.2\u001b[39m\r\n Release notes: https://github.com/maennchen/ZipStream-PHP/releases/tag/3.2.2\r\n\r\n - \u001b[32mlaminas/laminas-stdlib\u001b[39m installed in version \u001b[33m3.21.0\u001b[39m\r\n Release notes: https://github.com/laminas/laminas-stdlib/releases/tag/3.21.0\r\n\r\n - \u001b[32mdrupal/search_api\u001b[39m installed in version \u001b[33m1.41.0\u001b[39m\r\n\r\n - \u001b[32mdflydev/dot-access-data\u001b[39m installed in version \u001b[33mv3.0.3\u001b[39m\r\n Release notes: https://github.com/dfly"] -[114.507574, "o", "dev/dflydev-dot-access-data/releases/tag/v3.0.3\r\n\r\n - \u001b[32mconsolidation/output-formatters\u001b[39m installed in version \u001b[33m4.7.1\u001b[39m\r\n Release notes: https://github.com/consolidation/output-formatters/releases/tag/4.7.1\r\n\r\n - \u001b[32mconsolidation/annotated-command\u001b[39m installed in version \u001b[33m4.10.5\u001b[39m\r\n Release notes: https://github.com/consolidation/annotated-command/releases/tag/4.10.5\r\n\r\n - \u001b[32mdrupal/search_api_solr\u001b[39m installed in version \u001b[33m4.4.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/seckit\u001b[39m installed in version \u001b[33m2.0.3\u001b[39m\r\n\r\n - \u001b[32mdrupal/shield\u001b[39m installed in version \u001b[33m1.8.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/stage_file_proxy\u001b[39m installed in version \u001b[33m4.0.0\u001b[39m\r\n\r\n - \u001b[32mdrupal/testmode\u001b[39m installed in version \u001b[33m2.7.2\u001b[39m\r\n\r\n - \u001b[32mdrupal/xmlsitemap\u001b[39m installed in version \u001b[33m2.0.0\u001b[39m\r\n\r\n - \u001b[32mpsy/psysh\u001b[39m installed in version \u001b[33mv0.12.24\u001b[39m\r\n Release notes: https://github.com/bobthecow/psysh/releases/tag/v0.12.24\r\n\r\n - \u001b[32mleague/container\u001b[39m installed in version \u001b[3"] -[114.507599, "o", "3m4.2.5\u001b[39m\r\n Release notes: https://github.com/thephpleague/container/releases/tag/4.2."] -[114.507631, "o", "5\r\n\r\n - \u001b[32mlaravel/prompts\u001b[39m installed in version \u001b[33mv0.3.23\u001b[39m\r\n Release notes: https://github.com/laravel/prompts/releases/tag/v0.3.23\r\n\r\n - \u001b[32mgrasmash/yaml-cli\u001b[39m installed in version \u001b[33m3.2.1\u001b[39m\r\n Release notes: https://github.com/grasmash/yaml-cli/releases/tag/3.2.1\r\n\r\n - \u001b[32mgrasmash/expander\u001b[39m installed in version \u001b[33m3.0.1\u001b[39m\r\n Release notes: https://github.com/grasmash/expander/releases/tag/3.0.1\r\n\r\n - \u001b[32mconsolidation/config\u001b[39m installed in version \u001b[33m3.2.1\u001b[39m\r\n Release notes: https://github.com/consolidation/config/releases/tag/3.2.1\r\n\r\n - \u001b[32mconsolidation/site-alias\u001b[39m installed in version \u001b[33m4.1.3\u001b[39m\r\n Release notes: https://github.com/consolidation/site-alias/releases/tag/4.1.3\r\n\r\n - \u001b[32mconsolidation/site-process\u001b[39m installed in version \u001b[33m6.1.0\u001b[39m\r\n Release notes: https://github.com/consolidation/site-process/releases/tag/6.1.0\r\n\r\n - \u001b[32msymfony/polyfill-php81\u001b[39m installed in version \u001b[33mv1.38.1\u001b[39m\r\n Release notes: https://git"] -[114.507671, "o", "hub.com/symfony/polyfill-php81/releases/tag/v1.38.1\r\n\r\n - \u001b[32mphootwork/lang\u001b[39m installed in version \u001b[33mv3.2.3\u001b[39m\r\n Release notes: https://github.com/phootwork/lang/releases/tag/v3.2.3\r\n\r\n - \u001b[32mphootwork/collection\u001b[39m installed in version \u001b[33mv3.2.3\u001b[39m\r\n Release notes: https://github.com/phootwork/collection/releases/tag/v3.2.3\r\n\r\n - \u001b[32mphpowermove/docblock\u001b[39m installed in version \u001b[33mv4.0\u001b[39m\r\n Release notes: https://github.com/phpowermove/docblock/releases/tag/v4.0\r\n\r\n - \u001b[32mconsolidation/robo\u001b[39m installed in version \u001b[33m5.1.1\u001b[39m\r\n Release notes: https://github.com/consolidation/robo/releases/tag/5.1.1\r\n\r\n - \u001b[32mconsolidation/filter-via-dot-access-data\u001b[39m installed in version \u001b[33m2.0.3\u001b[39m\r\n Release notes: https://github.com/consolidation/filter-via-dot-access-data/releases/tag/2.0.3\r\n\r\n - \u001b[32mchi-teck/drupal-code-generator\u001b[39m installed in version \u001b[33m4.2.0\u001b[39m\r\n Release notes: https://github.com/Chi-teck/drupal-code-generator/releases/tag/4.2.0\r\n\r\n - \u001b[32mdru"] -[114.507695, "o", "sh/drush\u001b[39m installed in version \u001b[33m13.7.6\u001b[39m\r\n Release notes: https://github.com/drush-ops/drush/releases/tag/13.7.6\r\n\r\n - \u001b[32mphpstan/phpstan-deprecation-rules\u001b[39m installed in version \u001b[33m2.0.5\u001b[39m\r\n Release notes: https://github.com/phpstan/phpstan-deprecation-rules/releases/tag/2.0.5\r\n\r\n - \u001b[32mmglaman/phpstan-drupal\u001b[39m installed in version \u001b[33m2.1.2\u001b[39m\r\n Release notes: https://github.com/mglaman/phpstan-drupal/releases/tag/2.1.2\r\n\r\n - \u001b[32mmikey179/vfsstream\u001b[39m installed in version \u001b[33mv1.6.12\u001b[39m\r\n Release notes: https://github.com/bovigo/vfsStream/releases/tag/v1.6.12\r\n\r\n - \u001b[32mrector/rector\u001b[39m installed in version \u001b[33m2.6.3\u001b[39m\r\n Release notes: https://github.com/rectorphp/rector/releases/tag/2.6.3\r\n\r\n - \u001b[32mpalantirnet/drupal-rector\u001b[39m installed in version \u001b[33m1.1.2\u001b[39m\r\n Release notes: https://github.com/palantirnet/drupal-rector/releases/tag/1.1.2\r\n\r\n - \u001b[32mphpcsstandards/phpcsutils\u001b[39m installed in version \u001b[33m1.2.3\u001b[39m\r\n Release notes: https://githu"] -[114.507737, "o", "b.com/PHPCSStandards/PHPCSUtils/releases/tag/1.2.3\r\n\r\n - \u001b[32mphpcompatibility/php-compatibility\u001b[39m installed in version \u001b[33m10.0.0-alpha2\u001b[39m\r\n Release notes: https://github.com/PHPCompatibility/PHPCompatibility/releases/tag/10.0.0-alpha2\r\n\r\n - \u001b[32mwebmozart/assert\u001b[39m installed in version \u001b[33m2.4.1\u001b[39m\r\n Release notes: https://github.com/webmozarts/assert/releases/tag/2.4.1\r\n\r\n - \u001b[32mphpdocumentor/reflection-common\u001b[39m installed in version \u001b[33m2.2.0\u001b[39m\r\n Release notes: https://github.com/phpDocumentor/ReflectionCommon/releases/tag/2.2.0\r\n\r\n - \u001b[32mphpdocumentor/type-resolver\u001b[39m installed in version \u001b[33m2.0.0\u001b[39m\r\n Release notes: https://github.com/phpDocumentor/TypeResolver/releases/tag/2.0.0\r\n\r\n - \u001b[32mphpdocumentor/reflection-docblock\u001b[39m installed in version \u001b[33m6.0.3\u001b[39m\r\n Release notes: https://github.com/phpDocumentor/ReflectionDocBlock/releases/tag/6.0.3\r\n\r\n - \u001b[32mstaabm/side-effects-detector\u001b[39m installed in version \u001b[33m1.0.5\u001b[39m\r\n Release notes: https://github.co"] -[114.507771, "o", "m/staabm/side-effects-detector/releases/tag/1.0.5\r\n\r\n - \u001b[32msebastian/version\u001b[39m installed in version \u001b[33m5.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/version/releases/tag/5.0.2\r\n\r\n - \u001b[32msebastian/type\u001b[39m installed in version \u001b[33m5.1.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/type/releases/tag/5.1.3\r\n\r\n - \u001b[32msebastian/recursion-context\u001b[39m installed in version \u001b[33m6.0.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/recursion-context/releases/tag/6.0.3\r\n\r\n - \u001b[32msebastian/object-reflector\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/object-reflector/releases/tag/4.0.1\r\n\r\n - \u001b[32msebastian/object-enumerator\u001b[39m installed in version \u001b[33m6.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/object-enumerator/releases/tag/6.0.1\r\n\r\n - \u001b[32msebastian/global-state\u001b[39m installed in version \u001b[33m7.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/global-state/release"] -[114.507809, "o", "s/tag/7.0.2\r\n\r\n - \u001b[32msebastian/exporter\u001b[39m installed in version \u001b[33m6.3.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/exporter/releases/tag/6.3.2\r\n\r\n - \u001b[32msebastian/environment\u001b[39m installed in version \u001b[33m7.2.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/environment/releases/tag/7.2.1\r\n\r\n - \u001b[32msebastian/comparator\u001b[39m installed in version \u001b[33m6.3.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/comparator/releases/tag/6.3.3\r\n\r\n - \u001b[32msebastian/code-unit\u001b[39m installed in version \u001b[33m3.0.3\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/code-unit/releases/tag/3.0.3\r\n\r\n - \u001b[32msebastian/cli-parser\u001b[39m installed in version \u001b[33m3.0.2\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/cli-parser/releases/tag/3.0.2\r\n\r\n - \u001b[32mphpunit/php-timer\u001b[39m installed in version \u001b[33m7.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-timer/releases/tag/7.0.1\r\n\r\n - \u001b[32mphpunit/php-text-template\u001b[39m installed in versi"] -[114.507862, "o", "on \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-text-template/releases/tag/4.0.1\r\n\r\n - \u001b[32mphpunit/php-invoker\u001b[39m installed in version \u001b[33m5.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-invoker/releases/tag/5.0.1\r\n\r\n - \u001b[32mphpunit/php-file-iterator\u001b[39m installed in version \u001b[33m5.1.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-file-iterator/releases/tag/5.1.1\r\n\r\n - \u001b[32mtheseer/tokenizer\u001b[39m installed in version \u001b[33m1.3.1\u001b[39m\r\n Release notes: https://github.com/theseer/tokenizer/releases/tag/1.3.1\r\n\r\n - \u001b[32msebastian/lines-of-code\u001b[39m installed in version \u001b[33m3.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/lines-of-code/releases/tag/3.0.1\r\n\r\n - \u001b[32msebastian/complexity\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/complexity/releases/tag/4.0.1\r\n\r\n - \u001b[32msebastian/code-unit-reverse-lookup\u001b[39m installed in version \u001b[33m4.0.1\u001b[39m\r\n Release notes: h"] -[114.507907, "o", "ttps://github.com/sebastianbergmann/code-unit-reverse-lookup/releases/tag/4.0.1\r\n\r\n - \u001b[32mphpunit/php-code-coverage\u001b[39m installed in version \u001b[33m11.0.12\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/php-code-coverage/releases/tag/11.0.12\r\n\r\n - \u001b[32mphar-io/version\u001b[39m installed in version \u001b[33m3.2.1\u001b[39m\r\n Release notes: https://github.com/phar-io/version/releases/tag/3.2.1\r\n\r\n - \u001b[32mphar-io/manifest\u001b[39m installed in version \u001b[33m2.0.4\u001b[39m\r\n Release notes: https://github.com/phar-io/manifest/releases/tag/2.0.4\r\n\r\n - \u001b[32mmyclabs/deep-copy\u001b[39m installed in version \u001b[33m1.14.0\u001b[39m\r\n Release notes: https://github.com/myclabs/DeepCopy/releases/tag/1.14.0\r\n\r\n - \u001b[32mphpunit/phpunit\u001b[39m installed in version \u001b[33m11.5.56\u001b[39m\r\n Release notes: https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.56\r\n\r\n - \u001b[32mphpspec/prophecy\u001b[39m installed in version \u001b[33mv1.26.1\u001b[39m\r\n Release notes: https://github.com/phpspec/prophecy/releases/tag/v1.26.1\r\n\r\n - \u001b[32mphpspec/prophecy-php"] -[114.507928, "o", "unit\u001b[39m installed in version \u001b[33mv2.5.0\u001b[39m\r\n Release notes: https://github.com/phpspec/prophecy-phpunit/releases/tag/v2.5.0\r\n\r\n - \u001b[32msoftcreatr/jsonp"] -[116.286158, "o", "npm warn deprecated whatwg-encoding@2.0.0: Use @exodus/bytes instead for a more spec-conformant and faster implementation\r\n"] -[116.552242, "o", "npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] -[117.002547, "o", "npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\r\n"] -[117.178709, "o", "npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me\r\n"] -[117.568498, "o", "npm warn deprecated abab@2.0.6: Use your platform's native atob() and btoa() methods instead\r\n"] -[117.664232, "o", "npm warn deprecated domexception@4.0.0: Use your platform's native DOMException instead\r\n"] -[117.666453, "o", "npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] -[117.764056, "o", "npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] -[120.36231, "o", "npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.\r\n"] -[121.569223, "o", "ath\u001b[39m installed in version \u001b[33m0.10.0\u001b[39m\r\n Release notes: https://github.com/SoftCreatR/JSONPath/releases/tag/0.10.0\r\n\r\n - \u001b[32mvincentlanglet/twig-cs-fixer\u001b[39m installed in version \u001b[33m4.0.2\u001b[39m\r\n Release notes: https://github.com/VincentLanglet/Twig-CS-Fixer/releases/tag/4.0.2\r\n\r\n\r\nadded 611 packages, and audited 612 packages in 7s\r\n\r\n171 packages are looking for funding\r\n"] -[121.56952, "o", " run `npm fund` for details\r\n"] -[121.5702, "o", "\r\nfound 0 vulnerabilities\r\n"] -[123.446925, "o", "npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.\r\n"] -[123.666594, "o", "npm warn deprecated @humanwhocodes/config-array@0.13.0: Use @eslint/config-array instead\r\n"] -[123.679409, "o", "npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported\r\n"] -[123.883556, "o", "npm warn deprecated glob@7.2.3: Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me\r\n"] -[124.109962, "o", "npm warn deprecated rimraf@2.7.1: Rimraf versions prior to v4 are no longer supported\r\n"] -[124.114326, "o", "npm warn deprecated @humanwhocodes/object-schema@2.0.3: Use @eslint/object-schema instead\r\n"] -[126.499591, "o", "npm warn deprecated eslint@8.57.1: This version is no longer supported. Please see https://eslint.org/version-support for other options.\r\n"] -[127.466294, "o", "\r\n> star_wars@1.0.0 postinstall\r\n> patch-package\r\n\r\n"] -[127.619081, "o", "No patch files found\r\npatch-package 6.5.1\r\nApplying patches...\r\n"] -[127.631743, "o", "\r\nadded 475 packages, and audited 476 packages in 6s\r\n\r\n169 packages are looking for funding\r\n run `npm fund` for details\r\n"] -[127.633928, "o", "\r\n2 vulnerabilities (1 low, 1 high)\r\n\r\nTo address all issues (including breaking changes), run:\r\n npm audit fix --force\r\n\r\nRun `npm audit` for details.\r\n"] -[127.96054, "o", "\r\n> star_wars@1.0.0 build\r\n> npm run clean && mkdir -p build/js && npm run concat && npm run uglify && npm run sass:prod && npm run postcss:prod && npm run copy\r\n\r\n"] -[128.045099, "o", "\r\n> star_wars@1.0.0 clean\r\n> rm -rf build\r\n\r\n"] -[128.135899, "o", "\r\n> star_wars@1.0.0 concat\r\n> find js -name '*.js' ! -name '*.min.js' -exec cat {} + > build/js/star_wars.min.js\r\n\r\n"] -[128.225823, "o", "\r\n> star_wars@1.0.0 uglify\r\n> terser build/js/star_wars.min.js -o build/js/star_wars.min.js -c drop_console=true -m reserved=['jQuery','Drupal'] 2>/dev/null || true\r\n\r\n"] -[128.394858, "o", "\r\n> star_wars@1.0.0 sass:prod\r\n> sass scss/styles.scss build/css/star_wars.min.css --no-source-map --style=compressed\r\n\r\n"] -[128.696347, "o", "\r\n> star_wars@1.0.0 postcss:prod\r\n> postcss build/css/star_wars.min.css -o build/css/star_wars.min.css --no-map\r\n\r\n"] -[129.140753, "o", "\r\n> star_wars@1.0.0 copy\r\n> npm run copy:images && npm run copy:fonts\r\n\r\n"] -[129.221722, "o", "\r\n> star_wars@1.0.0 copy:images\r\n> mkdir -p build/images && cp -r images/* build/images/ 2>/dev/null || true\r\n\r\n"] -[129.308458, "o", "\r\n> star_wars@1.0.0 copy:fonts\r\n> mkdir -p build/fonts && cp -r fonts/* build/fonts/ 2>/dev/null || true\r\n\r\n"] -[129.61232, "o", "\u001b[36m[INFO] Started site provisioning.\u001b[0m\r\n"] -[130.517173, "o", "\r\n Drupal core version : 11.4.5\r\n Drush version : 13.7.6.0\r\n\r\n Web root path : /app/web\r\n Public files path : sites/default/files\r\n Private files path : sites/default/files/private\r\n Temporary files path : /tmp\r\n Config files path : /app/config/default\r\n"] -[130.517623, "o", " DB dump file path : /app/.data/db.sql (present)\r\n\r\n Profile : standard\r\n"] -[130.517787, "o", " Configuration files present : No\r\n"] -[130.525826, "o", " Existing site found : No\r\n\r\n Provision type : database\r\n Fallback to profile : No\r\n Overwrite existing DB : Yes\r\n Skip DB sanitization : No\r\n Skip post-provision operations : No\r\n Verify config after update : No\r\n Use maintenance mode : Yes\r\n\r\n\u001b[36m[INFO] Provisioning site from the database dump file.\u001b[0m\r\n Dump file path: /app/.data/db.sql\r\n Existing site was not found.\r\n Fresh site content will be imported from the database dump file.\r\n"] -[130.531656, "o", "\u001b[36m[INFO] Started database file import.\u001b[0m\r\n"] -[130.730217, "o", "\r\n"] -[130.734895, "o", " // Do you really want to drop all tables in the database drupal?: yes. \r\n\r\n"] -[131.728177, "o", " Imported database from the dump file.\r\n"] -[131.728593, "o", "\u001b[32m[ OK ] Finished database file import.\u001b[0m\r\n"] -[131.728925, "o", "\r\n"] -[133.969869, "o", "\u001b[36m[INFO] Current Drupal environment: local\u001b[0m\r\n\r\n"] -[133.97147, "o", "\u001b[34m[TASK] Enabling maintenance mode.\u001b[0m\r\n"] -[134.349562, "o", "\u001b[32m[ OK ] Enabled maintenance mode. (1s)\u001b[0m\r\n\r\n"] -[134.351186, "o", "\u001b[34m[TASK] Running database updates.\u001b[0m\r\n"] -[136.938796, "o", " [success] No pending updates.\r\n"] -[136.956357, "o", "\u001b[32m[ OK ] Completed running database updates. (2s)\u001b[0m\r\n\r\n\u001b[34m[TASK] Clearing cache after database updates.\u001b[0m\r\n"] -[138.530005, "o", " [success] Cache rebuild complete.\r\n"] -[138.538576, "o", "\u001b[32m[ OK ] Cache was cleared. (2s)\u001b[0m\r\n\r\n"] -[138.54013, "o", "\u001b[34m[TASK] Rebuilding cache.\u001b[0m\r\n"] -[140.0523, "o", " [success] Cache rebuild complete.\r\n"] -[140.060681, "o", "\u001b[32m[ OK ] Cache was rebuilt. (1s)\u001b[0m\r\n\r\n"] -[140.062075, "o", "\u001b[34m[TASK] Running deployment hooks.\u001b[0m\r\n"] -[140.561635, "o", " [success] No pending deploy hooks.\r\n"] -[140.572229, "o", "\u001b[32m[ OK ] Completed deployment hooks. (1s)\u001b[0m\r\n\r\n"] -[140.587594, "o", "\u001b[36m[INFO] Sanitizing database.\u001b[0m\r\n"] -[141.028379, "o", " [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserTableCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeCommentsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserFieldsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n"] -[141.029045, "o", " [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeSessionsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\nThe following operations will be performed:\r\n"] -[141.030869, "o", " * Sanitize user passwords.\r\n * Sanitize user emails.\r\n * Preserve user emails and passwords for the specified roles.\r\n * Sanitize text fields associated with users.\r\n\r\n"] -[141.033224, "o", " // Do you want to sanitize the current database?: yes. \r\n\r\n"] -[141.303718, "o", " [success] User passwords sanitized.\r\n [success] User emails sanitized.\r\n"] -[141.345997, "o", "\u001b[32m[ OK ] Sanitized database using drush sql:sanitize.\u001b[0m\r\n"] -[141.60982, "o", "\r\n"] -[141.618062, "o", "\u001b[32m[ OK ] Applied custom sanitization commands from file.\u001b[0m\r\n"] -[141.872934, "o", "\r\n"] -[142.129662, "o", "\r\n"] -[142.137943, "o", "\u001b[32m[ OK ] Reset user 0 username and email.\u001b[0m\r\n\r\n"] -[142.140178, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\".\u001b[0m\r\n\r\n"] -[142.146097, "o", " ==> Started demo modules operations.\r\n"] -[142.481038, "o", " Environment: local\r\n"] -[142.481342, "o", " > Creating the content model.\r\n"] -[142.91629, "o", "0/2 [░░░░░░░░░░░░░░░░░░░░░░░░░░░░]\r\nApplying recipe\r\n"] -[142.923279, "o", "\r\n2/2 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]\r\nApplied Basic page recipe.\r\n\r\n"] -[142.923737, "o", " [OK] Basic page applied successfully \r\n\r\n"] -[142.928041, "o", " < Created the content model.\r\n > Setting site name.\r\n"] -[143.586711, "o", " < Set site name.\r\n > Setting up the administration navigation.\r\n"] -[144.171684, "o", " [notice] Already installed: navigation\r\n"] -[144.53374, "o", " < Set up the administration navigation.\r\n > Installing contrib modules.\r\n"] -[145.071879, "o", "The following module(s) will be installed: coffee, config_split, config_update, media, environment_indicator, navigation_extra_tools, pathauto, redirect, reroute_email, robotstxt, shield, stage_file_proxy, xmlsitemap, token\r\n"] -[145.074508, "o", "\r\n"] -[145.075681, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[148.829677, "o", " [success] Module coffee has been installed. (Permissions - Configure)\r\n"] -[148.832116, "o", " [success] Module config_split has been installed. (Permissions - Configure)\r\n"] -[148.834042, "o", " [success] Module config_update has been installed.\r\n"] -[148.83687, "o", " [success] Module media has been installed. (Permissions - Configure)\r\n"] -[148.839822, "o", " [success] Module environment_indicator has been installed. (Permissions - Configure)\r\n"] -[148.842332, "o", " [success] Module navigation_extra_tools has been installed. (Permissions)\r\n"] -[148.845541, "o", " [success] Module pathauto has been installed. (Permissions - Configure)\r\n"] -[148.848261, "o", " [success] Module redirect has been installed. (Permissions - Configure)\r\n"] -[148.851369, "o", " [success] Module reroute_email has been installed. (Permissions - Configure)\r\n"] -[148.854289, "o", " [success] Module robotstxt has been installed. (Permissions - Configure)\r\n"] -[148.857384, "o", " [success] Module shield has been installed. (Permissions - Configure)\r\n"] -[148.859928, "o", " [success] Module stage_file_proxy has been installed. (Permissions - Configure)\r\n"] -[148.862665, "o", " [success] Module xmlsitemap has been installed. (Permissions - Configure)\r\n"] -[148.864616, "o", " [success] Module token has been installed.\r\n"] -[148.877619, "o", " < Installed contrib modules.\r\n > Installing Redis module.\r\n"] -[151.070963, "o", " [success] Module redis has been installed. (Permissions - Configure)\r\n"] -[151.081323, "o", " < Installed Redis module.\r\n > Installing and configuring ClamAV.\r\n"] -[153.222122, "o", " [success] Module clamav has been installed. (Permissions - Configure)\r\n"] -[153.895793, "o", "\r\n"] -[153.898636, "o", " // Do you want to update mode_daemon_tcpip.hostname key in clamav.settings \r\n // config?: yes. \r\n\r\n"] -[154.050544, "o", " < Installed and configured ClamAV.\r\n > Installing Solr search modules.\r\n"] -[154.624468, "o", "The following module(s) will be installed: search_api, search_api_solr, language\r\n"] -[154.625839, "o", "\r\n"] -[154.628363, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[157.928828, "o", " [success] Module search_api has been installed. (Permissions - Configure)\r\n"] -[157.930832, "o", " [success] Module search_api_solr has been installed.\r\n"] -[157.933331, "o", " [success] Module language has been installed. (Permissions - Configure)\r\n"] -[157.94426, "o", " < Installed Solr search modules.\r\n > Installing custom site modules.\r\n"] -[161.837903, "o", " [success] Module sw_base has been installed.\r\n"] -[162.44337, "o", "The following module(s) will be installed: sw_search, workflows, content_moderation\r\n"] -[162.444578, "o", "\r\n"] -[162.447222, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[165.65448, "o", " [success] Module sw_search has been installed.\r\n"] -[165.658343, "o", " [success] Module workflows has been installed. (Permissions - Configure)\r\n"] -[165.659849, "o", " [success] Module content_moderation has been installed. (Permissions - Configure)\r\n"] -[166.273663, "o", "The following module(s) will be installed: sw_demo, drupal_helpers, testmode\r\n"] -[166.274968, "o", "\r\n"] -[166.277483, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[168.971704, "o", " [success] Module sw_demo has been installed.\r\n"] -[168.974181, "o", " [success] Module drupal_helpers has been installed.\r\n"] -[168.977479, "o", " [success] Module testmode has been installed. (Configure)\r\n"] -[168.989702, "o", " < Installed custom site modules.\r\n > Running deployment hooks.\r\n"] -[170.171257, "o", " ----------- ------------------------ ---------------------------------------- \r\n Module Hook Description \r\n ----------- ------------------------ ---------------------------------------- \r\n sw_base install_active_theme Installs default and custom theme. \r\n @codeCoverageIgnore \r\n sw_demo configure_testmode Configure testmode to filter the pages \r\n view. Registers the 'sw_demo_pages' \r\n view with testmode so that only \r\n content matching the [TEST] prefix \r\n appears during test runs. \r\n @codeCoverageIgnore \r\n sw_demo create_pages_menu_link Create \"Pages\" menu link in the main \r\n navigation. "] -[170.171439, "o", " Demonstrates using the \r\n drupal_helpers module to manage menu \r\n links within deploy hooks. \r\n @codeCoverageIgnore \r\n sw_demo place_counter_block Place counter block in the \"content\" \r\n region. @codeCoverageIgnore \r\n sw_search add_editorial_workflow Attach editorial workflow to the page \r\n content type. Computed base fields \r\n like 'moderation_state' are only \r\n available when a workflow is attached \r\n to the content type. \r\n @codeCoverageIgnore \r\n ----------- ------------------------ ---------------------------------------- \r\n\r\n\r\n"] -[170.173042, "o", " // Do you wish to run the specified pending deploy hooks?: yes. \r\n\r\n"] -[170.640441, "o", "> [notice] Deploy hook started: sw_base_deploy_install_active_theme\r\n"] -[174.872004, "o", "> [notice] Performed: sw_base_deploy_install_active_theme\r\n"] -[174.873121, "o", "> [notice] Deploy hook started: sw_demo_deploy_configure_testmode\r\n"] -[174.876526, "o", "> [notice] Configured testmode to filter the pages view.\r\n> [notice] Performed: sw_demo_deploy_configure_testmode\r\n"] -[174.881214, "o", "> [notice] Deploy hook started: sw_demo_deploy_create_pages_menu_link\r\n"] -[174.928064, "o", "> [notice] Created \"Pages\" menu link in main navigation.\r\n> [notice] Performed: sw_demo_deploy_create_pages_menu_link\r\n"] -[174.929846, "o", "> [notice] Deploy hook started: sw_demo_deploy_place_counter_block\r\n"] -[174.935872, "o", "> [notice] Counter block placed in the \"content\" region.\r\n> [notice] Performed: sw_demo_deploy_place_counter_block\r\n"] -[174.93711, "o", "> [notice] Deploy hook started: sw_search_deploy_add_editorial_workflow\r\n"] -[174.969541, "o", "> [notice] Attached editorial workflow to page content type.\r\n> [notice] Performed: sw_search_deploy_add_editorial_workflow\r\n"] -[175.226677, "o", " [success] Finished performing deploy hooks.\r\n"] -[175.248835, "o", " < Ran deployment hooks.\r\n ==> Finished demo modules operations.\r\n"] -[175.248974, "o", "\r\n"] -[175.250905, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\". (34s)\u001b[0m\r\n\r\n"] -[175.252917, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\".\u001b[0m\r\n\r\n"] -[175.258886, "o", " ==> Started development modules operations.\r\n"] -[175.708532, "o", " Environment: local\r\n"] -[175.709367, "o", " > Installing Single Directory Component development tools.\r\n"] -[179.351648, "o", " [success] Module sdc_devel has been installed.\r\n"] -[179.362186, "o", " < Installed Single Directory Component development tools.\r\n > Installing Devel module.\r\n"] -[183.360036, "o", " [success] Module devel has been installed. (Permissions - Configure)\r\n"] -[183.371554, "o", " < Installed Devel module.\r\n > Installing Testmode module.\r\n"] -[184.115748, "o", " [notice] Already installed: testmode\r\n"] -[184.137477, "o", " < Installed Testmode module.\r\n > Installing Generated content module.\r\n"] -[187.730422, "o", "Started creation of generated content from modules: sw_demo, generated_content.\r\n"] -[187.903321, "o", "Created \"page\" node \"Demo page 1 accusamusanimide\" [ID: 2]\r\n"] -[187.912863, "o", "Created \"page\" node \"Demo page 2 asperioresatquem\" [ID: 3]\r\n"] -[187.922012, "o", "Created \"page\" node \"Demo page 3 debitisdelectuse\" [ID: 4]\r\n"] -[187.931366, "o", "Created \"page\" node \"Demo page 4 inmolestiaeoccae\" [ID: 5]\r\n"] -[187.93934, "o", "Created \"page\" node \"Demo page 5 doloribusiustoof\" [ID: 6]\r\n"] -[187.947779, "o", "Created \"page\" node \"Demo page 6 dolorumevenietli\" [ID: 7]\r\n"] -[187.962679, "o", "Created \"page\" node \"Demo page 7 facereidmaximeni\" [ID: 8]\r\n"] -[187.970339, "o", "Created \"page\" node \"Demo page 8 mollitianonsunta\" [ID: 9]\r\n"] -[187.978191, "o", "Created \"page\" node \"Demo page 9 distinctioharump\" [ID: 10]\r\n"] -[187.98574, "o", "Created \"page\" node \"Demo page 10 idimpeditmaximem\" [ID: 11]\r\n"] -[187.995986, "o", "Created \"page\" node \"Demo page 11 culpadebitisnobi\" [ID: 12]\r\n"] -[188.003667, "o", "Created \"page\" node \"Demo page 12 eosiustooptioqui\" [ID: 13]\r\n"] -[188.011199, "o", "Created \"page\" node \"Demo page 13 etitaqueproviden\" [ID: 14]\r\n"] -[188.01872, "o", "Created \"page\" node \"Demo page 14 animiautculpamai\" [ID: 15]\r\n"] -[188.026007, "o", "Created \"page\" node \"Demo page 15 maioresmolestiae\" [ID: 16]\r\n"] -[188.036101, "o", "Created \"page\" node \"Demo page 16 occaecatiperfere\" [ID: 17]\r\n"] -[188.041863, "o", "Created \"page\" node \"Demo page 17 fugaidimpeditnec\" [ID: 18]\r\n"] -[188.052357, "o", "Created \"page\" node \"Demo page 18 estiustomaximequ\" [ID: 19]\r\n"] -[188.058832, "o", "Created \"page\" node \"Demo page 19 consequaturdeser\" [ID: 20]\r\n"] -[188.066984, "o", "Created \"page\" node \"Demo page 20 doloreseosmaxime\" [ID: 21]\r\n"] -[188.067371, "o", "Created generated content entities \"node\" with bundle \"page\".\r\n"] -[188.091493, "o", "Created all generated content.\r\n"] -[188.091959, "o", "Finished creation of generated content.\r\n"] -[188.291223, "o", " [success] Module generated_content has been installed. (Permissions)\r\n"] -[188.442005, "o", " < Installed Generated content module.\r\n ==> Finished development modules operations.\r\n\r\n"] -[188.443695, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\". (13s)\u001b[0m\r\n\r\n"] -[188.445494, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-30-search-index.sh\".\u001b[0m\r\n\r\n"] -[188.452058, "o", " ==> Started search indexing operations.\r\n"] -[188.877762, "o", " Environment: local\r\n Search indexing skip: 0\r\n\r\n"] -[188.878162, "o", " > Resetting search index tracker.\r\n"] -[189.283034, "o", " [success] Content was successfully scheduled for reindexing.\r\n"] -[189.300848, "o", " < Reset search index tracker.\r\n > Running search indexing.\r\n"] -[189.719318, "o", " [success] Found 21 items to index for Content. Indexing all items.\r\n [success] Indexing a maximum number of 21 items (50 items per batch run) for the index 'Content'.\r\n"] -[190.276284, "o", "> [notice] Successfully indexed 21 items on Content.\r\n"] -[190.287546, "o", "> [notice] Message: Successfully indexed 21 items.\r\n> \r\n"] -[190.325761, "o", " < Completed search indexing.\r\n ==> Finished search indexing operations.\r\n"] -[190.325813, "o", "\r\n"] -[190.327586, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-30-search-index.sh\". (2s)\u001b[0m\r\n\r\n"] -[190.329071, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-40-example.sh\".\u001b[0m\r\n\r\n"] -[190.334844, "o", " ==> Started example operations.\r\n"] -[190.746324, "o", " Environment: local\r\n Running example operations in non-production environment.\r\n > Performing an example operation.\r\n Replace this with your own commands.\r\n < Performed an example operation.\r\n Fresh database detected. Performing additional example operations.\r\n ==> Finished example operations.\r\n\r\n"] -[190.749375, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-40-example.sh\". (0s)\u001b[0m\r\n\r\n"] -[190.754065, "o", "\u001b[34m[TASK] Disabling maintenance mode.\u001b[0m\r\n"] -[191.296903, "o", "\u001b[32m[ OK ] Disabled maintenance mode. (1s)\u001b[0m\r\n\r\n"] -[191.29852, "o", "\u001b[32m[ OK ] Finished site provisioning (1m 2s).\u001b[0m\r\n"] -[191.750631, "o", "\u001b[36m[INFO] Project information:\u001b[0m\r\n\r\n Project name : star_wars\r\n Docker Compose project name : vortex_videos\r\n Site local URL : http://vortex_videos.docker.amazee.io\r\n"] -[191.750983, "o", " Path to web root : /app/web\r\n DB host : database\r\n DB username : drupal\r\n DB password : drupal\r\n"] -[191.75103, "o", " DB port : 3306\r\n DB port on host : 65358 ('ahoy db' to start SequelAce)\r\n"] -[191.751362, "o", " Solr URL on host : http://127.0.0.1:65357\r\n Selenium VNC URL on host : http://localhost:65379/?autoconnect=1&password=secret\r\n Mailhog URL : http://mailhog.docker.amazee.io/\r\n"] -[191.780117, "o", " Xdebug : Disabled ('ahoy debug' to enable)\r\n Site login link : "] -[194.595313, "o", "http://vortex_videos.docker.amazee.io/user/reset/1/1787192699/[REDACTED]/login\r\n"] -[194.61142, "o", "\r\n"] -[194.64361, "x", "0"] +{"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"] diff --git a/.vortex/docs/static/img/build.png b/.vortex/docs/static/img/build.png index 07bf7d207f..d31ad9ab92 100644 Binary files a/.vortex/docs/static/img/build.png and b/.vortex/docs/static/img/build.png differ diff --git a/.vortex/docs/static/img/build.svg b/.vortex/docs/static/img/build.svg index e627ca0427..5966216301 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[phpinternal]loadbuilddefinitionfromphp.dockerfile#2transferringdockerfile:526Bdone#2DONE0.0s#3[nginxinternal]loadbuilddefinitionfromnginx-drupal.dockerfile#3transferringdockerfile:675Bdone#3DONE0.0s#4[solrinternal]loadbuilddefinitionfromsolr.dockerfile#4transferringdockerfile:1.46kBdone#4DONE0.0s#5[cliinternal]loadbuilddefinitionfromcli.dockerfile#5transferringdockerfile:4.18kBdone#7[cliinternal]loadmetadatafordocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#7DONE0.0s#8[clamavinternal]loadbuilddefinitionfromclamav.dockerfile#8transferringdockerfile:1.45kBdone#8DONE0.0s#9[databaseinternal]loadmetadatafordocker.io/uselagoon/mysql-8.4:26.8.0#9DONE0.0s#10[cliinternal]load.dockerignore#10transferringcontext:1.23kBdone#10DONE0.0s#11[database1/3]FROMdocker.io/uselagoon/mysql-8.4:26.8.0#11DONE0.0s#12[databaseinternal]loadbuildcontext#12transferringcontext:564Bdone#12DONE0.0s#13[database2/3]COPY./.docker/config/database/my.cnf/etc/mysql/conf.d/server.cnf#13CACHED#14[database3/3]RUNfix-permissions/etc/mysql/conf.d/#14CACHED#15[database]exportingtoimage#15exportinglayersdone#15writingimagesha256:8a8c78a93a7832368d9390e73639ac1215c4ca4bfa61063d6a74e40f61693a27done#15namingtodocker.io/library/vortex_videos-databasedone#15DONE0.0s#16[database]resolvingprovenanceformetadatafile#16DONE0.0s#17[nginxinternal]loadmetadatafordocker.io/uselagoon/nginx-drupal:26.8.0#17...#18[auth]uselagoon/php-8.4-fpm:pulltokenforregistry-1.docker.io#18DONE0.0s#19[auth]uselagoon/commons:pulltokenforregistry-1.docker.io#19DONE0.0s#20[auth]uselagoon/nginx-drupal:pulltokenforregistry-1.docker.io#20DONE0.0s#21[auth]uselagoon/solr-9-drupal:pulltokenforregistry-1.docker.io#21DONE0.0s#22[auth]clamav/clamav-debian:pulltokenforregistry-1.docker.io#22DONE0.0s#23[phpinternal]loadmetadatafordocker.io/uselagoon/php-8.4-fpm:26.8.0#23...#17DONE1.4s#10[solrinternal]load.dockerignore#24[nginxstage-11/5]FROMdocker.io/uselagoon/nginx-drupal:26.8.0@sha256:56ad1a69dc2c752cdd0061a269dcf0723825911bae380565951d7814c701fecf#24DONE0.0s#23DONE1.5s#25[phpstage-11/3]FROMdocker.io/uselagoon/php-8.4-fpm:26.8.0@sha256:cafd9304ab495d6f102fc5ec27f770a4ef33139a89c64bc94db467ccb23ba411#25DONE0.0s#26[nginxinternal]loadbuildcontext#26transferringcontext:254B0.0sdone#26DONE0.0s#27[phpstage-01/10]FROMdocker.io/uselagoon/php-8.4-cli-drupal:26.8.0#27DONE0.0s#28[clamavinternal]loadmetadatafordocker.io/uselagoon/commons:26.8.0#28DONE1.5s#29[clamavinternal]loadmetadatafordocker.io/clamav/clamav-debian:1.5.4#29DONE1.5s#30[solrinternal]loadmetadatafordocker.io/uselagoon/solr-9-drupal:26.8.0#30DONE1.5s#31[clamavstage-11/7]FROMdocker.io/clamav/clamav-debian:1.5.4@sha256:2bb8cd7dfe3e87f86e969a2c415f7698583175e46dc2234672be9210c982c144#31DONE0.0s#32[clamavcommons1/1]FROMdocker.io/uselagoon/commons:26.8.0@sha256:0af1b1ed0e4b76a035415637d910290f8ecd75fb46a05be8ca8bfec24f2a84e6#32DONE0.0s#33[solr1/3]FROMdocker.io/uselagoon/solr-9-drupal:26.8.0@sha256:de7bb5e9758fe8caf4bc2fb726a9e544e10cfa59c78e319592fed6102f804683#33DONE0.0s#34[clamavinternal]loadbuildcontext#34transferringcontext:285Bdone#34DONE0.0s#35[clamavstage-12/7]COPY--from=commons/lagoon/lagoon#35CACHED#36[clamavstage-14/7]RUNapt-getupdate-qq&&DEBIAN_FRONTEND=noninteractiveapt-getinstall-y--no-install-recommendstzdata&&apt-getclean&&rm-rf/var/lib/apt/lists/*#36CACHED#37[clamavstage-13/7]COPY--from=commons/bin/fix-permissions/bin/ep/bin/docker-sleep/bin/wait-for/bin/#37CACHED#38[clamavstage-16/7]RUNcat/tmp/clamav.conf>>/etc/clamav/clamd.conf&&rm/tmp/clamav.conf&&sed-i"s/^LogFile/#LogFile/g"/etc/clamav/clamd.conf&&sed-i"s/^#LogSyslog/LogSyslog/g"/etc/clamav/clamd.conf&&sed-i"s/^UpdateLogFile/#UpdateLogFile/g"/etc/clamav/freshclam.conf&&sed-i"s/^#LogSyslog/LogSyslog/g"/etc/clamav/freshclam.conf#38CACHED#39[clamavstage-15/7]COPY.docker/config/clamav/clamav.conf/tmp/clamav.conf#39CACHED#40[clamavstage-17/7]RUNfix-permissions/var/lib/clamav#40CACHED#41[nginxinternal]loadbuildcontext#41transferringcontext:2.74MB0.1sdone#41DONE0.1s#42[clamav]exportingtoimage#42exportinglayersdone#42writingimagesha256:7ac7c6ac3f13de064a3cfc25b0cb3c1c735436a8b0d2a2391b82a29e945f7658done#42namingtodocker.io/library/vortex_videos-clamavdone#42DONE0.0s#43[solrinternal]loadbuildcontext#43transferringcontext:1.54MB0.0sdone#43DONE0.0s#44[clamav]resolvingprovenanceformetadatafile#44DONE0.0s#45[solr2/3]COPY.docker/config/solr/config-set/solr-conf/conf/#45CACHED#46[solr3/3]RUNsed-i-e"s#<dataDir>${solr.data.dir:}#<dataDir>/var/solr/${solr.core.name}#g"/solr-conf/conf/solrconfig.xml&&sed-i-e"s#solr.lock.type:native#solr.lock.type:none#g"/solr-conf/conf/solrconfig.xml&&sed-i-e"s#solr.autoSoftCommit.MaxTime=5000#solr.autoSoftCommit.MaxTime=-1#g"/solr-conf/conf/solrcore.properties#46CACHED#47[clistage-02/10]RUNapkadd--no-cachencursespvtzdataautoconfg++make&&peclinstallpcov&&docker-php-ext-enablepcov&&docker-php-ext-installpcntl&&apkdelg++makeautoconf#47CACHED#48[clistage-03/10]COPYpatches/app/patches#48CACHED#49[clistage-04/10]COPYscripts/app/scripts#49CACHED#50[solr]exportingtoimage#50exportinglayersdone#50writingimagesha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660fd05e2d58bcaf0.0sdone#50namingtodocker.io/library/vortex_videos-solrdone#50DONE0.1s#51[phpstage-05/10]COPYcomposer.jsoncomposer.*patches.lock.*.env*auth*/app/#51DONE0.1s#52[solr]resolvingprovenanceformetadatafile#52DONE0.0s#53[phpstage-06/10]RUN--mount=type=secret,id=package_tokentoken=$(if[-s/run/secrets/package_token];thencat/run/secrets/package_token;elseecho"XXXXX";fi)&&if[-n"${token}"];thenexportCOMPOSER_AUTH="{"github-oauth":{"github.com":"${token}"}}";fi&&COMPOSER_MEMORY_LIMIT=-1composerinstall-n--no-dev--ansi--prefer-dist--optimize-autoloader#530.260No composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information. #530.261Loadingcomposerrepositorieswithpackageinformation#5320.48Updatingdependencies#5320.74Lockfileoperations:207installs,0updates,0removals#5320.74-Lockingasm89/stack-cors(v2.4.0)#5320.74-Lockingbehat/behat(v3.32.0)#5320.74-Lockingbehat/gherkin(v4.17.0)#5320.74-Lockingbehat/mink(v1.13.0)#5320.74-Lockingbehat/mink-browserkit-driver(v2.3.0)#5320.74-Lockingchi-teck/drupal-code-generator(4.2.0)#5320.74-Lockingcomposer/installers(v2.3.0)#5320.74-Lockingcomposer/pcre(3.4.0)#5320.74-Lockingcomposer/semver(3.4.4)#5320.74-Lockingcomposer/xdebug-handler(3.0.5)#5320.74-Lockingconsolidation/annotated-command(4.10.5)#5320.74-Lockingconsolidation/config(3.2.1)#5320.74-Lockingconsolidation/filter-via-dot-access-data(2.0.3)#5320.74-Lockingconsolidation/log(3.1.2)#5320.74-Lockingconsolidation/output-formatters(4.7.1)#5320.74-Lockingconsolidation/robo(5.1.1)#5320.74-Lockingconsolidation/site-alias(4.1.3)#5320.74-Lockingconsolidation/site-process(6.1.0)#5320.74-Lockingcucumber/gherkin(v24.1.0)#5320.74-Lockingcucumber/messages(v19.1.4)#5320.74-Lockingcweagans/composer-configurable-plugin(2.0.0)#5320.74-Lockingcweagans/composer-patches(2.0.0)#5320.74-Lockingdantleech/gherkin-lint(0.2.4)#5320.74-Lockingdantleech/invoke(2.0.0)#5320.74-Lockingdealerdirect/phpcodesniffer-composer-installer(v1.2.1)#5320.74-Lockingdflydev/dot-access-data(v3.0.3)#5320.74-Lockingdoctrine/common(3.5.0)#5320.74-Lockingdoctrine/deprecations(1.1.6)#5320.74-Lockingdoctrine/event-manager(2.1.1)#5320.74-Lockingdoctrine/instantiator(2.1.0)#5320.74-Lockingdoctrine/lexer(3.0.1)#5320.74-Lockingdoctrine/persistence(4.2.0)#5320.74-Lockingdrevops/behat-format-progress-fail(1.5.1)#5320.74-Lockingdrevops/behat-screenshot(2.6.0)#5320.74-Lockingdrevops/behat-steps(3.14.1)#5320.74-Lockingdrevops/phpcs-standard(1.0.0)#5320.74-Lockingdrevops/vortex-tooling(1.4.0)#5320.74-Lockingdrupal/clamav(2.1.0)#5320.74-Lockingdrupal/coder(9.0.1)#5320.74-Lockingdrupal/coffee(2.0.1)#5320.74-Lockingdrupal/config_split(2.0.2)#5320.74-Lockingdrupal/config_update(2.0.0-alpha4)#5320.74-Lockingdrupal/core(11.4.5)#5320.74-Lockingdrupal/core-composer-scaffold(11.4.5)#5320.74-Lockingdrupal/core-recommended(11.4.5)#5320.74-Lockingdrupal/ctools(4.1.1)#5320.74-Lockingdrupal/devel(5.5.0)#5320.74-Lockingdrupal/drupal-driver(v3.3.1)#5320.74-Lockingdrupal/drupal-extension(v6.1.0)#5320.74-Lockingdrupal/drupal_helpers(2.1.1)#5320.74-Lockingdrupal/environment_indicator(4.0.25)#5320.74-Lockingdrupal/generated_content(2.1.1)#5320.74-Lockingdrupal/navigation_extra_tools(1.3.2)#5320.74-Lockingdrupal/pathauto(1.15.0)#5320.74-Lockingdrupal/redirect(1.13.0)#5320.74-Lockingdrupal/redis(1.11.0)#5320.74-Lockingdrupal/reroute_email(2.3.0-rc2)#5320.74-Lockingdrupal/robotstxt(1.6.0)#5320.74-Lockingdrupal/sdc_devel(1.0.3)#5320.74-Lockingdrupal/search_api(1.41.0)#5320.74-Lockingdrupal/search_api_solr(4.4.0)#5320.74-Lockingdrupal/seckit(2.0.3)#5320.74-Lockingdrupal/shield(1.8.0)#5320.74-Lockingdrupal/stage_file_proxy(4.0.0)#5320.74-Lockingdrupal/testmode(2.7.2)#5320.74-Lockingdrupal/token(1.17.0)#5320.74-Lockingdrupal/xmlsitemap(2.0.0)#5320.74-Lockingdrush/drush(13.7.6)#5320.74-Lockingegulias/email-validator(4.0.4)#5320.74-Lockingergebnis/composer-normalize(2.52.0)#5320.74-Lockingergebnis/json(1.6.0)#5320.74-Lockingergebnis/json-normalizer(4.10.1)#5320.74-Lockingergebnis/json-pointer(3.8.0)#5320.74-Lockingergebnis/json-printer(3.8.1)#5320.74-Lockingergebnis/json-schema-validator(4.5.1)#5320.74-Lockingfriends-of-behat/mink-extension(v2.7.5)#5320.74-Lockinggrasmash/expander(3.0.1)#5320.74-Lockinggrasmash/yaml-cli(3.2.1)#5320.74-Lockingguzzlehttp/guzzle(7.15.3)#5320.74-Lockingguzzlehttp/promises(2.5.2)#5320.74-Lockingguzzlehttp/psr7(2.13.0)#5320.74-Lockinghalaxa/json-machine(1.2.6)#5320.74-Lockingjustinrainbow/json-schema(6.8.2)#5320.74-Lockinglaminas/laminas-stdlib(3.21.0)#5320.74-Lockinglaravel/prompts(v0.3.23)#5320.74-Lockingleague/container(4.2.5)#5320.74-Lockinglocalheinz/diff(1.3.0)#5320.74-Lockinglullabot/mink-selenium2-driver(v1.7.4)#5320.74-Lockinglullabot/php-webdriver(v2.0.7)#5320.74-Lockingmaennchen/zipstream-php(3.2.2)#5320.74-Lockingmarc-mabe/php-enum(v4.7.2)#5320.74-Lockingmasterminds/html5(2.10.1)#5320.74-Lockingmck89/peast(v1.17.7)#5320.74-Lockingmglaman/phpstan-drupal(2.1.2)#5320.74-Lockingmikey179/vfsstream(v1.6.12)#5320.74-Lockingmyclabs/deep-copy(1.14.0)#5320.74-Lockingnikic/php-parser(v5.8.0)#5320.74-Lockingpalantirnet/drupal-rector(1.1.2)#5320.74-Lockingpear/archive_tar(1.6.1)#5320.74-Lockingpear/console_getopt(v1.4.3)#5320.74-Lockingpear/pear-core-minimal(v1.10.18)#5320.74-Lockingpear/pear_exception(v1.0.2)#5320.74-Lockingphar-io/manifest(2.0.4)#5320.74-Lockingphar-io/version(3.2.1)#5320.74-Lockingphootwork/collection(v3.2.3)#5320.74-Lockingphootwork/lang(v3.2.3)#5320.74-Lockingphp-tuf/composer-stager(v2.1.1)#5320.74-Lockingphpcompatibility/php-compatibility(10.0.0-alpha2)#5320.74-Lockingphpcsstandards/phpcsutils(1.2.3)#5320.74-Lockingphpdocumentor/reflection-common(2.2.0)#5320.74-Lockingphpdocumentor/reflection-docblock(6.0.3)#5320.74-Lockingphpdocumentor/type-resolver(2.0.0)#5320.74-Lockingphpowermove/docblock(v4.0)#5320.74-Lockingphpspec/prophecy(v1.26.1)#5320.74-Lockingphpspec/prophecy-phpunit(v2.5.0)#5320.74-Lockingphpstan/extension-installer(1.4.3)#5320.74-Lockingphpstan/phpdoc-parser(2.3.3)#5320.74-Lockingphpstan/phpstan(2.2.8)#5320.74-Lockingphpstan/phpstan-deprecation-rules(2.0.5)#5320.74-Lockingphpunit/php-code-coverage(11.0.12)#5320.74-Lockingphpunit/php-file-iterator(5.1.1)#5320.74-Lockingphpunit/php-invoker(5.0.1)#5320.74-Lockingphpunit/php-text-template(4.0.1)#5320.74-Lockingphpunit/php-timer(7.0.1)#5320.74-Lockingphpunit/phpunit(11.5.56)#5320.74-Lockingpsr/cache(3.0.0)#5320.74-Lockingpsr/container(2.0.2)#5320.74-Lockingpsr/event-dispatcher(1.0.0)#5320.74-Lockingpsr/http-client(1.0.3)#5320.74-Lockingpsr/http-factory(1.1.0)#5320.74-Lockingpsr/http-message(2.0)#5320.74-Lockingpsr/log(3.0.2)#5320.74-Lockingpsy/psysh(v0.12.24)#5320.74-Lockingpyrech/composer-changelogs(v2.2.0)#5320.74-Lockingralouphie/getallheaders(3.0.3)#5320.74-Lockingrector/rector(2.6.3)#5320.74-Lockingrevolt/event-loop(v1.0.9)#5320.74-Lockingsebastian/cli-parser(3.0.2)#5320.74-Lockingsebastian/code-unit(3.0.3)#5320.74-Lockingsebastian/code-unit-reverse-lookup(4.0.1)#5320.74-Lockingsebastian/comparator(6.3.3)#5320.74-Lockingsebastian/complexity(4.0.1)#5320.74-Lockingsebastian/diff(6.0.2)#5320.74-Lockingsebastian/environment(7.2.1)#5320.74-Lockingsebastian/exporter(6.3.2)#5320.74-Lockingsebastian/global-state(7.0.2)#5320.74-Lockingsebastian/lines-of-code(3.0.1)#5320.74-Lockingsebastian/object-enumerator(6.0.1)#5320.74-Lockingsebastian/object-reflector(4.0.1)#5320.74-Lockingsebastian/recursion-context(6.0.3)#5320.74-Lockingsebastian/type(5.1.3)#5320.74-Lockingsebastian/version(5.0.2)#5320.74-Lockingsirbrillig/phpcs-variable-analysis(v2.13.0)#5320.74-Lockingslevomat/coding-standard(8.31.1)#5320.74-Lockingsoftcreatr/jsonpath(0.10.0)#5320.74-Lockingsolarium/solarium(7.0.0)#5320.74-Lockingsquizlabs/php_codesniffer(4.0.4)#5320.74-Lockingstaabm/side-effects-detector(1.0.5)#5320.74-Lockingsymfony/browser-kit(v8.1.1)#5320.74-Lockingsymfony/config(v7.4.16)#5320.74-Lockingsymfony/console(v7.4.16)#5320.74-Lockingsymfony/css-selector(v7.4.9)#5320.74-Lockingsymfony/dependency-injection(v7.4.16)#5320.74-Lockingsymfony/deprecation-contracts(v3.7.1)#5320.74-Lockingsymfony/dom-crawler(v7.4.12)#5320.74-Lockingsymfony/error-handler(v7.4.15)#5320.74-Lockingsymfony/event-dispatcher(v7.4.15)#5320.74-Lockingsymfony/event-dispatcher-contracts(v3.7.1)#5320.74-Lockingsymfony/filesystem(v7.4.15)#5320.74-Lockingsymfony/finder(v7.4.14)#5320.74-Lockingsymfony/http-client(v7.4.16)#5320.74-Lockingsymfony/http-client-contracts(v3.7.1)#5320.74-Lockingsymfony/http-foundation(v7.4.16)#5320.74-Lockingsymfony/http-kernel(v7.4.16)#5320.74-Lockingsymfony/mailer(v7.4.15)#5320.74-Lockingsymfony/mime(v7.4.16)#5320.74-Lockingsymfony/polyfill-ctype(v1.37.0)#5320.74-Lockingsymfony/polyfill-iconv(v1.37.0)#5320.74-Lockingsymfony/polyfill-intl-grapheme(v1.41.0)#5320.74-Lockingsymfony/polyfill-intl-idn(v1.38.1)#5320.74-Lockingsymfony/polyfill-intl-normalizer(v1.38.0)#5320.74-Lockingsymfony/polyfill-mbstring(v1.38.2)#5320.74-Lockingsymfony/polyfill-php80(v1.37.0)#5320.74-Lockingsymfony/polyfill-php81(v1.38.1)#5320.74-Lockingsymfony/polyfill-php83(v1.41.0)#5320.74-Lockingsymfony/polyfill-php84(v1.38.1)#5320.74-Lockingsymfony/polyfill-php85(v1.41.0)#5320.74-Lockingsymfony/polyfill-php86(v1.41.0)#5320.74-Lockingsymfony/process(v7.4.13)#5320.74-Lockingsymfony/psr-http-message-bridge(v7.4.8)#5320.74-Lockingsymfony/routing(v7.4.15)#5320.74-Lockingsymfony/runtime(v7.4.14)#5320.74-Lockingsymfony/serializer(v7.4.16)#5320.74-Lockingsymfony/service-contracts(v3.7.1)#5320.74-Lockingsymfony/string(v7.4.15)#5320.74-Lockingsymfony/translation(v7.4.16)#5320.74-Lockingsymfony/translation-contracts(v3.7.1)#5320.74-Lockingsymfony/validator(v7.4.16)#5320.74-Lockingsymfony/var-dumper(v7.4.15)#5320.74-Lockingsymfony/var-exporter(v7.4.16)#5320.74-Lockingsymfony/yaml(v7.4.15)#5320.74-Lockingtheseer/tokenizer(1.3.1)#5320.74-Lockingtwig/html-extra(v3.28.0)#5320.74-Lockingtwig/twig(v3.28.0)#5320.74-Lockingvincentlanglet/twig-cs-fixer(4.0.2)#5320.74-Lockingwebflo/drupal-finder(1.3.1)#5320.74-Lockingwebmozart/assert(2.4.1)#5320.75Writinglockfile#5320.75Installingdependenciesfromlockfile#5320.75Packageoperations:124installs,0updates,0removals#5320.75-Downloadingcweagans/composer-configurable-plugin(2.0.0)#5321.48-Installingcweagans/composer-configurable-plugin(2.0.0):Extractingarchive#5321.50-Downloadingcweagans/composer-patches(2.0.0)#5322.09-Installingcweagans/composer-patches(2.0.0):Extractingarchive#5322.10-Downloadingcomposer/installers(v2.3.0)#5322.10-Downloadingsymfony/runtime(v7.4.14)#5322.10-Downloadingdrupal/core-composer-scaffold(11.4.5)#5322.10-Downloadingsymfony/polyfill-iconv(v1.37.0)#5322.10-Downloadingsymfony/polyfill-mbstring(v1.38.2)#5322.10-Downloadingsymfony/polyfill-intl-normalizer(v1.38.0)#5322.10-Downloadingsymfony/polyfill-intl-grapheme(v1.41.0)#5322.10-Downloadingsymfony/polyfill-ctype(v1.37.0)#5322.10-Downloadingsymfony/deprecation-contracts(v3.7.1)#5322.10-Downloadingsymfony/string(v7.4.15)#5322.10-Downloadingpsr/container(2.0.2)#5322.10-Downloadingsymfony/service-contracts(v3.7.1)#5322.10-Downloadingsymfony/console(v7.4.16)#5322.10-Downloadingpsr/log(3.0.2)#5322.10-Downloadingconsolidation/log(3.1.2)#5322.10-Downloadingpsr/cache(3.0.0)#5322.10-Downloadingdoctrine/event-manager(2.1.1)#5322.10-Downloadingdoctrine/deprecations(1.1.6)#5322.10-Downloadingdoctrine/persistence(4.2.0)#5322.10-Downloadingdrevops/vortex-tooling(1.4.0)#5322.10-Downloadingtwig/twig(v3.28.0)#5322.10-Downloadingsymfony/polyfill-intl-idn(v1.38.1)#5322.10-Downloadingsymfony/mime(v7.4.16)#5322.10-Downloadingtwig/html-extra(v3.28.0)#5322.10-Downloadingsymfony/yaml(v7.4.15)#5322.10-Downloadingsymfony/translation-contracts(v3.7.1)#5322.10-Downloadingsymfony/polyfill-php83(v1.41.0)#5322.10-Downloadingsymfony/validator(v7.4.16)#5322.10-Downloadingsymfony/polyfill-php84(v1.38.1)#5322.10-Downloadingsymfony/serializer(v7.4.16)#5322.10-Downloadingsymfony/routing(v7.4.15)#5322.11-Downloadingsymfony/http-foundation(v7.4.16)#5322.11-Downloadingpsr/http-message(2.0)#5322.11-Downloadingsymfony/psr-http-message-bridge(v7.4.8)#5322.11-Downloadingsymfony/process(v7.4.13)#5322.11-Downloadingsymfony/polyfill-php86(v1.41.0)#5322.11-Downloadingsymfony/polyfill-php85(v1.41.0)#5322.11-Downloadingpsr/event-dispatcher(1.0.0)#5322.11-Downloadingsymfony/event-dispatcher-contracts(v3.7.1)#5322.11-Downloadingsymfony/event-dispatcher(v7.4.15)#5322.11-Downloadingdoctrine/lexer(3.0.1)#5322.11-Downloadingegulias/email-validator(4.0.4)#5322.11-Downloadingsymfony/mailer(v7.4.15)#5322.11-Downloadingsymfony/var-dumper(v7.4.15)#5322.11-Downloadingsymfony/error-handler(v7.4.15)#5322.11-Downloadingsymfony/http-kernel(v7.4.16)#5322.11-Downloadingsymfony/finder(v7.4.14)#5322.11-Downloadingsymfony/filesystem(v7.4.15)#5322.11-Downloadingsymfony/var-exporter(v7.4.16)#5322.11-Downloadingsymfony/dependency-injection(v7.4.16)#5322.11-Downloadingsebastian/diff(6.0.2)#5322.11-Downloadingrevolt/event-loop(v1.0.9)#5322.11-Downloadingphp-tuf/composer-stager(v2.1.1)#5322.11-Downloadingpear/pear_exception(v1.0.2)#5322.11-Downloadingpear/console_getopt(v1.4.3)#5322.11-Downloadingpear/pear-core-minimal(v1.10.18)#5322.11-Downloadingpear/archive_tar(1.6.1)#5322.11-Downloadingmck89/peast(v1.17.7)#5322.11-Downloadingmasterminds/html5(2.10.1)#5322.11-Downloadingmarc-mabe/php-enum(v4.7.2)#5322.11-Downloadingjustinrainbow/json-schema(6.8.2)#5322.11-Downloadingsymfony/polyfill-php80(v1.37.0)#5322.11-Downloadingralouphie/getallheaders(3.0.3)#5322.11-Downloadingpsr/http-factory(1.1.0)#5322.11-Downloadingguzzlehttp/psr7(2.13.0)#5322.11-Downloadingpsr/http-client(1.0.3)#5322.11-Downloadingguzzlehttp/promises(2.5.2)#5322.11-Downloadingguzzlehttp/guzzle(7.15.3)#5322.11-Downloadingcomposer/semver(3.4.4)#5322.11-Downloadingasm89/stack-cors(v2.4.0)#5322.11-Downloadingdrupal/core(11.4.5)#5322.11-Downloadingdrupal/clamav(2.1.0)#5322.11-Downloadingdrupal/coffee(2.0.1)#5322.11-Downloadingdrupal/config_split(2.0.2)#5322.11-Downloadingdrupal/config_update(2.0.0-alpha4)#5322.11-Downloadingdoctrine/common(3.5.0)#5322.11-Downloadingdrupal/devel(5.5.0)#5322.11-Downloadingdrupal/drupal_helpers(2.1.1)#5322.11-Downloadingdrupal/environment_indicator(4.0.25)#5322.11-Downloadingdrupal/generated_content(2.1.1)#5322.11-Downloadingdrupal/navigation_extra_tools(1.3.2)#5322.11-Downloadingdrupal/token(1.17.0)#5322.11-Downloadingdrupal/ctools(4.1.1)#5322.11-Downloadingdrupal/pathauto(1.15.0)#5322.11-Downloadingdrupal/redirect(1.13.0)#5322.11-Downloadingdrupal/redis(1.11.0)#5322.11-Downloadingdrupal/reroute_email(2.3.0-rc2)#5322.11-Downloadingdrupal/robotstxt(1.6.0)#5322.11-Downloadingdrupal/sdc_devel(1.0.3)#5322.11-Downloadinghalaxa/json-machine(1.2.6)#5322.11-Downloadingsolarium/solarium(7.0.0)#5322.11-Downloadingmaennchen/zipstream-php(3.2.2)#5322.11-Downloadinglaminas/laminas-stdlib(3.21.0)#5322.11-Downloadingdrupal/search_api(1.41.0)#5322.11-Downloadingdflydev/dot-access-data(v3.0.3)#5322.11-Downloadingconsolidation/output-formatters(4.7.1)#5322.11-Downloadingconsolidation/annotated-command(4.10.5)#5322.11-Downloadingdrupal/search_api_solr(4.4.0)#5322.11-Downloadingdrupal/seckit(2.0.3)#5322.12-Downloadingdrupal/shield(1.8.0)#5322.12-Downloadingdrupal/stage_file_proxy(4.0.0)#5322.12-Downloadingdrupal/testmode(2.7.2)#5322.12-Downloadingdrupal/xmlsitemap(2.0.0)#5322.12-Downloadingnikic/php-parser(v5.8.0)#5322.12-Downloadingpsy/psysh(v0.12.24)#5322.12-Downloadingleague/container(4.2.5)#5322.12-Downloadinglaravel/prompts(v0.3.23)#5322.12-Downloadinggrasmash/yaml-cli(3.2.1)#5322.12-Downloadinggrasmash/expander(3.0.1)#5322.12-Downloadingconsolidation/config(3.2.1)#5322.12-Downloadingconsolidation/site-alias(4.1.3)#5322.12-Downloadingconsolidation/site-process(6.1.0)#5322.12-Downloadingsymfony/polyfill-php81(v1.38.1)#5322.12-Downloadingphootwork/lang(v3.2.3)#5322.12-Downloadingphootwork/collection(v3.2.3)#5322.12-Downloadingphpowermove/docblock(v4.0)#5322.12-Downloadingconsolidation/robo(5.1.1)#5322.12-Downloadingconsolidation/filter-via-dot-access-data(2.0.3)#5322.12-Downloadingchi-teck/drupal-code-generator(4.2.0)#5322.12-Downloadingdrush/drush(13.7.6)#5322.12-Downloadingwebflo/drupal-finder(1.3.1)102/121[=======================>----]84%patches.lock.json does not exist. Creating a new patches.lock.json.#5328.01-Resolvingpatchesfromdependencies.#5328.01-Installingcomposer/installers(v2.3.0):Extractingarchive#5328.02-Installingsymfony/runtime(v7.4.14):Extractingarchive#5328.03-Installingdrupal/core-composer-scaffold(11.4.5):Extractingarchive#5328.03-Installingsymfony/polyfill-iconv(v1.37.0):Extractingarchive#5328.03-Installingsymfony/polyfill-mbstring(v1.38.2):Extractingarchive#5328.03-Installingsymfony/polyfill-intl-normalizer(v1.38.0):Extractingarchive#5328.04-Installingsymfony/polyfill-intl-grapheme(v1.41.0):Extractingarchive#5328.04-Installingsymfony/polyfill-ctype(v1.37.0):Extractingarchive#5328.04-Installingsymfony/deprecation-contracts(v3.7.1):Extractingarch#5328.04-Installingsymfony/string(v7.4.15):Extractingarchive#5328.04-Installingpsr/container(2.0.2):Extractingarchive#5328.04-Installingsymfony/service-contracts(v3.7.1):Extractingarchive#5328.04-Installingsymfony/console(v7.4.16):Extractingarchive#5328.04-Installingpsr/log(3.0.2):Extractingarchive#5328.04-Installingconsolidation/log(3.1.2):Extractingarchive#5328.04-Installingpsr/cache(3.0.0):Extractingarchive#5328.04-Installingdoctrine/event-manager(2.1.1):Extractingarchive#5328.04-Installingdoctrine/deprecations(1.1.6):Extractingarchive#5328.04-Installingdoctrine/persistence(4.2.0):Extractingarchive#5328.04-Installingdrevops/vortex-tooling(1.4.0):Extractingarchive#5328.05-Installingtwig/twig(v3.28.0):Extractingarchive#5328.05-Installingsymfony/polyfill-intl-idn(v1.38.1):Extractingarchive#5328.05-Installingsymfony/mime(v7.4.16):Extractingarchive#5328.05-Installingtwig/html-extra(v3.28.0):Extractingarchive#5328.05-Installingsymfony/yaml(v7.4.15):Extractingarchive#5328.05-Installingsymfony/translation-contracts(v3.7.1):Extractingarch#5328.05-Installingsymfony/polyfill-php83(v1.41.0):Extractingarchive#5328.05-Installingsymfony/validator(v7.4.16):Extractingarchive#5328.05-Installingsymfony/polyfill-php84(v1.38.1):Extractingarchive#5328.05-Installingsymfony/serializer(v7.4.16):Extractingarchive#5328.05-Installingsymfony/routing(v7.4.15):Extractingarchive#5328.05-Installingsymfony/http-foundation(v7.4.16):Extractingarchive#5328.05-Installingpsr/http-message(2.0):Extractingarchive#5328.05-Installingsymfony/psr-http-message-bridge(v7.4.8):Extractingar#5328.05-Installingsymfony/process(v7.4.13):Extractingarchive#5328.05-Installingsymfony/polyfill-php86(v1.41.0):Extractingarchive#5328.05-Installingsymfony/polyfill-php85(v1.41.0):Extractingarchive#5328.05-Installingpsr/event-dispatcher(1.0.0):Extractingarchive#5328.05-Installingsymfony/event-dispatcher-contracts(v3.7.1):Extractingarchive#5328.05-Installingsymfony/event-dispatcher(v7.4.15):Extractingarchive#5328.05-Installingdoctrine/lexer(3.0.1):Extractingarchive#5328.05-Installingegulias/email-validator(4.0.4):Extractingarchive#5328.05-Installingsymfony/mailer(v7.4.15):Extractingarchive#5328.05-Installingsymfony/var-dumper(v7.4.15):Extractingarchive#5328.05-Installingsymfony/error-handler(v7.4.15):Extractingarchive#5328.05-Installingsymfony/http-kernel(v7.4.16):Extractingarchive#5328.05-Installingsymfony/finder(v7.4.14):Extractingarchive#5328.05-Installingsymfony/filesystem(v7.4.15):Extractingarchive#5328.05-Installingsymfony/var-exporter(v7.4.16):Extractingarchive#5328.05-Installingsymfony/dependency-injection(v7.4.16):Extractingarch#5328.05-Installingsebastian/diff(6.0.2):Extractingarchive#5328.05-Installingrevolt/event-loop(v1.0.9):Extractingarchive#5328.05-Installingphp-tuf/composer-stager(v2.1.1):Extractingarchive#5328.05-Installingpear/pear_exception(v1.0.2):Extractingarchive#5328.05-Installingpear/console_getopt(v1.4.3):Extractingarchive#5328.05-Installingpear/pear-core-minimal(v1.10.18):Extractingarchive#5328.05-Installingpear/archive_tar(1.6.1):Extractingarchive#5328.05-Installingmck89/peast(v1.17.7):Extractingarchive#5328.05-Installingmasterminds/html5(2.10.1):Extractingarchive#5328.05-Installingmarc-mabe/php-enum(v4.7.2):Extractingarchive#5328.05-Installingjustinrainbow/json-schema(6.8.2):Extractingarchive#5328.05-Installingsymfony/polyfill-php80(v1.37.0):Extractingarchive#5328.05-Installingralouphie/getallheaders(3.0.3):Extractingarchive#5328.05-Installingpsr/http-factory(1.1.0):Extractingarchive#5328.06-Installingguzzlehttp/psr7(2.13.0):Extractingarchive#5328.06-Installingpsr/http-client(1.0.3):Extractingarchive#5328.06-Installingguzzlehttp/promises(2.5.2):Extractingarchive#5328.06-Installingguzzlehttp/guzzle(7.15.3):Extractingarchive#5328.06-Installingcomposer/semver(3.4.4):Extractingarchive#5328.06-Installingasm89/stack-cors(v2.4.0):Extractingarchive#5328.06-Installingdrupal/core(11.4.5):Extractingarchive#5328.06-Installingdrupal/clamav(2.1.0):Extractingarchive#5328.06-Installingdrupal/coffee(2.0.1):Extractingarchive#5328.06-Installingdrupal/config_split(2.0.2):Extractingarchive#5328.06-Installingdrupal/config_update(2.0.0-alpha4):Extractingarchive#5328.06-Installingdrupal/core-recommended(11.4.5)#5328.06-Installingdoctrine/common(3.5.0):Extractingarchive#5328.06-Installingdrupal/devel(5.5.0):Extractingarchive#5328.06-Installingdrupal/drupal_helpers(2.1.1):Extractingarchive#5328.06-Installingdrupal/environment_indicator(4.0.25):Extractingarchive#5328.06-Installingdrupal/generated_content(2.1.1):Extractingarchive#5328.06-Installingdrupal/navigation_extra_tools(1.3.2):Extractingarchi#5328.06-Installingdrupal/token(1.17.0):Extractingarchive#5328.06-Installingdrupal/ctools(4.1.1):Extractingarchive#5328.06-Installingdrupal/pathauto(1.15.0):Extractingarchive#5328.06-Installingdrupal/redirect(1.13.0):Extractingarchive#5328.06-Installingdrupal/redis(1.11.0):Extractingarchive#5328.06-Installingdrupal/reroute_email(2.3.0-rc2):Extractingarchive#5328.06-Installingdrupal/robotstxt(1.6.0):Extractingarchive#5328.06-Installingdrupal/sdc_devel(1.0.3):Extractingarchive#5328.06-Installinghalaxa/json-machine(1.2.6):Extractingarchive#5328.06-Installingsolarium/solarium(7.0.0):Extractingarchive#5328.06-Installingmaennchen/zipstream-php(3.2.2):Extractingarchive#5328.06-Installinglaminas/laminas-stdlib(3.21.0):Extractingarchive#5328.06-Installingdrupal/search_api(1.41.0):Extractingarchive#5328.07-Installingdflydev/dot-access-data(v3.0.3):Extractingarchive#5328.07-Installingconsolidation/output-formatters(4.7.1):Extractingarchive#5328.07-Installingconsolidation/annotated-command(4.10.5):Extractingar#5328.07-Installingdrupal/search_api_solr(4.4.0):Extractingarchive#5328.07-Installingdrupal/seckit(2.0.3):Extractingarchive#5328.07-Installingdrupal/shield(1.8.0):Extractingarchive#5328.07-Installingdrupal/stage_file_proxy(4.0.0):Extractingarchive#5328.07-Installingdrupal/testmode(2.7.2):Extractingarchive#5328.07-Installingdrupal/xmlsitemap(2.0.0):Extractingarchive#5328.07-Installingnikic/php-parser(v5.8.0):Extractingarchive#5328.07-Installingpsy/psysh(v0.12.24):Extractingarchive#5328.07-Installingleague/container(4.2.5):Extractingarchive#5328.07-Installinglaravel/prompts(v0.3.23):Extractingarchive#5328.07-Installinggrasmash/yaml-cli(3.2.1):Extractingarchive#5328.07-Installinggrasmash/expander(3.0.1):Extractingarchive#5328.07-Installingconsolidation/config(3.2.1):Extractingarchive#5328.07-Installingconsolidation/site-alias(4.1.3):Extractingarchive#5328.07-Installingconsolidation/site-process(6.1.0):Extractingarchive#5328.07-Installingsymfony/polyfill-php81(v1.38.1):Extractingarchive#5328.07-Installingphootwork/lang(v3.2.3):Extractingarchive#5328.07-Installingphootwork/collection(v3.2.3):Extractingarchive#5328.07-Installingphpowermove/docblock(v4.0):Extractingarchive#5328.07-Installingconsolidation/robo(5.1.1):Extractingarchive#5328.07-Installingconsolidation/filter-via-dot-access-data(2.0.3):Extractingarchive#5328.07-Installingchi-teck/drupal-code-generator(4.2.0):Extractingarch#5328.07-Installingdrush/drush(13.7.6):Extractingarchive#5328.07-Installingwebflo/drupal-finder(1.3.1):Extractingarchive34packagesuggestionswereaddedbynewdependencies,use`composersuggest`toseedetails.#5330.26Generatingoptimizedautoloadfiles#5331.1557packagesyouareusingarelookingforfunding.#5331.15Usethe`composerfund`commandtofindoutmore!#5331.15Scaffoldingfilesfordrupal/core:#5331.15-Skip[web-root]/.htaccess:overriddeninstar_wars_org/star_wars#5331.15-Skip[web-root]/README.md:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/index.phpfromassets/scaffold/files/index.php#5331.16-Skip[web-root]/.csslintrc:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/robots.txt:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/update.php:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/INSTALL.txt:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/.eslintignore:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/.eslintrc.json:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/.ht.router.php:overriddeninstar_wars_org/star_w#5331.16-Copy[web-root]/sites/README.txtfromassets/scaffold/files/sites.README.txt#5331.16-Skip[project-root]/.editorconfig:overriddeninstar_wars_org/star_wars#5331.16-Skip[web-root]/example.gitignore:overriddeninstar_wars_org/sta#5331.16-Copy[web-root]/themes/README.txtfromassets/scaffold/files/themes.README.txt#5331.16-Skip[project-root]/.gitattributes:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/modules/README.txtfromassets/scaffold/files/modules.README.txt#5331.16-Copy[web-root]/profiles/README.txtfromassets/scaffold/files/profiles.README.txt#5331.16-Copy[project-root]/recipes/README.txtfromassets/scaffold/files/recipes.README.txt#5331.16-Skip[web-root]/sites/example.sites.php:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/sites/development.services.ymlfromassets/scaffold/files/development.services.yml#5331.16-Skip[web-root]/sites/example.settings.local.php:overriddeninstar_wars_org/star_wars#5331.16-Copy[web-root]/sites/default/default.services.ymlfromassets/scaffold/files/default.services.yml#5331.16-Copy[web-root]/sites/default/default.settings.phpfromassets/scaffold/files/default.settings.php#53DONE31.5s#54[nginxstage-07/10]COPY./app#54DONE0.1s#55[phpstage-08/10]RUNmkdir-p-m2775"/app/web/sites/default/files""/app/web/sites/default/files/private""/tmp"#55DONE0.2s#56[clistage-09/10]RUNif["0"!="1"];thentheme_path="/app/web/themes/custom/star_wars";npm--prefix="${theme_path}"ci--no-progress--no-audit--no-fund&&npm--prefix="${theme_path}"runbuild&&npmcacheclean--force;fi#561.432npmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupported#561.756npmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.#561.821npmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.me#562.110npmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinstead#562.119npmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainstead#562.357npmwarndeprecatedrimraf@2.7.1:Rimrafversionspriortov4arenol#563.071npmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.#563.654#563.654>star_wars@1.0.0postinstall#563.654>patch-package#563.738patch-package6.5.1#563.738Applyingpatches...#563.739Nopatchfilesfound#563.753#563.753added475packagesin3s#563.866#563.866>star_wars@1.0.0build#563.866>npmrunclean&&mkdir-pbuild/js&&npmrunconcat&&npmrunuglify&&npmrunsass:prod&&npmrunpostcss:prod&&npmruncopy#563.954#563.954>star_wars@1.0.0clean#563.954>rm-rfbuild#564.049#564.049>star_wars@1.0.0concat#564.049>findjs-name'*.js'!-name'*.min.js'-execcat{}+>build/js/star_wars.min.js#564.143#564.143>star_wars@1.0.0uglify#564.143>terserbuild/js/star_wars.min.js-obuild/js/star_wars.min.js-cdrop_console=true-mreserved=['jQuery','Drupal']2>/dev/null||true#564.322#564.322>star_wars@1.0.0sass:prod#564.322>sassscss/styles.scssbuild/css/star_wars.min.css--no-source-map--style=compressed#564.621#564.621>star_wars@1.0.0postcss:prod#564.621>postcssbuild/css/star_wars.min.css-obuild/css/star_wars.min.css--no-map#564.903#564.903>star_wars@1.0.0copy#564.903>npmruncopy:images&&npmruncopy:fonts#564.991#564.991>star_wars@1.0.0copy:images#564.991>mkdir-pbuild/images&&cp-rimages/*build/images/2>/dev/null||true#565.079#565.079>star_wars@1.0.0copy:fonts#565.079>mkdir-pbuild/fonts&&cp-rfonts/*build/fonts/2>/dev/null||true#565.157npmwarnusing--forceRecommendedprotectionsdisabled.#56DONE5.5s#57[phpstage-010/10]WORKDIR/app#57DONE0.0s#58[cli]exportingtoimage#58exportinglayers#58exportinglayers2.0sdone#58writingimagesha256:e5bc1226bb03f6bd5d7c9faa49347169fd2c080cf00e7e6b6bbe3703f4e3557cdone#58namingtodocker.io/library/vortex_videosdone#58DONE2.0s#59[nginxstage-12/5]RUNapkadd--no-cachetzdata#59CACHED#60[nginxstage-13/5]COPY./.docker/config/nginx/redirects-map.conf/etc/nginx/redirects-map.conf#60CACHED#61[nginxstage-14/5]RUNfix-permissions/etc/nginx#61CACHED#62[phpstage-12/3]RUNapkadd--no-cachetzdata#62CACHED#63[cli]resolvingprovenanceformetadatafile#63DONE0.0s#64[phpstage-13/3]COPY--from=cli/app/app#64DONE3.0s#65[nginxstage-15/5]COPY--from=cli/app/app#65DONE3.0s#66[nginx]exportingtoimage#66exportinglayers2.2sdone#66writingimagesha256:c30ce198ed9988c1a91e2d3e84c92e42e76aa6bb515b2e4ac48eb88de5a38625done#66namingtodocker.io/library/vortex_videos-nginxdone#66DONE2.3s#67[php]exportingtoimage#67exportinglayers2.2sdone#67writingimagesha256:5bcfc19ac83ecf7f42168b526a175fd876eb85b3f22800120b02e63c0a41d0cbdone#67namingtodocker.io/library/vortex_videos-phpdone#67DONE2.3s#68[php]resolvingprovenanceformetadatafile#68DONE0.0s#69[nginx]resolvingprovenanceformetadatafile#69DONE0.0s[+]up8/12Imagevortex_videosBuilt46.8sImagevortex_videos-phpBuilt46.8sImagevortex_videos-nginxBuilt46.8sImagevortex_videos-databaseBuilt46.8sImagevortex_videos-solrBuilt46.8sImagevortex_videos-clamavBuilt46.8sNetworkvortex_videos_defaultCreated0.0sVolumevortex_videos_solrCreated0.0sContainervortex_videos-clamav-1Creating0.1sContainervortex_videos-redis-1Creating0.1sContainervortex_videos-solr-1Creating0.1sContainervortex_videos-database-1Creating0.1s[+]up10/12Containervortex_videos-clamav-1Created0.1sContainervortex_videos-redis-1Created0.1sContainervortex_videos-solr-1Creating0.2sContainervortex_videos-database-1Creating0.2s[+]up12/13Imagevortex_videosBuilt46.8sImagevortex_videos-phpBuilt46.8sImagevortex_videos-nginxBuilt46.8sImagevortex_videos-databaseBuilt46.8sImagevortex_videos-solrBuilt46.8sImagevortex_videos-clamavBuilt46.8sNetworkvortex_videos_defaultCreated0.0sVolumevortex_videos_solrCreated0.0sContainervortex_videos-clamav-1Created0.1sContainervortex_videos-redis-1Created0.1sContainervortex_videos-solr-1Created0.2sContainervortex_videos-database-1Created0.2sContainervortex_videos-wait-for-dependencies-1Creating0.0s[+]up13/14Containervortex_videos-wait-for-dependencies-1Created0.1sContainervortex_videos-cli-1Creating0.0s[+]up14/17Containervortex_videos-cli-1Created0.1sContainervortex_videos-php-1Creating0.0sContainervortex_videos-nginx-1Creating0.0sContainervortex_videos-chrome-1Creating0.0s[+]up15/17Containervortex_videos-php-1Created0.1sContainervortex_videos-nginx-1Creating0.1sContainervortex_videos-chrome-1Creating0.1s[+]up13/17Containervortex_videos-clamav-1Starting0.7sContainervortex_videos-redis-1Starting0.7sContainervortex_videos-solr-1Starting0.7sContainervortex_videos-database-1Starting0.7sContainervortex_videos-nginx-1Created0.1sContainervortex_videos-chrome-1Created0.1sContainervortex_videos-clamav-1Starting0.8sContainervortex_videos-redis-1Starting0.8sContainervortex_videos-solr-1Starting0.8sContainervortex_videos-database-1Starting0.8sContainervortex_videos-clamav-1Starting0.9sContainervortex_videos-redis-1Starting0.9sContainervortex_videos-solr-1Starting0.9sContainervortex_videos-database-1Starting0.9s[+]up16/17Containervortex_videos-clamav-1Started0.9sContainervortex_videos-redis-1Starting1.0sContainervortex_videos-solr-1Started0.9sContainervortex_videos-database-1Started0.9sContainervortex_videos-redis-1Starting1.1sContainervortex_videos-redis-1Started1.2sContainervortex_videos-wait-for-dependencies-1Starting0.9sContainervortex_videos-wait-for-dependencies-1Starting1.0sContainervortex_videos-wait-for-dependencies-1Starting1.1sContainervortex_videos-wait-for-dependencies-1Starting1.2sContainervortex_videos-wait-for-dependencies-1Waiting1.3sContainervortex_videos-wait-for-dependencies-1Waiting1.4sContainervortex_videos-wait-for-dependencies-1Waiting1.5sContainervortex_videos-wait-for-dependencies-1Waiting1.6sContainervortex_videos-wait-for-dependencies-1Waiting1.7sContainervortex_videos-wait-for-dependencies-1Waiting1.8sContainervortex_videos-wait-for-dependencies-1Waiting1.9sContainervortex_videos-wait-for-dependencies-1Waiting2.0sContainervortex_videos-wait-for-dependencies-1Waiting2.1sContainervortex_videos-wait-for-dependencies-1Waiting2.2sContainervortex_videos-wait-for-dependencies-1Waiting2.3sContainervortex_videos-wait-for-dependencies-1Waiting2.4sContainervortex_videos-wait-for-dependencies-1Waiting2.5sContainervortex_videos-wait-for-dependencies-1Waiting2.6sContainervortex_videos-wait-for-dependencies-1Waiting2.7sContainervortex_videos-wait-for-dependencies-1Waiting2.8sContainervortex_videos-wait-for-dependencies-1Waiting2.9sContainervortex_videos-wait-for-dependencies-1Waiting3.0sContainervortex_videos-wait-for-dependencies-1Waiting3.1sContainervortex_videos-wait-for-dependencies-1Waiting3.2sContainervortex_videos-wait-for-dependencies-1Waiting3.3sContainervortex_videos-wait-for-dependencies-1Waiting3.4sContainervortex_videos-wait-for-dependencies-1Waiting3.5sContainervortex_videos-wait-for-dependencies-1Waiting3.6sContainervortex_videos-wait-for-dependencies-1Waiting3.7sContainervortex_videos-wait-for-dependencies-1Waiting3.8sContainervortex_videos-wait-for-dependencies-1Waiting3.9sContainervortex_videos-wait-for-dependencies-1Waiting4.0sContainervortex_videos-wait-for-dependencies-1Waiting4.1sContainervortex_videos-wait-for-dependencies-1Waiting4.2sContainervortex_videos-wait-for-dependencies-1Waiting4.3sContainervortex_videos-wait-for-dependencies-1Waiting4.4sContainervortex_videos-wait-for-dependencies-1Waiting4.5sContainervortex_videos-wait-for-dependencies-1Waiting4.6sContainervortex_videos-wait-for-dependencies-1Waiting4.7sContainervortex_videos-wait-for-dependencies-1Waiting4.8sContainervortex_videos-wait-for-dependencies-1Waiting4.9sContainervortex_videos-wait-for-dependencies-1Waiting5.0sContainervortex_videos-wait-for-dependencies-1Waiting5.1sContainervortex_videos-wait-for-dependencies-1Waiting5.2sContainervortex_videos-wait-for-dependencies-1Waiting5.3sContainervortex_videos-wait-for-dependencies-1Waiting5.4sContainervortex_videos-wait-for-dependencies-1Waiting5.5sContainervortex_videos-wait-for-dependencies-1Waiting5.6sContainervortex_videos-wait-for-dependencies-1Waiting5.7sContainervortex_videos-wait-for-dependencies-1Waiting5.8sContainervortex_videos-wait-for-dependencies-1Waiting5.9sContainervortex_videos-wait-for-dependencies-1Waiting6.0sContainervortex_videos-wait-for-dependencies-1Waiting6.1sContainervortex_videos-wait-for-dependencies-1Waiting6.2sContainervortex_videos-wait-for-dependencies-1Waiting6.3sContainervortex_videos-wait-for-dependencies-1Waiting6.4sContainervortex_videos-wait-for-dependencies-1Waiting6.5sContainervortex_videos-wait-for-dependencies-1Waiting6.6sContainervortex_videos-wait-for-dependencies-1Waiting6.7sContainervortex_videos-wait-for-dependencies-1Waiting6.8sContainervortex_videos-wait-for-dependencies-1Waiting6.9sContainervortex_videos-wait-for-dependencies-1Waiting7.0sContainervortex_videos-wait-for-dependencies-1Waiting7.1sContainervortex_videos-wait-for-dependencies-1Waiting7.2sContainervortex_videos-wait-for-dependencies-1Waiting7.3sContainervortex_videos-wait-for-dependencies-1Waiting7.4sContainervortex_videos-wait-for-dependencies-1Waiting7.5sContainervortex_videos-wait-for-dependencies-1Waiting7.6sContainervortex_videos-wait-for-dependencies-1Waiting7.7sContainervortex_videos-wait-for-dependencies-1Waiting7.8sContainervortex_videos-wait-for-dependencies-1Waiting7.9sContainervortex_videos-wait-for-dependencies-1Waiting8.0sContainervortex_videos-wait-for-dependencies-1Waiting8.1sContainervortex_videos-wait-for-dependencies-1Waiting8.2sContainervortex_videos-wait-for-dependencies-1Waiting8.3sContainervortex_videos-wait-for-dependencies-1Waiting8.4sContainervortex_videos-wait-for-dependencies-1Waiting8.5sContainervortex_videos-wait-for-dependencies-1Waiting8.6sContainervortex_videos-wait-for-dependencies-1Waiting8.7sContainervortex_videos-wait-for-dependencies-1Waiting8.8sContainervortex_videos-wait-for-dependencies-1Waiting8.9sContainervortex_videos-wait-for-dependencies-1Waiting9.0sContainervortex_videos-wait-for-dependencies-1Waiting9.1sContainervortex_videos-wait-for-dependencies-1Waiting9.2sContainervortex_videos-wait-for-dependencies-1Waiting9.3sContainervortex_videos-wait-for-dependencies-1Waiting9.4sContainervortex_videos-wait-for-dependencies-1Waiting9.5sContainervortex_videos-wait-for-dependencies-1Waiting9.6sContainervortex_videos-wait-for-dependencies-1Waiting9.7sContainervortex_videos-wait-for-dependencies-1Waiting9.8sContainervortex_videos-wait-for-dependencies-1Waiting9.9sContainervortex_videos-wait-for-dependencies-1Waiting10.0sContainervortex_videos-wait-for-dependencies-1Waiting10.1sContainervortex_videos-wait-for-dependencies-1Waiting10.2sContainervortex_videos-wait-for-dependencies-1Waiting10.3sContainervortex_videos-wait-for-dependencies-1Waiting10.4sContainervortex_videos-wait-for-dependencies-1Waiting10.5sContainervortex_videos-wait-for-dependencies-1Waiting10.6sContainervortex_videos-wait-for-dependencies-1Waiting10.7sContainervortex_videos-wait-for-dependencies-1Waiting10.8sContainervortex_videos-wait-for-dependencies-1Waiting10.9sContainervortex_videos-wait-for-dependencies-1Waiting11.0sContainervortex_videos-wait-for-dependencies-1Waiting11.1sContainervortex_videos-wait-for-dependencies-1Waiting11.2sContainervortex_videos-wait-for-dependencies-1Waiting11.3sContainervortex_videos-wait-for-dependencies-1Waiting11.4sContainervortex_videos-wait-for-dependencies-1Waiting11.5sContainervortex_videos-wait-for-dependencies-1Waiting11.6sContainervortex_videos-wait-for-dependencies-1Waiting11.7sContainervortex_videos-wait-for-dependencies-1Exited11.8sContainervortex_videos-cli-1Starting11.7sContainervortex_videos-cli-1Starting11.8sContainervortex_videos-cli-1Starting11.9sContainervortex_videos-cli-1Started12.0sContainervortex_videos-php-1Starting11.9sContainervortex_videos-nginx-1Starting11.9sContainervortex_videos-chrome-1Starting11.9sContainervortex_videos-php-1Starting12.0sContainervortex_videos-nginx-1Starting12.0sContainervortex_videos-chrome-1Starting12.0sContainervortex_videos-php-1Starting12.1sContainervortex_videos-nginx-1Starting12.1sContainervortex_videos-chrome-1Starting12.1sContainervortex_videos-php-1Started12.1sContainervortex_videos-nginx-1Starting12.2sContainervortex_videos-chrome-1Starting12.2sContainervortex_videos-nginx-1Starting12.3sContainervortex_videos-chrome-1Started12.3s[+]up17/17Containervortex_videos-nginx-1Started12.4sNo composer.lock file present. Updating dependencies to latest instead of installing from lock file. See https://getcomposer.org/install for more information. LoadingcomposerrepositorieswithpackageinformationUpdatingdependenciesLockfileoperations:207installs,0updates,0removals-Lockingasm89/stack-cors(v2.4.0)-Lockingbehat/behat(v3.32.0)-Lockingbehat/gherkin(v4.17.0)-Lockingbehat/mink(v1.13.0)-Lockingbehat/mink-browserkit-driver(v2.3.0)-Lockingchi-teck/drupal-code-generator(4.2.0)-Lockingcomposer/installers(v2.3.0)-Lockingcomposer/pcre(3.4.0)-Lockingcomposer/semver(3.4.4)-Lockingcomposer/xdebug-handler(3.0.5)-Lockingconsolidation/annotated-command(4.10.5)-Lockingconsolidation/config(3.2.1)-Lockingconsolidation/filter-via-dot-access-data(2.0.3)-Lockingconsolidation/log(3.1.2)-Lockingconsolidation/output-formatters(4.7.1)-Lockingconsolidation/robo(5.1.1)-Lockingconsolidation/site-alias(4.1.3)-Lockingconsolidation/site-process(6.1.0)-Lockingcucumber/gherkin(v24.1.0)-Lockingcucumber/messages(v19.1.4)-Lockingcweagans/composer-configurable-plugin(2.0.0)-Lockingcweagans/composer-patches(2.0.0)-Lockingdantleech/gherkin-lint(0.2.4)-Lockingdantleech/invoke(2.0.0)-Lockingdealerdirect/phpcodesniffer-composer-installer(v1.2.1)-Lockingdflydev/dot-access-data(v3.0.3)-Lockingdoctrine/common(3.5.0)-Lockingdoctrine/deprecations(1.1.6)-Lockingdoctrine/event-manager(2.1.1)-Lockingdoctrine/instantiator(2.1.0)-Lockingdoctrine/lexer(3.0.1)-Lockingdoctrine/persistence(4.2.0)-Lockingdrevops/behat-format-progress-fail(1.5.1)-Lockingdrevops/behat-screenshot(2.6.0)-Lockingdrevops/behat-steps(3.14.1)-Lockingdrevops/phpcs-standard(1.0.0)-Lockingdrevops/vortex-tooling(1.4.0)-Lockingdrupal/clamav(2.1.0)-Lockingdrupal/coder(9.0.1)-Lockingdrupal/coffee(2.0.1)-Lockingdrupal/config_split(2.0.2)-Lockingdrupal/config_update(2.0.0-alpha4)-Lockingdrupal/core(11.4.5)-Lockingdrupal/core-composer-scaffold(11.4.5)-Lockingdrupal/core-recommended(11.4.5)-Lockingdrupal/ctools(4.1.1)-Lockingdrupal/devel(5.5.0)-Lockingdrupal/drupal-driver(v3.3.1)-Lockingdrupal/drupal-extension(v6.1.0)-Lockingdrupal/drupal_helpers(2.1.1)-Lockingdrupal/environment_indicator(4.0.25)-Lockingdrupal/generated_content(2.1.1)-Lockingdrupal/navigation_extra_tools(1.3.2)-Lockingdrupal/pathauto(1.15.0)-Lockingdrupal/redirect(1.13.0)-Lockingdrupal/redis(1.11.0)-Lockingdrupal/reroute_email(2.3.0-rc2)-Lockingdrupal/robotstxt(1.6.0)-Lockingdrupal/sdc_devel(1.0.3)-Lockingdrupal/search_api(1.41.0)-Lockingdrupal/search_api_solr(4.4.0)-Lockingdrupal/seckit(2.0.3)-Lockingdrupal/shield(1.8.0)-Lockingdrupal/stage_file_proxy(4.0.0)-Lockingdrupal/testmode(2.7.2)-Lockingdrupal/token(1.17.0)-Lockingdrupal/xmlsitemap(2.0.0)-Lockingdrush/drush(13.7.6)-Lockingegulias/email-validator(4.0.4)-Lockingergebnis/composer-normalize(2.52.0)-Lockingergebnis/json(1.6.0)-Lockingergebnis/json-normalizer(4.10.1)-Lockingergebnis/json-pointer(3.8.0)-Lockingergebnis/json-printer(3.8.1)-Lockingergebnis/json-schema-validator(4.5.1)-Lockingfriends-of-behat/mink-extension(v2.7.5)-Lockinggrasmash/expander(3.0.1)-Lockinggrasmash/yaml-cli(3.2.1)-Lockingguzzlehttp/guzzle(7.15.3)-Lockingguzzlehttp/promises(2.5.2)-Lockingguzzlehttp/psr7(2.13.0)-Lockinghalaxa/json-machine(1.2.6)-Lockingjustinrainbow/json-schema(6.8.2)-Lockinglaminas/laminas-stdlib(3.21.0)-Lockinglaravel/prompts(v0.3.23)-Lockingleague/container(4.2.5)-Lockinglocalheinz/diff(1.3.0)-Lockinglullabot/mink-selenium2-driver(v1.7.4)-Lockinglullabot/php-webdriver(v2.0.7)-Lockingmaennchen/zipstream-php(3.2.2)-Lockingmarc-mabe/php-enum(v4.7.2)-Lockingmasterminds/html5(2.10.1)-Lockingmck89/peast(v1.17.7)-Lockingmglaman/phpstan-drupal(2.1.2)-Lockingmikey179/vfsstream(v1.6.12)-Lockingmyclabs/deep-copy(1.14.0)-Lockingnikic/php-parser(v5.8.0)-Lockingpalantirnet/drupal-rector(1.1.2)-Lockingpear/archive_tar(1.6.1)-Lockingpear/console_getopt(v1.4.3)-Lockingpear/pear-core-minimal(v1.10.18)-Lockingpear/pear_exception(v1.0.2)-Lockingphar-io/manifest(2.0.4)-Lockingphar-io/version(3.2.1)-Lockingphootwork/collection(v3.2.3)-Lockingphootwork/lang(v3.2.3)-Lockingphp-tuf/composer-stager(v2.1.1)-Lockingphpcompatibility/php-compatibility(10.0.0-alpha2)-Lockingphpcsstandards/phpcsutils(1.2.3)-Lockingphpdocumentor/reflection-common(2.2.0)-Lockingphpdocumentor/reflection-docblock(6.0.3)-Lockingphpdocumentor/type-resolver(2.0.0)-Lockingphpowermove/docblock(v4.0)-Lockingphpspec/prophecy(v1.26.1)-Lockingphpspec/prophecy-phpunit(v2.5.0)-Lockingphpstan/extension-installer(1.4.3)-Lockingphpstan/phpdoc-parser(2.3.3)-Lockingphpstan/phpstan(2.2.8)-Lockingphpstan/phpstan-deprecation-rules(2.0.5)-Lockingphpunit/php-code-coverage(11.0.12)-Lockingphpunit/php-file-iterator(5.1.1)-Lockingphpunit/php-invoker(5.0.1)-Lockingphpunit/php-text-template(4.0.1)-Lockingphpunit/php-timer(7.0.1)-Lockingphpunit/phpunit(11.5.56)-Lockingpsr/cache(3.0.0)-Lockingpsr/container(2.0.2)-Lockingpsr/event-dispatcher(1.0.0)-Lockingpsr/http-client(1.0.3)-Lockingpsr/http-factory(1.1.0)-Lockingpsr/http-message(2.0)-Lockingpsr/log(3.0.2)-Lockingpsy/psysh(v0.12.24)-Lockingpyrech/composer-changelogs(v2.2.0)-Lockingralouphie/getallheaders(3.0.3)-Lockingrector/rector(2.6.3)-Lockingrevolt/event-loop(v1.0.9)-Lockingsebastian/cli-parser(3.0.2)-Lockingsebastian/code-unit(3.0.3)-Lockingsebastian/code-unit-reverse-lookup(4.0.1)-Lockingsebastian/comparator(6.3.3)-Lockingsebastian/complexity(4.0.1)-Lockingsebastian/diff(6.0.2)-Lockingsebastian/environment(7.2.1)-Lockingsebastian/exporter(6.3.2)-Lockingsebastian/global-state(7.0.2)-Lockingsebastian/lines-of-code(3.0.1)-Lockingsebastian/object-enumerator(6.0.1)-Lockingsebastian/object-reflector(4.0.1)-Lockingsebastian/recursion-context(6.0.3)-Lockingsebastian/type(5.1.3)-Lockingsebastian/version(5.0.2)-Lockingsirbrillig/phpcs-variable-analysis(v2.13.0)-Lockingslevomat/coding-standard(8.31.1)-Lockingsoftcreatr/jsonpath(0.10.0)-Lockingsolarium/solarium(7.0.0)-Lockingsquizlabs/php_codesniffer(4.0.4)-Lockingstaabm/side-effects-detector(1.0.5)-Lockingsymfony/browser-kit(v8.1.1)-Lockingsymfony/config(v7.4.16)-Lockingsymfony/console(v7.4.16)-Lockingsymfony/css-selector(v7.4.9)-Lockingsymfony/dependency-injection(v7.4.16)-Lockingsymfony/deprecation-contracts(v3.7.1)-Lockingsymfony/dom-crawler(v7.4.12)-Lockingsymfony/error-handler(v7.4.15)-Lockingsymfony/event-dispatcher(v7.4.15)-Lockingsymfony/event-dispatcher-contracts(v3.7.1)-Lockingsymfony/filesystem(v7.4.15)-Lockingsymfony/finder(v7.4.14)-Lockingsymfony/http-client(v7.4.16)-Lockingsymfony/http-client-contracts(v3.7.1)-Lockingsymfony/http-foundation(v7.4.16)-Lockingsymfony/http-kernel(v7.4.16)-Lockingsymfony/mailer(v7.4.15)-Lockingsymfony/mime(v7.4.16)-Lockingsymfony/polyfill-ctype(v1.37.0)-Lockingsymfony/polyfill-iconv(v1.37.0)-Lockingsymfony/polyfill-intl-grapheme(v1.41.0)-Lockingsymfony/polyfill-intl-idn(v1.38.1)-Lockingsymfony/polyfill-intl-normalizer(v1.38.0)-Lockingsymfony/polyfill-mbstring(v1.38.2)-Lockingsymfony/polyfill-php80(v1.37.0)-Lockingsymfony/polyfill-php81(v1.38.1)-Lockingsymfony/polyfill-php83(v1.41.0)-Lockingsymfony/polyfill-php84(v1.38.1)-Lockingsymfony/polyfill-php85(v1.41.0)-Lockingsymfony/polyfill-php86(v1.41.0)-Lockingsymfony/process(v7.4.13)-Lockingsymfony/psr-http-message-bridge(v7.4.8)-Lockingsymfony/routing(v7.4.15)-Lockingsymfony/runtime(v7.4.14)-Lockingsymfony/serializer(v7.4.16)-Lockingsymfony/service-contracts(v3.7.1)-Lockingsymfony/string(v7.4.15)-Lockingsymfony/translation(v7.4.16)-Lockingsymfony/translation-contracts(v3.7.1)-Lockingsymfony/validator(v7.4.16)-Lockingsymfony/var-dumper(v7.4.15)-Lockingsymfony/var-exporter(v7.4.16)-Lockingsymfony/yaml(v7.4.15)-Lockingtheseer/tokenizer(1.3.1)-Lockingtwig/html-extra(v3.28.0)-Lockingtwig/twig(v3.28.0)-Lockingvincentlanglet/twig-cs-fixer(4.0.2)-Lockingwebflo/drupal-finder(1.3.1)-Lockingwebmozart/assert(2.4.1)WritinglockfileInstallingdependenciesfromlockfile(includingrequire-dev)Packageoperations:207installs,0updates,0removals-Installingcweagans/composer-configurable-plugin(2.0.0):Extractingarchive-Installingcweagans/composer-patches(2.0.0):Extractingarchive-Downloadingpyrech/composer-changelogs(v2.2.0)-Downloadingsquizlabs/php_codesniffer(4.0.4)-Downloadingdealerdirect/phpcodesniffer-composer-installer(v1.2.1)-Downloadinglocalheinz/diff(1.3.0)-Downloadingergebnis/json-printer(3.8.1)-Downloadingergebnis/json-pointer(3.8.0)-Downloadingergebnis/json(1.6.0)-Downloadingergebnis/json-schema-validator(4.5.1)-Downloadingergebnis/json-normalizer(4.10.1)-Downloadingergebnis/composer-normalize(2.52.0)-Downloadingphpstan/phpstan(2.2.8)-Downloadingphpstan/extension-installer(1.4.3)-Downloadingcomposer/pcre(3.4.0)-Downloadingcomposer/xdebug-handler(3.0.5)-Downloadingdantleech/invoke(2.0.0)-Downloadingcucumber/messages(v19.1.4)-Downloadingcucumber/gherkin(v24.1.0)-Downloadingdantleech/gherkin-lint(0.2.4)-Downloadingdoctrine/instantiator(2.1.0)-Downloadingsymfony/translation(v7.4.16)-Downloadingsymfony/config(v7.4.16)-Downloadingbehat/gherkin(v4.17.0)-Downloadingbehat/behat(v3.32.0)-Downloadingdrevops/behat-format-progress-fail(1.5.1)-Downloadingsymfony/http-client-contracts(v3.7.1)-Downloadingsymfony/http-client(v7.4.16)-Downloadingsymfony/css-selector(v7.4.9)-Downloadingbehat/mink(v1.13.0)-Downloadingfriends-of-behat/mink-extension(v2.7.5)-Downloadingdrevops/behat-screenshot(2.6.0)-Downloadingdrevops/behat-steps(3.14.1)-Downloadingdrevops/phpcs-standard(1.0.0)-Downloadingphpstan/phpdoc-parser(2.3.3)-Downloadingslevomat/coding-standard(8.31.1)-Downloadingsirbrillig/phpcs-variable-analysis(v2.13.0)-Downloadingdrupal/coder(9.0.1)-Downloadingsymfony/dom-crawler(v7.4.12)-Downloadinglullabot/php-webdriver(v2.0.7)-Downloadinglullabot/mink-selenium2-driver(v1.7.4)-Downloadingdrupal/drupal-driver(v3.3.1)-Downloadingsymfony/browser-kit(v8.1.1)-Downloadingbehat/mink-browserkit-driver(v2.3.0)-Downloadingdrupal/drupal-extension(v6.1.0)-Downloadingphpstan/phpstan-deprecation-rules(2.0.5)-Downloadingmglaman/phpstan-drupal(2.1.2)-Downloadingmikey179/vfsstream(v1.6.12)-Downloadingrector/rector(2.6.3)-Downloadingpalantirnet/drupal-rector(1.1.2)-Downloadingphpcsstandards/phpcsutils(1.2.3)-Downloadingphpcompatibility/php-compatibility(10.0.0-alpha2)-Downloadingwebmozart/assert(2.4.1)-Downloadingphpdocumentor/reflection-common(2.2.0)-Downloadingphpdocumentor/type-resolver(2.0.0)-Downloadingphpdocumentor/reflection-docblock(6.0.3)-Downloadingstaabm/side-effects-detector(1.0.5)-Downloadingsebastian/version(5.0.2)-Downloadingsebastian/type(5.1.3)-Downloadingsebastian/recursion-context(6.0.3)-Downloadingsebastian/object-reflector(4.0.1)-Downloadingsebastian/object-enumerator(6.0.1)-Downloadingsebastian/global-state(7.0.2)-Downloadingsebastian/exporter(6.3.2)-Downloadingsebastian/environment(7.2.1)-Downloadingsebastian/comparator(6.3.3)-Downloadingsebastian/code-unit(3.0.3)-Downloadingsebastian/cli-parser(3.0.2)-Downloadingphpunit/php-timer(7.0.1)-Downloadingphpunit/php-text-template(4.0.1)-Downloadingphpunit/php-invoker(5.0.1)-Downloadingphpunit/php-file-iterator(5.1.1)-Downloadingtheseer/tokenizer(1.3.1)-Downloadingsebastian/lines-of-code(3.0.1)-Downloadingsebastian/complexity(4.0.1)-Downloadingsebastian/code-unit-reverse-lookup(4.0.1)-Downloadingphpunit/php-code-coverage(11.0.12)-Downloadingphar-io/version(3.2.1)-Downloadingphar-io/manifest(2.0.4)-Downloadingmyclabs/deep-copy(1.14.0)-Downloadingphpunit/phpunit(11.5.56)-Downloadingphpspec/prophecy(v1.26.1)-Downloadingphpspec/prophecy-phpunit(v2.5.0)-Downloadingsoftcreatr/jsonpath(0.10.0)-Downloadingvincentlanglet/twig-cs-fixer(4.0.2)-Resolvingpatchesfromdependencies.-Installingcomposer/installers(v2.3.0):Extractingarchive-Installingsymfony/runtime(v7.4.14):Extractingarchive-Installingdrupal/core-composer-scaffold(11.4.5):Extractingarchive-Installingpyrech/composer-changelogs(v2.2.0):Extractingarchive-Installingsquizlabs/php_codesniffer(4.0.4):Extractingarchive-Installingdealerdirect/phpcodesniffer-composer-installer(v1.2.1):Extracti-Installingmarc-mabe/php-enum(v4.7.2):Extractingarchive-Installingjustinrainbow/json-schema(6.8.2):Extractingarchive-Installinglocalheinz/diff(1.3.0):Extractingarchive-Installingergebnis/json-printer(3.8.1):Extractingarchive-Installingergebnis/json-pointer(3.8.0):Extractingarchive-Installingergebnis/json(1.6.0):Extractingarchive-Installingergebnis/json-schema-validator(4.5.1):Extractingarchive-Installingergebnis/json-normalizer(4.10.1):Extractingarchive-Installingergebnis/composer-normalize(2.52.0):Extractingarchive-Installingphpstan/phpstan(2.2.8):Extractingarchive-Installingphpstan/extension-installer(1.4.3):Extractingarchive-Installingpsr/log(3.0.2):Extractingarchive-Installingcomposer/pcre(3.4.0):Extractingarchive-Installingcomposer/xdebug-handler(3.0.5):Extractingarchive-Installingsymfony/polyfill-iconv(v1.37.0):Extractingarchive-Installingsymfony/polyfill-mbstring(v1.38.2):Extractingarchive-Installingsymfony/polyfill-intl-normalizer(v1.38.0):Extractingarchive-Installingsymfony/polyfill-intl-grapheme(v1.41.0):Extractingarchive-Installingsymfony/polyfill-ctype(v1.37.0):Extractingarchive-Installingsymfony/deprecation-contracts(v3.7.1):Extractingarchive-Installingsymfony/string(v7.4.15):Extractingarchive-Installingpsr/container(2.0.2):Extractingarchive-Installingsymfony/service-contracts(v3.7.1):Extractingarchive-Installingsymfony/console(v7.4.16):Extractingarchive-Installingconsolidation/log(3.1.2):Extractingarchive-Installingsymfony/finder(v7.4.14):Extractingarchive-Installingsymfony/filesystem(v7.4.15):Extractingarchive-Installingdantleech/invoke(2.0.0):Extractingarchive-Installingcucumber/messages(v19.1.4):Extractingarchive-Installingcucumber/gherkin(v24.1.0):Extractingarchive-Installingdantleech/gherkin-lint(0.2.4):Extractingarchive-Installingdoctrine/instantiator(2.1.0):Extractingarchive-Installingpsr/cache(3.0.0):Extractingarchive-Installingdoctrine/event-manager(2.1.1):Extractingarchive-Installingdoctrine/deprecations(1.1.6):Extractingarchive-Installingdoctrine/persistence(4.2.0):Extractingarchive-Installingsymfony/yaml(v7.4.15):Extractingarchive-Installingsymfony/translation-contracts(v3.7.1):Extractingarchive-Installingsymfony/translation(v7.4.16):Extractingarchive-Installingpsr/event-dispatcher(1.0.0):Extractingarchive-Installingsymfony/event-dispatcher-contracts(v3.7.1):Extractingarchive-Installingsymfony/event-dispatcher(v7.4.15):Extractingarchive-Installingsymfony/var-exporter(v7.4.16):Extractingarchive-Installingsymfony/dependency-injection(v7.4.16):Extractingarchive-Installingsymfony/config(v7.4.16):Extractingarchive-Installingnikic/php-parser(v5.8.0):Extractingarchive-Installingbehat/gherkin(v4.17.0):Extractingarchive-Installingbehat/behat(v3.32.0):Extractingarchive-Installingdrevops/behat-format-progress-fail(1.5.1):Extractingarchive-Installingsymfony/polyfill-php83(v1.41.0):Extractingarchive-Installingsymfony/http-client-contracts(v3.7.1):Extractingarchive-Installingsymfony/http-client(v7.4.16):Extractingarchive-Installingsymfony/css-selector(v7.4.9):Extractingarchive-Installingbehat/mink(v1.13.0):Extractingarchive-Installingfriends-of-behat/mink-extension(v2.7.5):Extractingarchive-Installingdrevops/behat-screenshot(2.6.0):Extractingarchive-Installingdrevops/behat-steps(3.14.1):Extractingarchive-Installingdrevops/phpcs-standard(1.0.0):Extractingarchive-Installingdrevops/vortex-tooling(1.4.0):Extractingarchive-Installingtwig/twig(v3.28.0):Extractingarchive-Installingsymfony/polyfill-intl-idn(v1.38.1):Extractingarchive-Installingsymfony/mime(v7.4.16):Extractingarchive-Installingtwig/html-extra(v3.28.0):Extractingarchive-Installingsymfony/validator(v7.4.16):Extractingarchive-Installingsymfony/polyfill-php84(v1.38.1):Extractingarchive-Installingsymfony/serializer(v7.4.16):Extractingarchive-Installingsymfony/routing(v7.4.15):Extractingarchive-Installingsymfony/http-foundation(v7.4.16):Extractingarchive-Installingpsr/http-message(2.0):Extractingarchive-Installingsymfony/psr-http-message-bridge(v7.4.8):Extractingarchive-Installingsymfony/process(v7.4.13):Extractingarchive-Installingsymfony/polyfill-php86(v1.41.0):Extractingarchive-Installingsymfony/polyfill-php85(v1.41.0):Extractingarchive-Installingdoctrine/lexer(3.0.1):Extractingarchive-Installingegulias/email-validator(4.0.4):Extractingarchive-Installingsymfony/mailer(v7.4.15):Extractingarchive-Installingsymfony/var-dumper(v7.4.15):Extractingarchive-Installingsymfony/error-handler(v7.4.15):Extractingarchive-Installingsymfony/http-kernel(v7.4.16):Extractingarchive-Installingsebastian/diff(6.0.2):Extractingarchive-Installingrevolt/event-loop(v1.0.9):Extractingarchive-Installingphp-tuf/composer-stager(v2.1.1):Extractingarchive-Installingpear/pear_exception(v1.0.2):Extractingarchive-Installingpear/console_getopt(v1.4.3):Extractingarchive-Installingpear/pear-core-minimal(v1.10.18):Extractingarchive-Installingpear/archive_tar(1.6.1):Extractingarchive-Installingmck89/peast(v1.17.7):Extractingarchive-Installingmasterminds/html5(2.10.1):Extractingarchive-Installingsymfony/polyfill-php80(v1.37.0):Extractingarchive-Installingralouphie/getallheaders(3.0.3):Extractingarchive-Installingpsr/http-factory(1.1.0):Extractingarchive-Installingguzzlehttp/psr7(2.13.0):Extractingarchive-Installingpsr/http-client(1.0.3):Extractingarchive-Installingguzzlehttp/promises(2.5.2):Extractingarchive-Installingguzzlehttp/guzzle(7.15.3):Extractingarchive-Installingcomposer/semver(3.4.4):Extractingarchive-Installingasm89/stack-cors(v2.4.0):Extractingarchive-Installingdrupal/core(11.4.5):Extractingarchive-Installingdrupal/clamav(2.1.0):Extractingarchive-Installingphpstan/phpdoc-parser(2.3.3):Extractingarchive-Installingslevomat/coding-standard(8.31.1):Extractingarchive-Installingsirbrillig/phpcs-variable-analysis(v2.13.0):Extractingarchive-Installingdrupal/coder(9.0.1):Extractingarchive-Installingdrupal/coffee(2.0.1):Extractingarchive-Installingdrupal/config_split(2.0.2):Extractingarchive-Installingdrupal/config_update(2.0.0-alpha4):Extractingarchive-Installingdrupal/core-recommended(11.4.5)-Installingdoctrine/common(3.5.0):Extractingarchive-Installingdrupal/devel(5.5.0):Extractingarchive-Installingwebflo/drupal-finder(1.3.1):Extractingarchive-Installingsymfony/dom-crawler(v7.4.12):Extractingarchive-Installinglullabot/php-webdriver(v2.0.7):Extractingarchive-Installinglullabot/mink-selenium2-driver(v1.7.4):Extractingarchive-Installingdrupal/drupal-driver(v3.3.1):Extractingarchive-Installingsymfony/browser-kit(v8.1.1):Extractingarchive-Installingbehat/mink-browserkit-driver(v2.3.0):Extractingarchive-Installingdrupal/drupal-extension(v6.1.0):Extractingarchive-Installingdrupal/drupal_helpers(2.1.1):Extractingarchive-Installingdrupal/environment_indicator(4.0.25):Extractingarchive-Installingdrupal/generated_content(2.1.1):Extractingarchive-Installingdrupal/navigation_extra_tools(1.3.2):Extractingarchive-Installingdrupal/token(1.17.0):Extractingarchive-Installingdrupal/ctools(4.1.1):Extractingarchive-Installingdrupal/pathauto(1.15.0):Extractingarchive-Installingdrupal/redirect(1.13.0):Extractingarchive-Installingdrupal/redis(1.11.0):Extractingarchive-Installingdrupal/reroute_email(2.3.0-rc2):Extractingarchive-Installingdrupal/robotstxt(1.6.0):Extractingarchive-Installingdrupal/sdc_devel(1.0.3):Extractingarchive-Installinghalaxa/json-machine(1.2.6):Extractingarchive-Installingsolarium/solarium(7.0.0):Extractingarchive-Installingmaennchen/zipstream-php(3.2.2):Extractingarchive-Installinglaminas/laminas-stdlib(3.21.0):Extractingarchive-Installingdrupal/search_api(1.41.0):Extractingarchive-Installingdflydev/dot-access-data(v3.0.3):Extractingarchive-Installingconsolidation/output-formatters(4.7.1):Extractingarchive-Installingconsolidation/annotated-command(4.10.5):Extractingarchive-Installingdrupal/search_api_solr(4.4.0):Extractingarchive-Installingdrupal/seckit(2.0.3):Extractingarchive-Installingdrupal/shield(1.8.0):Extractingarchive-Installingdrupal/stage_file_proxy(4.0.0):Extractingarchive-Installingdrupal/testmode(2.7.2):Extractingarchive-Installingdrupal/xmlsitemap(2.0.0):Extractingarchive-Installingpsy/psysh(v0.12.24):Extractingarchive-Installingleague/container(4.2.5):Extractingarchive-Installinglaravel/prompts(v0.3.23):Extractingarchive-Installinggrasmash/yaml-cli(3.2.1):Extractingarchive-Installinggrasmash/expander(3.0.1):Extractingarchive-Installingconsolidation/config(3.2.1):Extractingarchive-Installingconsolidation/site-alias(4.1.3):Extractingarchive-Installingconsolidation/site-process(6.1.0):Extractingarchive-Installingsymfony/polyfill-php81(v1.38.1):Extractingarchive-Installingphootwork/lang(v3.2.3):Extractingarchive-Installingphootwork/collection(v3.2.3):Extractingarchive-Installingphpowermove/docblock(v4.0):Extractingarchive-Installingconsolidation/robo(5.1.1):Extractingarchive-Installingconsolidation/filter-via-dot-access-data(2.0.3):Extractingarch-Installingchi-teck/drupal-code-generator(4.2.0):Extractingarchive-Installingdrush/drush(13.7.6):Extractingarchive-Installingphpstan/phpstan-deprecation-rules(2.0.5):Extractingarchive-Installingmglaman/phpstan-drupal(2.1.2):Extractingarchive-Installingmikey179/vfsstream(v1.6.12):Extractingarchive-Installingrector/rector(2.6.3):Extractingarchive-Installingpalantirnet/drupal-rector(1.1.2):Extractingarchive-Installingphpcsstandards/phpcsutils(1.2.3):Extractingarchive-Installingphpcompatibility/php-compatibility(10.0.0-alpha2):Extractingar-Installingwebmozart/assert(2.4.1):Extractingarchive-Installingphpdocumentor/reflection-common(2.2.0):Extractingarchive-Installingphpdocumentor/type-resolver(2.0.0):Extractingarchive-Installingphpdocumentor/reflection-docblock(6.0.3):Extractingarchive-Installingstaabm/side-effects-detector(1.0.5):Extractingarchive-Installingsebastian/version(5.0.2):Extractingarchive-Installingsebastian/type(5.1.3):Extractingarchive-Installingsebastian/recursion-context(6.0.3):Extractingarchive-Installingsebastian/object-reflector(4.0.1):Extractingarchive-Installingsebastian/object-enumerator(6.0.1):Extractingarchive-Installingsebastian/global-state(7.0.2):Extractingarchive-Installingsebastian/exporter(6.3.2):Extractingarchive-Installingsebastian/environment(7.2.1):Extractingarchive-Installingsebastian/comparator(6.3.3):Extractingarchive-Installingsebastian/code-unit(3.0.3):Extractingarchive-Installingsebastian/cli-parser(3.0.2):Extractingarchive-Installingphpunit/php-timer(7.0.1):Extractingarchive-Installingphpunit/php-text-template(4.0.1):Extractingarchive-Installingphpunit/php-invoker(5.0.1):Extractingarchive-Installingphpunit/php-file-iterator(5.1.1):Extractingarchive-Installingtheseer/tokenizer(1.3.1):Extractingarchive-Installingsebastian/lines-of-code(3.0.1):Extractingarchive-Installingsebastian/complexity(4.0.1):Extractingarchive-Installingsebastian/code-unit-reverse-lookup(4.0.1):Extractingarchive-Installingphpunit/php-code-coverage(11.0.12):Extractingarchive-Installingphar-io/version(3.2.1):Extractingarchive-Installingphar-io/manifest(2.0.4):Extractingarchive-Installingmyclabs/deep-copy(1.14.0):Extractingarchive-Installingphpunit/phpunit(11.5.56):Extractingarchive-Installingphpspec/prophecy(v1.26.1):Extractingarchive-Installingphpspec/prophecy-phpunit(v2.5.0):Extractingarchive-Installingsoftcreatr/jsonpath(0.10.0):Extractingarchive-Installingvincentlanglet/twig-cs-fixer(4.0.2):Extractingarchive25/187[===>------------------------]13%27packagesuggestionswereaddedbynewdependencies,use`composersuggest`toGeneratingautoloadfiles110packagesyouareusingarelookingforfunding.Usethe`composerfund`commandtofindoutmore!Scaffoldingfilesfordrupal/core:-Skip[web-root]/.htaccess:overriddeninstar_wars_org/star_wars-Skip[web-root]/README.md:overriddeninstar_wars_org/star_wars-Skip[web-root]/.csslintrc:overriddeninstar_wars_org/star_wars-Skip[web-root]/robots.txt:overriddeninstar_wars_org/star_wars-Skip[web-root]/update.php:overriddeninstar_wars_org/star_wars-Skip[web-root]/INSTALL.txt:overriddeninstar_wars_org/star_wars-Skip[web-root]/.eslintignore:overriddeninstar_wars_org/star_wars-Skip[web-root]/.eslintrc.json:overriddeninstar_wars_org/star_wars-Skip[web-root]/.ht.router.php:overriddeninstar_wars_org/star_wars-Copy[web-root]/sites/README.txtfromassets/scaffold/files/sites.README.txt-Skip[project-root]/.editorconfig:overriddeninstar_wars_org/star_wars-Skip[web-root]/example.gitignore:overriddeninstar_wars_org/star_wars-Copy[web-root]/themes/README.txtfromassets/scaffold/files/themes.README.txt-Skip[project-root]/.gitattributes:overriddeninstar_wars_org/star_wars-Copy[web-root]/modules/README.txtfromassets/scaffold/files/modules.README.txt-Copy[web-root]/profiles/README.txtfromassets/scaffold/files/profiles.README.txt-Copy[project-root]/recipes/README.txtfromassets/scaffold/files/recipes.README.txt-Skip[web-root]/sites/example.sites.php:overriddeninstar_wars_org/star_wa-Copy[web-root]/sites/development.services.ymlfromassets/scaffold/files/development.services.yml-Skip[web-root]/sites/example.settings.local.php:overriddeninstar_wars_org/star_warsPHPCodeSnifferConfiginstalled_pathssetto../../drevops/phpcs-standard/src,../../drupal/coder/coder_sniffer,../../phpcompatibility/php-compatibility,../../phpcsstandards/phpcsutils,../../sirbrillig/phpcs-variable-analysis,../../slevomat/coding-standardphpstan/extension-installer:Extensionsinstalled>composer/pcre:installed>mglaman/phpstan-drupal:installed>phpstan/phpstan-deprecation-rules:installed-squizlabs/php_codesnifferinstalledinversion4.0.4Releasenotes:https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/tag/4.0.4-dealerdirect/phpcodesniffer-composer-installerinstalledinversionv1.2.1Releasenotes:https://github.com/PHPCSStandards/composer-installer/releases/tag/v1.2.1-marc-mabe/php-enuminstalledinversionv4.7.2Releasenotes:https://github.com/marc-mabe/php-enum/releases/tag/v4.7.2-justinrainbow/json-schemainstalledinversion6.8.2Releasenotes:https://github.com/jsonrainbow/json-schema/releases/tag/6.8.2-localheinz/diffinstalledinversion1.3.0Releasenotes:https://github.com/localheinz/diff/releases/tag/1.3.0-ergebnis/json-pointerinstalledinversion3.8.0Releasenotes:https://github.com/ergebnis/json-pointer/releases/tag/3.8.0-ergebnis/jsoninstalledinversion1.6.0Releasenotes:https://github.com/ergebnis/json/releases/tag/1.6.0-ergebnis/json-schema-validatorinstalledinversion4.5.1Releasenotes:https://github.com/ergebnis/json-schema-validator/releases/tag/4.5.1-ergebnis/json-normalizerinstalledinversion4.10.1Releasenotes:https://github.com/ergebnis/json-normalizer/releases/tag/4.10.1-ergebnis/composer-normalizeinstalledinversion2.52.0Releasenotes:https://github.com/ergebnis/composer-normalize/releases/tag/2.52.0-phpstan/phpstaninstalledinversion2.2.8-psr/loginstalledinversion3.0.2Releasenotes:https://github.com/php-fig/log/releases/tag/3.0.2-composer/pcreinstalledinversion3.4.0Releasenotes:https://github.com/composer/pcre/releases/tag/3.4.0-composer/xdebug-handlerinstalledinversion3.0.5Releasenotes:https://github.com/composer/xdebug-handler/releases/tag/3.0.5-symfony/polyfill-iconvinstalledinversionv1.37.0Releasenotes:https://github.com/symfony/polyfill-iconv/releases/tag/v1.37.0-symfony/polyfill-mbstringinstalledinversionv1.38.2Releasenotes:https://github.com/symfony/polyfill-mbstring/releases/tag/v1.38.2-symfony/polyfill-intl-normalizerinstalledinversionv1.38.0-symfony/polyfill-intl-graphemeinstalledinversionv1.41.0Releasenotes:https://github.com/symfony/polyfill-intl-grapheme/releases/tag/v1.41.0-symfony/polyfill-ctypeinstalledinversionv1.37.0Releasenotes:https://github.com/symfony/polyfill-ctype/releases/tag/v1.37.0-symfony/deprecation-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/symfony/deprecation-contracts/releases/tag/v3.7.1-symfony/stringinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/string/releases/tag/v7.4.15-psr/containerinstalledinversion2.0.2Releasenotes:https://github.com/php-fig/container/releases/tag/2.0.2-symfony/service-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/symfony/service-contracts/releases/tag/v3.7.1-symf-symfony/consoleinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/console/releases/tag/v7.4.16-consolidation/loginstalledinversion3.1.2Releasenotes:https://github.com/consolidation/log/releases/tag/3.1.2-symfony/finderinstalledinversionv7.4.14Releasenotes:https://github.com/symfony/finder/releases/tag/v7.4.14-symfony/filesysteminstalledinversionv7.4.15Releasenotes:https://github.com/symfony/filesystem/releases/tag/v7.4.15-dantleech/invokeinstalledinversion2.0.0Releasenotes:https://github.com/dantleech/invoke/releases/tag/2.0.0-cucumber/messagesinstalledinversionv19.1.4Releasenotes:https://github.com/cucumber/messages-php/releases/tag/v19.1.4-cucumber/gherkininstalledinversionv24.1.0Releasenotes:https://github.com/cucumber/gherkin-php/releases/tag/v24.1.0.4-doctrine/instantiatorinstalledinversion2.1.0Releasenotes:https://github.com/doctrine/instantiator/releases/tag/2.1.0-psr/cacheinstalledinversion3.0.0Releasenotes:https://github.com/php-fig/cache/releases/tag/3.0.0-doctrine/event-managerinstalledinversion2.1.1Releasenotes:https://github.com/doctrine/event-manager/releases/tag/2.1.1-doctrine/deprecationsinstalledinversion1.1.6Releasenotes:https://github.com/doctrine/deprecations/releases/tag/1.1.6-doctrine/persistenceinstalledinversion4.2.0Releasenotes:https://github.com/doctrine/persistence/releases/tag/4.2.0-symfony/yamlinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/translation-contracts/releases/tag/-symfony/translationinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/translation/releases/tag/v7.4.16-psr/event-dispatcherinstalledinversion1.0.0Releasenotes:https://github.com/php-fig/event-dispatcher/releases/tag/1.0.0-symfony/event-dispatcher-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/symfony/event-dispatcher-contracts/releases/tag/v3.7.1-symfony/event-dispatcherinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/event-dispatcher/releases/tag/v7.4.15-symfony/var-exporterinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/var-exporter/releases/tag/v7.4.16-symfony/dependency-injectioninstalledinversionv7.4.16Releasenotes:https://github.com/symfony/dependency-injection/releases/tag/v7.4.16-symfony/configinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/config/releases/tag/v7.4.16-nikic/php-parserinstalledinversionv5.8.0Releasenotes:https://github.com/nikic/PHP-Parser/releases/tag/v5.8.0-behat/gherkininstalledinversionv4.17.0Releasenotes:https://github.com/Behat/Gherkin/releases/tag/v4.17.0-behat/behatinstalledinversionv3.32.0Releasenotes:https://github.com/Behat/Behat/releases/tag/v3.32.0-drevops/behat-format-progress-failinstalledinversion1.5.1Releasenotes:https://github.com/drevops/behat-format-progress-fail/releases/tag/1.5.1-symfony/polyfill-php83installedinversionv1.41.0Releasenotes:https://github.com/symfony/polyfill-php83/releases/tag/v1.41.0-symfony/http-client-contractsinstalledinversionv3.7.1-symfony/http-clientinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/http-client/releases/tag/v7.4.16-symfony/css-selectorinstalledinversionv7.4.9Releasenotes:https://github.com/symfony/css-selector/releases/tag/v7.4.9-behat/minkinstalledinversionv1.13.0Releasenotes:https://github.com/minkphp/Mink/releases/tag/v1.13.0-friends-of-behat/mink-extensioninstalledinversionv2.7.5Releasenotes:https://github.com/FriendsOfBehat/MinkExtension/releases/tag/v2.7.5-drevops/behat-screenshotinstalledinversion2.6.0Releasenotes:https://github.com/drevops/behat-screenshot/releases/tag/2.6.0-drevops/behat-stepsinstalledinversion3.14.1Releasenotes:https://github.com/drevops/behat-steps/releases/tag/3.14.1-drevops/vortex-toolinginstalledinversion1.4.0Releasenotes:https://github.com/drevops/vortex-tooling/releases/tag/1.4.0-twig/twiginstalledinversionv3.28.0Releasenotes:https://github.com/twigphp/Twig/releases/tag/v3.28.0-symfony/polyfill-intl-idninstalledinversionv1.38.1Releasenotes:https://github.com/symfony/polyfill-intl-idn/releases/tag/v1.38.1-symfony/mimeinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/mime/releases/tag/v7.4.16-twig/html-extrainstalledinversionv3.28.0Releasenotes:https://github.com/twigphp/html-extra/releases/tag/v3.28.0-symfony/validatorinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/validator/releases/tag/v7.4.16--symfony/polyfill-php84installedinversionv1.38.1Releasenotes:https://github.com/symfony/polyfill-php84/releases/tag/v1.38.1-symfony/serializerinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/serializer/releases/tag/v7.4.16-symfony/routinginstalledinversionv7.4.15Releasenotes:https://github.com/symfony/routing/releases/tag/v7.4.15-symfony/http-foundationinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/http-foundation/releases/tag/v7.4.16-psr/http-messageinstalledinversion2.0Releasenotes:https://github.com/php-fig/http-message/releases/tag/2.0-symfony/psr-http-message-bridgeinstalledinversionv7.4.8Releasenotes:https://github.com/symfony/psr-http-message-bridge/releases/tag/v7.4.8-symfony/processinstalledinversionv7.4.13Releasenotes:https://github.com/symfony/process/releases/tag/v7.4.13-symfony/polyfill-php86installedinversionv1.41.0Releasenotes:https://github.com/symfony/polyfill-php86/releases/tag/v1.41.0-symfony/polyfill-php85installedinversionv1.41.0Releasenotes:https://github.com/symfony/polyfill-php85/releases/tag/v1.41.0-doctrine/lexerinstalledinversion3.0.1Releasenotes:https://github.com/doctrine/lexer/releases/tag/3.0.1-egulias/email-validatorinstalledinversion4.0.4Releasenotes:https://github.com/egulias/EmailValidator/releases/tag/4.0.4-symfony/mailerinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/mailer/releases/tag/v7.4.15-symfony/var-dumperinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/var-dumper/releases/tag/v7.4.15-symfony/error-handlerinstalledinversionv7.4.15Releasenotes:https://github.com/symfony/error-handler/releases/tag/v7.4.15-symfony/http-kernelinstalledinversionv7.4.16Releasenotes:https://github.com/symfony/http-kernel/releases/tag/v7.4.16-sebastian/diffinstalledinversion6.0.2Releasenotes:https://github.com/sebastianbergmann/diff/releases/tag/6.0.2-revolt/event-loopinstalledinversionv1.0.9Releasenotes:https://github.com/revoltphp/event-loop/releases/tag/v1.0.9-php-tuf/composer-stagerinstalledinversionv2.1.1Releasenotes:https://github.com/php-tuf/composer-stager/releases/tag/v2.1.1-pear/pear_exceptioninstalledinversionv1.0.2Releasenotes:https://github.com/pear/PEAR_Exception/releases/tag/v1.0.2-pear/console_getoptinstalledinversionv1.4.3Releasenotes:https://github.com/pear/Console_Getopt/releases/tag/v1.4.3-pear/pear-core-minimalinstalledinversionv1.10.18Releasenotes:https://github.com/pear/pear-core-minimal/releases/tag/v1.10.18-pear/archive_tarinstalledinversion1.6.1Releasenotes:https://github.com/pear/Archive_Tar/releases/tag/1.6.1-mck89/peastinstalledinversionv1.17.7Releasenotes:https://github.com/mck89/peast/releases/tag/v1.17.7-masterminds/html5installedinversion2.10.1Releasenotes:https://github.com/Masterminds/html5-php/releases/tag/2.10.1-symfony/polyfill-php80installedinversionv1.37.0Releasenotes:https://github.com/symfony/polyfill-php80/releases/tag/v1.37.0-ralouphie/getallheadersinstalledinversion3.0.3Releasenotes:https://github.com/ralouphie/getallheaders/releases/tag/3.0.3-psr/http-factoryinstalledinversion1.1.0-psr/http-clientinstalledinversion1.0.3Releasenotes:https://github.com/php-fig/http-client/releases/tag/1.0.3-guzzlehttp/promisesinstalledinversion2.5.2Releasenotes:https://github.com/guzzle/promises/releases/tag/2.5.2-guzzlehttp/guzzleinstalledinversion7.15.3Releasenotes:https://github.com/guzzle/guzzle/releases/tag/7.15.3-composer/semverinstalledinversion3.4.4Releasenotes:https://github.com/composer/semver/releases/tag/3.4.4-asm89/stack-corsinstalledinversionv2.4.0Releasenotes:https://github.com/asm89/stack-cors/releases/tag/v2.4.0-drupal/coreinstalledinversion11.4.5Releasenotes:https://github.com/drupal/core/releases/tag/11.4.5-drupal/clamavinstalledinversion2.1.0-phpstan/phpdoc-parserinstalledinversion2.3.3Releasenotes:https://github.com/phpstan/phpdoc-parser/releases/tag/2.3.3-slevomat/coding-standardinstalledinversion8.31.1Releasenotes:https://github.com/slevomat/coding-standard/releases/tag/8.31.-sirbrillig/phpcs-variable-analysisinstalledinversionv2.13.0Releasenotes:https://github.com/sirbrillig/phpcs-variable-analysis/releases/tag/v2.13.0-drupal/coderinstalledinversion9.0.1Releasenotes:https://github.com/pfrenssen/coder/releases/tag/9.0.1-drupal/coffeeinstalledinversion2.0.1-drupal/config_splitinstalledinversion2.0.2-drupal/config_updateinstalledinversion2.0.0-alpha4-drupal/core-recommendedinstalledinversion11.4.5Releasenotes:https://github.com/drupal/core-recommended/releases/tag/11.4.5-doctrine/commoninstalledinversion3.5.0-symfony/dom-crawlerinstalledinversionv7.4.12Releasenotes:https://github.com/symfony/dom-crawler/releases/tag/v7.4.12-lullabot/php-webdriverinstalledinversionv2.0.7Releasenotes:https://github.com/Lullabot/php-webdriver/releases/tag/v2.0.7-lullabot/mink-selenium2-driverinstalledinversionv1.7.4Releasenotes:https://github.com/Lullabot/MinkSelenium2Driver/releases/tag/v1.7.4-drupal/drupal-driverinstalledinversionv3.3.1Releasenotes:https://github.com/jhedstrom/DrupalDriver/releases/tag/v3.3.1-symfony/browser-kitinstalledinversionv8.1.1.0-drupal/drupal_helpersinstalledinversion2.1.1-drupal/environment_indicatorinstalledinversion4.0.25-drupal/generated_contentinstalledinversion2.1.1-drupal/navigation_extra_toolsinstalledinversion1.3.2-drupal/tokeninstalledinversion1.17.0-drupal/ctoolsinstalledinversion4.1.1-drupal/pathautoinstalledinversion1.15.0-drupal/redirectinstalledinversion1.13.0-drupal/redisinstalledinversion1.11.0-halaxa/json-machineinstalledinversion1.2.6Releasenotes:https://github.com/halaxa/json-machine/releases/tag/1.2.6-solarium/solariuminstalledinversion7.0.0Releasenotes:https://github.com/solariumphp/solarium/releases/tag/7.0.0-maennchen/zipstream-phpinstalledinversion3.2.2Releasenotes:https://github.com/maennchen/ZipStream-PHP/releases/tag/3.2.2-laminas/laminas-stdlibinstalledinversion3.21.0Releasenotes:https://github.com/laminas/laminas-stdlib/releases/tag/3.21.0-drupal/search_apiinstalledinversion1.41.0-dflydev/dot-access-datainstalledinversionv3.0.3Releasenotes:https://github.com/dflydev/dflydev-dot-access-data/releases/tag/v3.0.3-consolidation/output-formattersinstalledinversion4.7.1Releasenotes:https://github.com/consolidation/output-formatters/releases/tag/4.7.1-consolidation/annotated-commandinstalledinversion4.10.5Releasenotes:https://github.com/consolidation/annotated-command/releases/tag/4.10.5-drupal/search_api_solrinstalledinversion4.4.0-drupal/seckitinstalledinversion2.0.3-drupal/shieldinstalledinversion1.8.0-drupal/stage_file_proxyinstalledinversion4.0.0-drupal/testmodeinstalledinversion2.7.2-drupal/xmlsitemapinstalledinversion2.0.0-psy/psyshinstalledinversionv0.12.24Releasenotes:https://github.com/bobthecow/psysh/releases/tag/v0.12.24-league/containerinstalledinversion4.2.5Releasenotes:https://github.com/laravel/prompts/releases/tag/v0.3.23-grasmash/yaml-cliinstalledinversion3.2.1Releasenotes:https://github.com/grasmash/yaml-cli/releases/tag/3.2.1-grasmash/expanderinstalledinversion3.0.1Releasenotes:https://github.com/grasmash/expander/releases/tag/3.0.1-consolidation/configinstalledinversion3.2.1Releasenotes:https://github.com/consolidation/config/releases/tag/3.2.1-consolidation/site-aliasinstalledinversion4.1.3Releasenotes:https://github.com/consolidation/site-alias/releases/tag/4.1.3-consolidation/site-processinstalledinversion6.1.0Releasenotes:https://github.com/consolidation/site-process/releases/tag/6.1-symfony/polyfill-php81installedinversionv1.38.1-phootwork/langinstalledinversionv3.2.3Releasenotes:https://github.com/phootwork/lang/releases/tag/v3.2.3-phootwork/collectioninstalledinversionv3.2.3Releasenotes:https://github.com/phootwork/collection/releases/tag/v3.2.3-phpowermove/docblockinstalledinversionv4.0Releasenotes:https://github.com/phpowermove/docblock/releases/tag/v4.0-consolidation/roboinstalledinversion5.1.1Releasenotes:https://github.com/consolidation/robo/releases/tag/5.1.1-consolidation/filter-via-dot-access-datainstalledinversion2.0.3Releasenotes:https://github.com/consolidation/filter-via-dot-access-data/releases/tag/2.0.3-chi-teck/drupal-code-generatorinstalledinversion4.2.0Releasenotes:https://github.com/Chi-teck/drupal-code-generator/releases/tag/4.2.0-phpstan/phpstan-deprecation-rulesinstalledinversion2.0.5Releasenotes:https://github.com/phpstan/phpstan-deprecation-rules/releases/tag/2.0.5-mglaman/phpstan-drupalinstalledinversion2.1.2Releasenotes:https://github.com/mglaman/phpstan-drupal/releases/tag/2.1.2-mikey179/vfsstreaminstalledinversionv1.6.12Releasenotes:https://github.com/bovigo/vfsStream/releases/tag/v1.6.12-rector/rectorinstalledinversion2.6.3Releasenotes:https://github.com/rectorphp/rector/releases/tag/2.6.3-palantirnet/drupal-rectorinstalledinversion1.1.2Releasenotes:https://github.com/palantirnet/drupal-rector/releases/tag/1.1.2-phpcsstandards/phpcsutilsinstalledinversion1.2.3tag/10.0.0-alpha2-webmozart/assertinstalledinversion2.4.1Releasenotes:https://github.com/webmozarts/assert/releases/tag/2.4.1-phpdocumentor/reflection-commoninstalledinversion2.2.0Releasenotes:https://github.com/phpDocumentor/ReflectionCommon/releases/tag/2.2.0-phpdocumentor/type-resolverinstalledinversion2.0.0Releasenotes:https://github.com/phpDocumentor/TypeResolver/releases/tag/2.0-phpdocumentor/reflection-docblockinstalledinversion6.0.3Releasenotes:https://github.com/phpDocumentor/ReflectionDocBlock/releases/tag/6.0.3-staabm/side-effects-detectorinstalledinversion1.0.5-sebastian/recursion-contextinstalledinversion6.0.3Releasenotes:https://github.com/sebastianbergmann/recursion-context/releases/tag/6.0.3-sebastian/object-reflectorinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/object-reflector/releases/tag/4.0.1-sebastian/object-enumeratorinstalledinversion6.0.1Releasenotes:https://github.com/sebastianbergmann/object-enumerator/releases/tag/6.0.1-sebastian/global-stateinstalledinversion7.0.2-sebastian/comparatorinstalledinversion6.3.3Releasenotes:https://github.com/sebastianbergmann/comparator/releases/tag/6.3.3-sebastian/code-unitinstalledinversion3.0.3Releasenotes:https://github.com/sebastianbergmann/code-unit/releases/tag/3.0.3-sebastian/cli-parserinstalledinversion3.0.2Releasenotes:https://github.com/sebastianbergmann/cli-parser/releases/tag/3.0.2-phpunit/php-timerinstalledinversion7.0.1Releasenotes:https://github.com/sebastianbergmann/php-timer/releases/tag/7.0.15.0.1-phpunit/php-file-iteratorinstalledinversion5.1.1Releasenotes:https://github.com/sebastianbergmann/php-file-iterator/releases/tag/5.1.1-theseer/tokenizerinstalledinversion1.3.1Releasenotes:https://github.com/theseer/tokenizer/releases/tag/1.3.1-sebastian/lines-of-codeinstalledinversion3.0.1Releasenotes:https://github.com/sebastianbergmann/lines-of-code/releases/tag/3.0.1-sebastian/complexityinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/complexity/releases/tag/4.0.1-sebastian/code-unit-reverse-lookupinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/code-unit-reverse-lookup/releases/tag/4.0.1-phpunit/php-code-coverageinstalledinversion11.0.12Releasenotes:https://github.com/sebastianbergmann/php-code-coverage/releases/tag/11.0.12-phar-io/versioninstalledinversion3.2.1Releasenotes:https://github.com/phar-io/version/releases/tag/3.2.1-phar-io/manifestinstalledinversion2.0.4Releasenotes:https://github.com/phar-io/manifest/releases/tag/2.0.4-myclabs/deep-copyinstalledinversion1.14.0Releasenotes:https://github.com/myclabs/DeepCopy/releases/tag/1.14.0-phpunit/phpunitinstalledinversion11.5.56Releasenotes:https://github.com/sebastianbergmann/phpunit/releases/tag/11.5.56-phpspec/prophecyinstalledinversionv1.26.1Releasenotes:https://github.com/phpspec/prophecy/releases/tag/v1.26.1-phpspec/prophecy-phpunitinstalledinversionv2.5.0Releasenotes:https://github.com/phpspec/prophecy-phpunit/releases/tag/v2.5.-softcreatr/jsonpnpmwarndeprecatedwhatwg-encoding@2.0.0:Use@exodus/bytesinsteadforamorespec-conformantandfasterimplementationnpmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupportednpmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.npmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.menpmwarndeprecatedabab@2.0.6:Useyourplatform'snativeatob()andbtoa()methodsinsteadnpmwarndeprecateddomexception@4.0.0:Useyourplatform'snativeDOMExceptioninsteadnpmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinsteadnpmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainsteadnpmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.athinstalledinversion0.10.0Releasenotes:https://github.com/SoftCreatR/JSONPath/releases/tag/0.10.0-vincentlanglet/twig-cs-fixerinstalledinversion4.0.2Releasenotes:https://github.com/VincentLanglet/Twig-CS-Fixer/releases/tag/4added611packages,andaudited612packagesin7s171packagesarelookingforfundingrun`npmfund`fordetailsfound0vulnerabilitiesnpmwarndeprecatedinflight@1.0.6:Thismoduleisnotsupported,andleaksmemory.Donotuseit.Checkoutlru-cacheifyouwantagoodandtestedwaytocoalesceasyncrequestsbyakeyvalue,whichismuchmorecomprehensiveandpowerful.npmwarndeprecated@humanwhocodes/config-array@0.13.0:Use@eslint/config-arrayinsteadnpmwarndeprecatedrimraf@3.0.2:Rimrafversionspriortov4arenolongersupportednpmwarndeprecatedglob@7.2.3:Oldversionsofglobarenotsupported,andcontainwidelypublicizedsecurityvulnerabilities,whichhavebeenfixedinthecurrentversion.Pleaseupdate.Supportforoldversionsmaybepurchased(atexorbitantrates)bycontactingi@izs.menpmwarndeprecatedrimraf@2.7.1:Rimrafversionspriortov4arenolongersuppnpmwarndeprecated@humanwhocodes/object-schema@2.0.3:Use@eslint/object-schemainsteadnpmwarndeprecatedeslint@8.57.1:Thisversionisnolongersupported.Pleaseseehttps://eslint.org/version-supportforotheroptions.>star_wars@1.0.0postinstall>patch-packageNopatchfilesfoundpatch-package6.5.1Applyingpatches...added475packages,andaudited476packagesin6s169packagesarelookingforfunding2vulnerabilities(1low,1high)Toaddressallissues(includingbreakingchanges),run:npmauditfix--forceRun`npmaudit`fordetails.>star_wars@1.0.0build>npmrunclean&&mkdir-pbuild/js&&npmrunconcat&&npmrunuglify&&npmrunsass:prod&&npmrunpostcss:prod&&npmruncopy>star_wars@1.0.0clean>rm-rfbuild>star_wars@1.0.0concat>findjs-name'*.js'!-name'*.min.js'-execcat{}+>build/js/star_wars.min.js>star_wars@1.0.0uglify>terserbuild/js/star_wars.min.js-obuild/js/star_wars.min.js-cdrop_console=true-mreserved=['jQuery','Drupal']2>/dev/null||true>star_wars@1.0.0sass:prod>sassscss/styles.scssbuild/css/star_wars.min.css--no-source-map--style=compressed>star_wars@1.0.0postcss:prod>postcssbuild/css/star_wars.min.css-obuild/css/star_wars.min.css--no-map>star_wars@1.0.0copy>npmruncopy:images&&npmruncopy:fonts>star_wars@1.0.0copy:images>mkdir-pbuild/images&&cp-rimages/*build/images/2>/dev/null||true>star_wars@1.0.0copy:fonts>mkdir-pbuild/fonts&&cp-rfonts/*build/fonts/2>/dev/null||true[INFO]Startedsiteprovisioning.Drupalcoreversion:11.4.5Drushversion:13.7.6.0Webrootpath:/app/webPublicfilespath:sites/default/filesPrivatefilespath:sites/default/files/privateTemporaryfilespath:/tmpConfigfilespath:/app/config/defaultDBdumpfilepath:/app/.data/db.sql(present)Profile:standardConfigurationfilespresent:NoExistingsitefound:NoProvisiontype:databaseFallbacktoprofile:NoOverwriteexistingDB:YesSkipDBsanitization:NoSkippost-provisionoperations:NoVerifyconfigafterupdate:NoUsemaintenancemode:Yes[INFO]Provisioningsitefromthedatabasedumpfile.Dumpfilepath:/app/.data/db.sqlExistingsitewasnotfound.Freshsitecontentwillbeimportedfromthedatabasedumpfile.[INFO]Starteddatabasefileimport.//Doyoureallywanttodropalltablesinthedatabasedrupal?:yes.Importeddatabasefromthedumpfile.[OK]Finisheddatabasefileimport.[INFO]CurrentDrupalenvironment:local[TASK]Enablingmaintenancemode.[OK]Enabledmaintenancemode.(1s)[TASK]Runningdatabaseupdates.[success]Nopendingupdates.[OK]Completedrunningdatabaseupdates.(2s)[TASK]Clearingcacheafterdatabaseupdates.[success]Cacherebuildcomplete.[OK]Cachewascleared.(2s)[TASK]Rebuildingcache.[OK]Cachewasrebuilt.(1s)[TASK]Runningdeploymenthooks.[success]Nopendingdeployhooks.[OK]Completeddeploymenthooks.(1s)[INFO]Sanitizingdatabase.[notice]TheDrush\Commands\sql\sanitize\SanitizeUserTableCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeCommentsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeUserFieldsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeSessionsCommands::messagessanThefollowingoperationswillbeperformed:*Sanitizeuserpasswords.*Sanitizeuseremails.*Preserveuseremailsandpasswordsforthespecifiedroles.*Sanitizetextfieldsassociatedwithusers.//Doyouwanttosanitizethecurrentdatabase?:yes.[success]Userpasswordssanitized.[success]Useremailssanitized.[OK]Sanitizeddatabaseusingdrushsql:sanitize.[OK]Appliedcustomsanitizationcommandsfromfile.[OK]Resetuser0usernameandemail.[TASK]Runningcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".==>Starteddemomodulesoperations.Environment:local>Creatingthecontentmodel.0/2[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]Applyingrecipe2/2[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]AppliedBasicpagerecipe.[OK]Basicpageappliedsuccessfully<Createdthecontentmodel.>Settingsitename.<Setsitename.>Settinguptheadministrationnavigation.[notice]Alreadyinstalled:navigation<Setuptheadministrationnavigation.>Installingcontribmodules.Thefollowingmodule(s)willbeinstalled:coffee,config_split,config_update,media,environment_indicator,navigation_extra_tools,pathauto,redirect,reroute_email,robotstxt,shield,stage_file_proxy,xmlsitemap,token//Doyouwanttocontinue?:yes.[success]Modulecoffeehasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_splithasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_updatehasbeeninstalled.[success]Modulemediahasbeeninstalled.(Permissions-Configure)[success]Moduleenvironment_indicatorhasbeeninstalled.(Permissions-Configure)[success]Modulenavigation_extra_toolshasbeeninstalled.(Permissions)[success]Modulepathautohasbeeninstalled.(Permissions-Configure)[success]Moduleredirecthasbeeninstalled.(Permissions-Configure)[success]Modulereroute_emailhasbeeninstalled.(Permissions-Configure)[success]Modulerobotstxthasbeeninstalled.(Permissions-Configure)[success]Moduleshieldhasbeeninstalled.(Permissions-Configure)[success]Modulestage_file_proxyhasbeeninstalled.(Permissions-Configure)[success]Modulexmlsitemaphasbeeninstalled.(Permissions-Configure)[success]Moduletokenhasbeeninstalled.<Installedcontribmodules.>InstallingRedismodule.[success]Moduleredishasbeeninstalled.(Permissions-Configure)<InstalledRedismodule.>InstallingandconfiguringClamAV.[success]Moduleclamavhasbeeninstalled.(Permissions-Configure)//Doyouwanttoupdatemode_daemon_tcpip.hostnamekeyinclamav.settings//config?:yes.<InstalledandconfiguredClamAV.>InstallingSolrsearchmodules.Thefollowingmodule(s)willbeinstalled:search_api,search_api_solr,language[success]Modulesearch_apihasbeeninstalled.(Permissions-Configure)[success]Modulesearch_api_solrhasbeeninstalled.[success]Modulelanguagehasbeeninstalled.(Permissions-Configure)<InstalledSolrsearchmodules.>Installingcustomsitemodules.[success]Modulesw_basehasbeeninstalled.Thefollowingmodule(s)willbeinstalled:sw_search,workflows,content_moderation[success]Modulesw_searchhasbeeninstalled.[success]Moduleworkflowshasbeeninstalled.(Permissions-Configure)[success]Modulecontent_moderationhasbeeninstalled.(Permissions-Configure)Thefollowingmodule(s)willbeinstalled:sw_demo,drupal_helpers,testmode[success]Modulesw_demohasbeeninstalled.[success]Moduledrupal_helpershasbeeninstalled.[success]Moduletestmodehasbeeninstalled.(Configure)<Installedcustomsitemodules.>Runningdeploymenthooks.---------------------------------------------------------------------------ModuleHookDescriptionsw_baseinstall_active_themeInstallsdefaultandcustomtheme.@codeCoverageIgnoresw_democonfigure_testmodeConfiguretestmodetofilterthepagesview.Registersthe'sw_demo_pages'viewwithtestmodesothatonlycontentmatchingthe[TEST]prefixappearsduringtestruns.sw_democreate_pages_menu_linkCreate"Pages"menulinkinthemainnavigation.Demonstratesusingthedrupal_helpersmoduletomanagemenulinkswithindeployhooks.sw_demoplace_counter_blockPlacecounterblockinthe"content"region.@codeCoverageIgnoresw_searchadd_editorial_workflowAttacheditorialworkflowtothepagecontenttype.Computedbasefieldslike'moderation_state'areonlyavailablewhenaworkflowisattachedtothecontenttype.//Doyouwishtorunthespecifiedpendingdeployhooks?:yes.>[notice]Deployhookstarted:sw_base_deploy_install_active_theme>[notice]Performed:sw_base_deploy_install_active_theme>[notice]Deployhookstarted:sw_demo_deploy_configure_testmode>[notice]Configuredtestmodetofilterthepagesview.>[notice]Performed:sw_demo_deploy_configure_testmode>[notice]Deployhookstarted:sw_demo_deploy_create_pages_menu_link>[notice]Created"Pages"menulinkinmainnavigation.>[notice]Performed:sw_demo_deploy_create_pages_menu_link>[notice]Deployhookstarted:sw_demo_deploy_place_counter_block>[notice]Counterblockplacedinthe"content"region.>[notice]Performed:sw_demo_deploy_place_counter_block>[notice]Deployhookstarted:sw_search_deploy_add_editorial_workflow>[notice]Attachededitorialworkflowtopagecontenttype.>[notice]Performed:sw_search_deploy_add_editorial_workflow[success]Finishedperformingdeployhooks.<Randeploymenthooks.==>Finisheddemomodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".(34s)[TASK]Runningcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".==>Starteddevelopmentmodulesoperations.>InstallingSingleDirectoryComponentdevelopmenttools.[success]Modulesdc_develhasbeeninstalled.<InstalledSingleDirectoryComponentdevelopmenttools.>InstallingDevelmodule.[success]Moduledevelhasbeeninstalled.(Permissions-Configure)<InstalledDevelmodule.>InstallingTestmodemodule.[notice]Alreadyinstalled:testmode<InstalledTestmodemodule.>InstallingGeneratedcontentmodule.Startedcreationofgeneratedcontentfrommodules:sw_demo,generated_content.Created"page"node"Demopage1accusamusanimide"[ID:2]Created"page"node"Demopage2asperioresatquem"[ID:3]Created"page"node"Demopage3debitisdelectuse"[ID:4]Created"page"node"Demopage4inmolestiaeoccae"[ID:5]Created"page"node"Demopage5doloribusiustoof"[ID:6]Created"page"node"Demopage6dolorumevenietli"[ID:7]Created"page"node"Demopage7facereidmaximeni"[ID:8]Created"page"node"Demopage8mollitianonsunta"[ID:9]Created"page"node"Demopage9distinctioharump"[ID:10]Created"page"node"Demopage10idimpeditmaximem"[ID:11]Created"page"node"Demopage11culpadebitisnobi"[ID:12]Created"page"node"Demopage12eosiustooptioqui"[ID:13]Created"page"node"Demopage13etitaqueproviden"[ID:14]Created"page"node"Demopage14animiautculpamai"[ID:15]Created"page"node"Demopage15maioresmolestiae"[ID:16]Created"page"node"Demopage16occaecatiperfere"[ID:17]Created"page"node"Demopage17fugaidimpeditnec"[ID:18]Created"page"node"Demopage18estiustomaximequ"[ID:19]Created"page"node"Demopage19consequaturdeser"[ID:20]Created"page"node"Demopage20doloreseosmaxime"[ID:21]Createdgeneratedcontententities"node"withbundle"page".Createdallgeneratedcontent.Finishedcreationofgeneratedcontent.[success]Modulegenerated_contenthasbeeninstalled.(Permissions)<InstalledGeneratedcontentmodule.==>Finisheddevelopmentmodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".(13s)[TASK]Runningcustompost-installscript"./scripts/provision-30-search-index.sh".==>Startedsearchindexingoperations.Searchindexingskip:0>Resettingsearchindextracker.[success]Contentwassuccessfullyscheduledforreindexing.<Resetsearchindextracker.>Runningsearchindexing.[success]Found21itemstoindexforContent.Indexingallitems.[success]Indexingamaximumnumberof21items(50itemsperbatchrun)fortheindex'Content'.>[notice]Successfullyindexed21itemsonContent.>[notice]Message:Successfullyindexed21items.><Completedsearchindexing.==>Finishedsearchindexingoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-30-search-index.sh".(2s)[TASK]Runningcustompost-installscript"./scripts/provision-40-example.sh".==>Startedexampleoperations.Runningexampleoperationsinnon-productionenvironment.>Performinganexampleoperation.Replacethiswithyourowncommands.<Performedanexampleoperation.Freshdatabasedetected.Performingadditionalexampleoperations.==>Finishedexampleoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-40-example.sh".(0s)[TASK]Disablingmaintenancemode.[OK]Disabledmaintenancemode.(1s)[OK]Finishedsiteprovisioning(1m2s).[INFO]Projectinformation:Projectname:star_warsDockerComposeprojectname:vortex_videosSitelocalURL:http://vortex_videos.docker.amazee.ioPathtowebroot:/app/webDBhost:databaseDBusername:drupalDBpassword:drupalDBport:3306DBportonhost:65358('ahoydb'tostartSequelAce)SolrURLonhost:http://127.0.0.1:65357SeleniumVNCURLonhost:http://localhost:65379/?autoconnect=1&password=secretMailhogURL:http://mailhog.docker.amazee.io/Xdebug:Disabled('ahoydebug'toenable)Siteloginlink:http://vortex_videos.docker.amazee.io/user/reset/1/1787192699/[REDACTED]/login$$a$ah$aho$ahoyb$ahoybu$ahoybui$ahoybuil#5DONE0.0s#6[databaseinternal]loadbuilddefinitionfromdatabase.dockerfile#6transferringdockerfile:816Bdone#6WARN:SecretsUsedInArgOrEnv:DonotuseARGorENVinstructionsforsensitivedata(ENV"MYSQL_PASSWORD")(line18)#6DONE0.0s#42[clamav]exporti#50writingimagesha256:d28628c3565616682135ee2989dc8de22f23c6d930f10278660#5320.74-Lockingconsolidation/filter-via-dot-access-data(2.0#5320.74-Lockingdoc#5320.74-Lockingdrupal/core-composer-scaff#5320.74-Lockingdrupal/robotstxt(#5320.74-Lockingerg#5320.74-Lockinglocalhei#5320.74-Lockingpear/pear-core-minimal#5320.74-Lo#5320.74-Locki##5320.74-Lockingsymfony/dependency-injection(#5320.74-Lockingsymfony#5320.74-Lockingsymfony/psr-http-message-b#5322.10-Downloadingsymfony/se#5322.10-Downloadingsymfony/translation-contracts(v3.7#5322.11-#5322.11-Downloadingsymfony/polyfil#5322.11-Downloadingdoctrine#5322.11-Download#5#5322.12-Downloading#53#5322.500/121[>---------------------------]0%12/121[==>-------------------------]9%19/121[====>-----------------------]15%28/121[======>---------------------]23%37/121[========>-------------------]30%52/121[============>---------------]42%61/121[==============>-------------]50%90/121[====================>-------]74%112/121[=========================>--]92%#5328.04-Installingsymfony/deprecation-contracts(#5328.04-Installingdrevops/vortex-tooling(1.4.0#5328.05-Installingsymfony/routing#5328.05-Installingrevolt/event-loop(v1.0.9#5328.05-Installingralouphie/geta#5328.06-Installingdrupal/config_split(2.0.2#5328.06-Installingdrupal/pathauto(1.#5328.07-Installingdflydev/dot-access-data#5328.07-Installingconsolidation/output-formatters(4.7.1#5328.07-Installinglaravel/prompts(v0.3.23#5328.07-Installingconsolidation/filter64/118[===============>------------]54%97/118[=======================>----]82%110/118[==========================>-]93%#5331.16-Skip[web-root]/.ht.router.php:#5331.16-Skip[web-root]/sites/example.sites.php:overrContainervortex_videos-wait-for-dependencies-1Waiting4.9sContainervortex_videos-wait-for-dependencies-1Waiting5.6sContainervortex_videos-wait-for-dependencies-1Waiting7.2sContainervortex_videos-wait-for-dependencies-1Waiting10.5sContainervortex_videos-wait-for-dependencies-1Waiting11.5s-Lockingdantleech/-Lockingdrupal/xmlsitemap(2.0.0-Locki-Lockingpear/console_getopt(-Lockingphps-Locking-Lockingsoftcreatr/jsonpath(0.-Lockingsymfony/http-client-Lockingvincentlanglet/twig0/83[>---------------------------]0%10/83[===>------------------------]12%17/83[=====>----------------------]20%26/83[========>-------------------]31%34/83[===========>----------------]40%45/83[===============>------------]54%50/83[================>-----------]60%60/83[====================>-------]72%67/83[======================>-----]80%76/83[=========================>--]91%0/8[>---------------------------]0%7/8[========================>---]87%0/187[>---------------------------]0%40/187[=====>----------------------]21%57/187[========>-------------------]30%79/187[===========>----------------]42%95/187[==============>-------------]50%114/187[=================>----------]60%133/187[===================>--------]71%143/187[=====================>------]76%152/187[======================>-----]81%175/187[==========================>-]93%183/187[===========================>]97%184/187[===========================>]98%185/187[===========================>]98%186/187[===========================>]99%Changelogssummary:-pyrech/composer-changelogsinstalledinversionv2.2.0Releasenotes:https://github.com/pyrech/composer-changelogs/releases/tag/v2.2.0-ergeb-ergebnis/json-printerinstalledinversion3.8.1Releasenotes:https://github.com/ergebnis/json-printer/releases/tag/3.8.1-phpstan/exte-phpstan/extension-installerinstalledinversion1.4.3Releasenotes:https://github.com/phpstan/extension-installer/releases/tag/1.4.3Releasenotes:https://github.com/symReleasenotes:https://github.com/symfony/polyfill-intl-normalizer/releases/tag/v1.38.0-dantleech/gherkin-lintinstalledinversion0.2.4Releasenotes:https://github.com/dantleech/gherkin-lint-php/releases/tag/0.2Releasenotes:https://github.com/symfony/yReleasenotes:https://github.com/symfony/yaml/releases/tag/v7.4.15-symfony/translation-contractsinstalledinversionv3.7.1Releasenotes:https://github.com/sReleasenotes:https://github.Releasenotes:https://github.com/symfony/http-client-contracts/releases/tag/-drevops/phpcs-standard-drevops/phpcs-standardinstalledinversion1.0.0Releasenotes:https://github.com/drevops/phpcs-standard/releases/tag/1.0.0Releasenotes:htt-symfony/error-handlerinstalledinversionReleasenotes:https://github.com/php-fig/hReleasenotes:https://github.com/php-fig/http-factory/releases/tag/1.1.0-guzzlehttp/psr7installedinversion2.13.0Releasenotes:https://github.com/guzzle/psr7/releases/tag/2.13.0Releasenotes:https://github.com/drupal/core/releases/tag/ReleaseReleasenotes:https://gReleasenotes:https://github.com/doctrine/common/releases/tag/3.5.0-drupal/develinstalledinversion5.5.0-webflo/drupal-finderinstalledinversion1.3.1Releasenotes:https://github.com/webflo/drupal-finder/releases/tag/1.3.1Releasenotes:https://github.com/symfony/bReleasenotes:https://github.com/symfony/browser-kit/releases/tag/v8.1.1-behat/mink-browserkit-driverinstalledinversionv2.3.0Releasenotes:https://github.com/minkphp/MinkBrowserKitDriver/releases/tag/v2.3.0-drupal/drupal-extensioninstalledinversionv6.1.0Releasenotes:https://github.com/jhedstrom/drupalextension/releases/tag/v6.1-drupal/reroute_emailinstalledinversion2.3.0-rc2-drupal/robotstxtinstalledinversion1.6.0-drupal/sdc_develinstalledinversion1.0.3Releasenotes:https://github.com/dfly-league/containerinstalledinversionReleasenotes:https://github.com/thephpleague/container/releases/tag/4.2.Releasenotes:https://github.com/thephpleague/container/releases/tag/4.2.5-laravel/promptsinstalledinversionv0.3.23Releasenotes:https://gitReleasenotes:https://github.com/symfony/polyfill-php81/releases/tag/v1.38.1-dru-drush/drushinstalledinversion13.7.6Releasenotes:https://github.com/drush-ops/drush/releases/tag/13.7.6Releasenotes:https://githuReleasenotes:https://github.com/PHPCSStandards/PHPCSUtils/releases/tag/1.2.3-phpcompatibility/php-compatibilityinstalledinversion10.0.0-alpha2Releasenotes:https://github.com/PHPCompatibility/PHPCompatibility/releases/Releasenotes:https://github.coReleasenotes:https://github.com/staabm/side-effects-detector/releases/tag/1.0.5-sebastian/versioninstalledinversion5.0.2Releasenotes:https://github.com/sebastianbergmann/version/releases/tag/5.0.-sebastian/typeinstalledinversion5.1.3Releasenotes:https://github.com/sebastianbergmann/type/releases/tag/5.1.3Releasenotes:https://github.com/sebastianbergmann/global-state/releaseReleasenotes:https://github.com/sebastianbergmann/global-state/releases/tag/7.0.2-sebastian/exporterinstalledinversion6.3.2Releasenotes:https://github.com/sebastianbergmann/exporter/releases/tag/6.3.2-sebastian/environmentinstalledinversion7.2.1Releasenotes:https://github.com/sebastianbergmann/environment/releases/tag/7.2.1-phpunit/php-text-templateinstalledinversi-phpunit/php-text-templateinstalledinversion4.0.1Releasenotes:https://github.com/sebastianbergmann/php-text-template/releases/tag/4.0.1-phpunit/php-invokerinstalledinversion5.0.1Releasenotes:https://github.com/sebastianbergmann/php-invoker/releases/tag/Releasenotes:h-phpspec/prophecy-php-softcreatr/jsonpnavigation.Siteloginlink: \ No newline at end of file +$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 diff --git a/.vortex/docs/static/img/doctor-info.json b/.vortex/docs/static/img/doctor-info.json index c47c0113bd..9e18e75892 100644 --- a/.vortex/docs/static/img/doctor-info.json +++ b/.vortex/docs/static/img/doctor-info.json @@ -1,40 +1,40 @@ -{"version":2,"width":80,"height":42,"timestamp":1787182466,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy doctor info'","title":"Vortex ahoy doctor info Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} -[0.064086, "o", "$ "] -[0.569213, "o", "a"] -[0.623608, "o", "h"] -[0.676907, "o", "o"] -[0.731095, "o", "y"] -[0.781408, "o", " "] -[0.836426, "o", "d"] -[0.889307, "o", "o"] -[0.944336, "o", "c"] -[0.997771, "o", "t"] -[1.052816, "o", "o"] -[1.107841, "o", "r"] -[1.161581, "o", " "] -[1.214033, "o", "i"] -[1.264456, "o", "n"] -[1.316773, "o", "f"] -[1.366969, "o", "o"] -[1.822705, "o", "\r\n"] -[1.960116, "o", "System information report\r\n\r\nOPERATING SYSTEM\r\n"] -[1.973261, "o", "ProductName:\t\tmacOS\r\nProductVersion:\t\t26.6.2\r\nBuildVersion:\t\t25G83\r\n"] -[1.973655, "o", "\r\nDOCKER\r\n"] -[1.984894, "o", "Path to binary: /opt/homebrew/bin/docker\r\n"] -[1.998232, "o", "Docker version 29.7.2, build a7dcaa6fdb\r\n"] -[2.532131, "o", "Client: Docker Engine - Community\r\n Version: 29.7.2\r\n Context: desktop-linux\r\n Debug Mode: false\r\n Plugins:\r\n agent: Docker AI Agent Runner (Docker Inc.)\r\n Version: v1.115.0\r\n Path: /home/user/.docker/cli-plugins/docker-agent\r\n ai: Docker AI Agent - Ask Gordon (Docker Inc.)\r\n Version: v1.27.0\r\n Path: /home/user/.docker/cli-plugins/docker-ai\r\n buildx: Docker Buildx (Docker Inc.)\r\n Version: v0.35.0-desktop.2\r\n Path: /home/user/.docker/cli-plugins/docker-buildx\r\n compose: Docker Compose (Docker Inc.)\r\n Version: v5.3.1\r\n Path: /home/user/.docker/cli-plugins/docker-compose\r\n debug: Get a shell into any image or container (Docker Inc.)\r\n Version: 0.0.47\r\n Path: /home/user/.docker/cli-plugins/docker-debug\r\n desktop: Docker Desktop commands (Docker Inc.)\r\n Version: v0.4.3\r\n Path: /home/user/.docker/cli-plugins/docker-desktop\r\n dhi: CLI for manag"] -[2.532147, "o", "ing Docker Hardened Images (Docker Inc.)\r\n Version: v0.0.7\r\n Path: /home/user/.docker/cli-plugins/docker-dhi\r\n extension: Manages Docker extensions (Docker Inc.)\r\n Version: v0.2.31\r\n Path: /home/user/.docker/cli-plugins/docker-extension\r\n init: Creates Docker-related starter files for your project (Docker Inc.)\r\n Version: v1.4.0\r\n Path: /home/user/.docker/cli-plugins/docker-init\r\n mcp: Docker MCP Plugin (Docker Inc.)\r\n Version: v0.43.3\r\n Path: /home/user/.docker/cli-plugins/docker-mcp\r\n model: Docker Model Runner (Docker Inc.)\r\n Version: v1.2.6\r\n Path: /home/user/.docker/cli-plugins/docker-model\r\n offload: Docker Offload (Docker Inc.)\r\n Version: v0.6.9\r\n Path: /home/user/.docker/cli-plugins/docker-offload\r\n pass: Docker Pass Secrets Manager Plugin (beta) (Docker Inc.)\r\n Version: v0.2.0\r\n Path: /home/user/.docker/cli-p"] -[2.532161, "o", "lugins/docker-pass\r\n sandbox: \"docker sandbox\" is deprecated, use Docker Sandboxes instead (Docker Inc.)\r\n Version: v0.13.0\r\n Path: /home/user/.docker/cli-plugins/docker-sandbox\r\n scout: Docker Scout (Docker Inc.)\r\n Version: v1.24.0\r\n Path: /home/user/.docker/cli-plugins/docker-scout\r\n\r\nServer:\r\n Containers: 351\r\n Running: 27\r\n Paused: 0\r\n Stopped: 324\r\n Images: 294\r\n Server Version: 29.6.2\r\n Storage Driver: overlay2\r\n Backing Filesystem: extfs\r\n Supports d_type: true\r\n Using metacopy: false\r\n Native Overlay Diff: true\r\n userxattr: false\r\n Logging Driver: json-file\r\n Cgroup Driver: cgroupfs\r\n Cgroup Version: 2\r\n Plugins:\r\n Volume: local\r\n Network: bridge host ipvlan macvlan null overlay\r\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\r\n CDI spec directories:\r\n /etc/cdi\r\n /var/run/cdi\r\n Discovered Devices:\r\n cdi: docker.com/gpu=webgpu\r\n Swarm: inactive\r\n Runtimes: io.containerd.runc.v2 runc\r\n Default Runtime: runc\r\n"] -[2.532183, "o", " Init Binary: docker-init\r\n containerd version: [HASH_REDACTED]\r\n runc version: v1.3.6-0-g491b69ba\r\n init version: de40ad0\r\n Security Options:\r\n seccomp\r\n Profile: builtin\r\n cgroupns\r\n Kernel Version: 6.12.76-linuxkit\r\n Operating System: Docker Desktop\r\n OSType: linux\r\n Architecture: aarch64\r\n CPUs: 4\r\n Total Memory: 15.6GiB\r\n Name: docker-desktop\r\n ID: [REDACTED]\r\n Docker Root Dir: /var/lib/docker\r\n Debug Mode: false\r\n HTTP Proxy: http.docker.internal:3128\r\n HTTPS Proxy: http.docker.internal:3128\r\n No Proxy: hubproxy.docker.internal\r\n Labels:\r\n com.docker.desktop.address=unix:///home/user/Library/Containers/com.docker.docker/Data/docker-cli.sock\r\n Experimental: false\r\n Insecure Registries:\r\n hubproxy.docker.internal:5555\r\n ::1/128\r\n [IP_REDACTED]/8\r\n Live Restore Enabled: false\r\n Firewall Backend: iptables\r\n\r\n"] -[2.532896, "o", "\r\nDOCKER COMPOSE V2\r\nVersion: "] -[2.587482, "o", "Docker Compose version v5.3.1\r\n"] -[2.591331, "o", "\r\nDOCKER-COMPOSE V1\r\n"] -[2.613337, "o", "Path to binary: \r\nVersion: "] -[2.615353, "o", "Docker Compose V1 is not installed.\r\n\r\nPYGMY\r\n"] -[2.631339, "o", "Path to binary: /opt/homebrew/bin/pygmy\r\nVersion: "] -[2.639682, "o", "Pygmy v0.14.0\r\n"] -[2.64031, "o", "\r\nAHOY\r\n"] -[2.655517, "o", "Path to binary: /opt/homebrew/bin/ahoy\r\nVersion: "] -[2.662342, "o", "v3.0.0-pre.1\r\n"] -[2.662893, "o", "\r\n"] -[2.669508, "x", "0"] +{"version":2,"width":80,"height":27,"timestamp":1787268364,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy doctor info'","title":"Vortex ahoy doctor info Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.072537, "o", "$ "] +[0.576151, "o", "a"] +[0.631053, "o", "h"] +[0.684964, "o", "o"] +[0.739254, "o", "y"] +[0.793031, "o", " "] +[0.849524, "o", "d"] +[0.900826, "o", "o"] +[0.950917, "o", "c"] +[1.004857, "o", "t"] +[1.060105, "o", "o"] +[1.114867, "o", "r"] +[1.16955, "o", " "] +[1.223141, "o", "i"] +[1.273369, "o", "n"] +[1.32398, "o", "f"] +[1.376706, "o", "o"] +[1.830358, "o", "\r\n"] +[1.918199, "o", "System information report\r\n\r\nOPERATING SYSTEM\r\n"] +[1.933069, "o", "ProductName:\t\tmacOS\r\nProductVersion:\t\t26.6.2\r\nBuildVersion:\t\t25G83\r\n"] +[1.93353, "o", "\r\nDOCKER\r\n"] +[1.944456, "o", "Path to binary: /opt/homebrew/bin/docker\r\n"] +[1.956311, "o", "Docker version 29.7.2, build a7dcaa6fdb\r\n"] +[2.44452, "o", "Client: Docker Engine - Community\r\n Version: 29.7.2\r\n Context: desktop-linux\r\n Debug Mode: false\r\n Plugins:\r\n agent: Docker AI Agent Runner (Docker Inc.)\r\n Version: v1.115.0\r\n Path: /home/user/.docker/cli-plugins/docker-agent\r\n ai: Docker AI Agent - Ask Gordon (Docker Inc.)\r\n Version: v1.27.0\r\n Path: /home/user/.docker/cli-plugins/docker-ai\r\n buildx: Docker Buildx (Docker Inc.)\r\n Version: v0.35.0-desktop.2\r\n Path: /home/user/.docker/cli-plugins/docker-buildx\r\n compose: Docker Compose (Docker Inc.)\r\n Version: v5.3.1\r\n Path: /home/user/.docker/cli-plugins/docker-compose\r\n debug: Get a shell into any image or container (Docker Inc.)\r\n Version: 0.0.47\r\n Path: /home/user/.docker/cli-plugins/docker-debug\r\n desktop: Docker Desktop commands (Docker Inc.)\r\n Version: v0.4.3\r\n Path: /home/user/.docker/cli-plugins/docker-desktop\r\n dhi: CLI for manag"] +[2.444528, "o", "ing Docker Hardened Images (Docker Inc.)\r\n Version: v0.0.7\r\n Path: /home/user/.docker/cli-plugins/docker-dhi\r\n extension: Manages Docker extensions (Docker Inc.)\r\n Version: v0.2.31\r\n Path: /home/user/.docker/cli-plugins/docker-extension\r\n init: Creates Docker-related starter files for your project (Docker Inc.)\r\n Version: v1.4.0\r\n Path: /home/user/.docker/cli-plugins/docker-init\r\n mcp: Docker MCP Plugin (Docker Inc.)\r\n Version: v0.43.3\r\n Path: /home/user/.docker/cli-plugins/docker-mcp\r\n model: Docker Model Runner (Docker Inc.)\r\n Version: v1.2.6\r\n Path: /home/user/.docker/cli-plugins/docker-model\r\n offload: Docker Offload (Docker Inc.)\r\n Version: v0.6.9\r\n Path: /home/user/.docker/cli-plugins/docker-offload\r\n pass: Docker Pass Secrets Manager Plugin (beta) (Docker Inc.)\r\n Version: v0.2.0\r\n Path: /home/user/.docker/cli-p"] +[2.44455, "o", "lugins/docker-pass\r\n sandbox: \"docker sandbox\" is deprecated, use Docker Sandboxes instead (Docker Inc.)\r\n Version: v0.13.0\r\n Path: /home/user/.docker/cli-plugins/docker-sandbox\r\n scout: Docker Scout (Docker Inc.)\r\n Version: v1.24.0\r\n Path: /home/user/.docker/cli-plugins/docker-scout\r\n\r\nServer:\r\n Containers: 354\r\n Running: 54\r\n Paused: 0\r\n Stopped: 300\r\n Images: 324\r\n Server Version: 29.6.2\r\n Storage Driver: overlay2\r\n Backing Filesystem: extfs\r\n Supports d_type: true\r\n Using metacopy: false\r\n Native Overlay Diff: true\r\n userxattr: false\r\n Logging Driver: json-file\r\n Cgroup Driver: cgroupfs\r\n Cgroup Version: 2\r\n Plugins:\r\n Volume: local\r\n Network: bridge host ipvlan macvlan null overlay\r\n Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog\r\n CDI spec directories:\r\n /etc/cdi\r\n /var/run/cdi\r\n Discovered Devices:\r\n cdi: docker.com/gpu=webgpu\r\n Swarm: inactive\r\n Runtimes: io.containerd.runc.v2 runc\r\n Default Runtime: runc\r\n"] +[2.444575, "o", " Init Binary: docker-init\r\n containerd version: [HASH_REDACTED]\r\n runc version: v1.3.6-0-g491b69ba\r\n init version: de40ad0\r\n Security Options:\r\n seccomp\r\n Profile: builtin\r\n cgroupns\r\n Kernel Version: 6.12.76-linuxkit\r\n Operating System: Docker Desktop\r\n OSType: linux\r\n Architecture: aarch64\r\n CPUs: 4\r\n Total Memory: 15.6GiB\r\n Name: docker-desktop\r\n ID: [REDACTED]\r\n Docker Root Dir: /var/lib/docker\r\n Debug Mode: false\r\n HTTP Proxy: http.docker.internal:3128\r\n HTTPS Proxy: http.docker.internal:3128\r\n No Proxy: hubproxy.docker.internal\r\n Labels:\r\n com.docker.desktop.address=unix:///home/user/Library/Containers/com.docker.docker/Data/docker-cli.sock\r\n Experimental: false\r\n Insecure Registries:\r\n hubproxy.docker.internal:5555\r\n ::1/128\r\n [IP_REDACTED]/8\r\n Live Restore Enabled: false\r\n Firewall Backend: iptables\r\n\r\n"] +[2.445379, "o", "\r\nDOCKER COMPOSE V2\r\nVersion: "] +[2.487242, "o", "Docker Compose version v5.3.1\r\n"] +[2.491497, "o", "\r\nDOCKER-COMPOSE V1\r\n"] +[2.501708, "o", "Path to binary: \r\nVersion: "] +[2.502768, "o", "Docker Compose V1 is not installed.\r\n\r\nPYGMY\r\n"] +[2.511965, "o", "Path to binary: /opt/homebrew/bin/pygmy\r\nVersion: "] +[2.520683, "o", "Pygmy v0.14.0\r\n"] +[2.521374, "o", "\r\nAHOY\r\n"] +[2.532216, "o", "Path to binary: /opt/homebrew/bin/ahoy\r\nVersion: "] +[2.537673, "o", "v3.0.0-pre.1\r\n"] +[2.538299, "o", "\r\n"] +[2.545086, "x", "0"] diff --git a/.vortex/docs/static/img/doctor-info.png b/.vortex/docs/static/img/doctor-info.png index 64a6197c65..7bee43d4af 100644 Binary files a/.vortex/docs/static/img/doctor-info.png and b/.vortex/docs/static/img/doctor-info.png differ diff --git a/.vortex/docs/static/img/doctor-info.svg b/.vortex/docs/static/img/doctor-info.svg index f8c085199d..3208c44dae 100644 --- a/.vortex/docs/static/img/doctor-info.svg +++ b/.vortex/docs/static/img/doctor-info.svg @@ -1 +1 @@ -$ahoy$ahoydoctor$ahoydoctorinfoSysteminformationreportOPERATINGSYSTEMProductName:macOSProductVersion:26.6.2BuildVersion:25G83DOCKERPathtobinary:/opt/homebrew/bin/dockerDockerversion29.7.2,builda7dcaa6fdbContext:desktop-linuxDebugMode:falsePlugins:agent:DockerAIAgentRunner(DockerInc.)Version:v1.115.0Path:/home/user/.docker/cli-plugins/docker-agentai:DockerAIAgent-AskGordon(DockerInc.)Version:v1.27.0Path:/home/user/.docker/cli-plugins/docker-aibuildx:DockerBuildx(DockerInc.)Version:v0.35.0-desktop.2Path:/home/user/.docker/cli-plugins/docker-buildxcompose:DockerCompose(DockerInc.)Version:v5.3.1Path:/home/user/.docker/cli-plugins/docker-composedebug:Getashellintoanyimageorcontainer(DockerInc.)Version:0.0.47Path:/home/user/.docker/cli-plugins/docker-debugdesktop:DockerDesktopcommands(DockerInc.)Version:v0.4.3Path:/home/user/.docker/cli-plugins/docker-desktopVersion:v0.6.9Path:/home/user/.docker/cli-plugins/docker-offloadpass:DockerPassSecretsManagerPlugin(beta)(DockerInc.)Version:v0.2.0Log:awslogsfluentdgcplogsgelfjournaldjson-filelocalsplunksyslogCDIspecdirectories:/etc/cdi/var/run/cdiDiscoveredDevices:cdi:docker.com/gpu=webgpuSwarm:inactiveRuntimes:io.containerd.runc.v2runcDefaultRuntime:runcInitBinary:docker-initcontainerdversion:[HASH_REDACTED]runcversion:v1.3.6-0-g491b69bainitversion:de40ad0SecurityOptions:seccompProfile:builtincgroupnsKernelVersion:6.12.76-linuxkitOperatingSystem:DockerDesktopOSType:linuxArchitecture:aarch64CPUs:4TotalMemory:15.6GiBName:docker-desktopID:[REDACTED]DockerRootDir:/var/lib/dockerHTTPProxy:http.docker.internal:3128HTTPSProxy:http.docker.internal:3128NoProxy:hubproxy.docker.internalLabels:com.docker.desktop.address=unix:///home/user/Library/Containers/com.docker.docker/Data/docker-cli.sockExperimental:falseInsecureRegistries:hubproxy.docker.internal:5555::1/128[IP_REDACTED]/8LiveRestoreEnabled:falseFirewallBackend:iptablesDOCKERCOMPOSEV2Version:Version:DockerComposeversionv5.3.1DOCKER-COMPOSEV1Pathtobinary:Version:DockerComposeV1isnotinstalled.PYGMYPathtobinary:/opt/homebrew/bin/pygmyVersion:Pygmyv0.14.0AHOYPathtobinary:/opt/homebrew/bin/ahoyVersion:v3.0.0-pre.1$$a$ah$aho$ahoyd$ahoydo$ahoydoc$ahoydoct$ahoydocto$ahoydoctori$ahoydoctorin$ahoydoctorinfClient:DockerEngine-CommunityVersion:29.7.2dhi:CLIformanagdhi:CLIformanagingDockerHardenedImages(DockerInc.)Version:v0.0.7Path:/home/user/.docker/cli-plugins/docker-dhiextension:ManagesDockerextensions(DockerInc.)Version:v0.2.31Path:/home/user/.docker/cli-plugins/docker-extensioninit:CreatesDocker-relatedstarterfilesforyourproject(DockerInc.)Version:v1.4.0Path:/home/user/.docker/cli-plugins/docker-initmcp:DockerMCPPlugin(DockerInc.)Version:v0.43.3Path:/home/user/.docker/cli-plugins/docker-mcpmodel:DockerModelRunner(DockerInc.)Version:v1.2.6Path:/home/user/.docker/cli-plugins/docker-modeloffload:DockerOffload(DockerInc.)Path:/home/user/.docker/cli-pPath:/home/user/.docker/cli-plugins/docker-passsandbox:"dockersandbox"isdeprecated,useDockerSandboxesinstead(DockerInc.)Version:v0.13.0Path:/home/user/.docker/cli-plugins/docker-sandboxscout:DockerScout(DockerInc.)Version:v1.24.0Path:/home/user/.docker/cli-plugins/docker-scoutServer:Containers:351Running:27Paused:0Stopped:324Images:294ServerVersion:29.6.2StorageDriver:overlay2BackingFilesystem:extfsSupportsd_type:trueUsingmetacopy:falseNativeOverlayDiff:trueuserxattr:falseLoggingDriver:json-fileCgroupDriver:cgroupfsCgroupVersion:2Volume:localNetwork:bridgehostipvlanmacvlannulloverlay \ No newline at end of file +$ahoy$ahoydoctor$ahoydoctorinfoSysteminformationreportOPERATINGSYSTEMProductName:macOSProductVersion:26.6.2BuildVersion:25G83DOCKERPathtobinary:/opt/homebrew/bin/dockerDockerversion29.7.2,builda7dcaa6fdbDebugMode:falsePlugins:debug:Getashellintoanyimageorcontainer(DockerInc.)Version:0.0.47Path:/home/user/.docker/cli-plugins/docker-debugdesktop:DockerDesktopcommands(DockerInc.)Version:v0.4.3Path:/home/user/.docker/cli-plugins/docker-desktopKernelVersion:6.12.76-linuxkitOperatingSystem:DockerDesktopOSType:linuxArchitecture:aarch64CPUs:4TotalMemory:15.6GiBName:docker-desktopID:[REDACTED]DockerRootDir:/var/lib/dockerHTTPProxy:http.docker.internal:3128HTTPSProxy:http.docker.internal:3128NoProxy:hubproxy.docker.internalLabels:com.docker.desktop.address=unix:///home/user/Library/Containers/com.docker.docker/Data/docker-cli.sockExperimental:falseInsecureRegistries:hubproxy.docker.internal:5555::1/128[IP_REDACTED]/8LiveRestoreEnabled:falseFirewallBackend:iptablesDOCKERCOMPOSEV2Version:Version:DockerComposeversionv5.3.1DOCKER-COMPOSEV1Pathtobinary:Version:DockerComposeV1isnotinstalled.PYGMYPathtobinary:/opt/homebrew/bin/pygmyVersion:Pygmyv0.14.0AHOYPathtobinary:/opt/homebrew/bin/ahoyVersion:v3.0.0-pre.1$$a$ah$aho$ahoyd$ahoydo$ahoydoc$ahoydoct$ahoydocto$ahoydoctori$ahoydoctorin$ahoydoctorinfClient:DockerEngine-CommunityVersion:29.7.2Context:desktop-linuxagent:DockerAIAgentRunner(DockerInc.)Version:v1.115.0Path:/home/user/.docker/cli-plugins/docker-agentai:DockerAIAgent-AskGordon(DockerInc.)Version:v1.27.0Path:/home/user/.docker/cli-plugins/docker-aibuildx:DockerBuildx(DockerInc.)Version:v0.35.0-desktop.2Path:/home/user/.docker/cli-plugins/docker-buildxcompose:DockerCompose(DockerInc.)Version:v5.3.1Path:/home/user/.docker/cli-plugins/docker-composedhi:CLIformanagdhi:CLIformanagingDockerHardenedImages(DockerInc.)Version:v0.0.7Path:/home/user/.docker/cli-plugins/docker-dhiextension:ManagesDockerextensions(DockerInc.)Version:v0.2.31Path:/home/user/.docker/cli-plugins/docker-extensioninit:CreatesDocker-relatedstarterfilesforyourproject(DockerInc.)Version:v1.4.0Path:/home/user/.docker/cli-plugins/docker-initmcp:DockerMCPPlugin(DockerInc.)Version:v0.43.3Path:/home/user/.docker/cli-plugins/docker-mcpmodel:DockerModelRunner(DockerInc.)Version:v1.2.6Path:/home/user/.docker/cli-plugins/docker-modeloffload:DockerOffload(DockerInc.)Version:v0.6.9Path:/home/user/.docker/cli-plugins/docker-offloadpass:DockerPassSecretsManagerPlugin(beta)(DockerInc.)Version:v0.2.0Path:/home/user/.docker/cli-pRunning:54Paused:0Stopped:300Images:324ServerVersion:29.6.2StorageDriver:overlay2BackingFilesystem:extfsSupportsd_type:trueUsingmetacopy:falseNativeOverlayDiff:trueuserxattr:falseLoggingDriver:json-fileCgroupDriver:cgroupfsCgroupVersion:2Volume:localNetwork:bridgehostipvlanmacvlannulloverlayLog:awslogsfluentdgcplogsgelfjournaldjson-filelocalsplunksyslogCDIspecdirectories:/etc/cdi/var/run/cdiDiscoveredDevices:cdi:docker.com/gpu=webgpuSwarm:inactiveRuntimes:io.containerd.runc.v2runcDefaultRuntime:runcProfile:builtincgroupns \ No newline at end of file diff --git a/.vortex/docs/static/img/doctor.json b/.vortex/docs/static/img/doctor.json index 81a9010dd3..5b96737425 100644 --- a/.vortex/docs/static/img/doctor.json +++ b/.vortex/docs/static/img/doctor.json @@ -1,24 +1,24 @@ -{"version":2,"width":80,"height":42,"timestamp":1787182443,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy doctor'","title":"Vortex ahoy doctor Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} -[0.066879, "o", "$ "] -[0.572009, "o", "a"] -[0.626776, "o", "h"] -[0.681802, "o", "o"] -[0.73658, "o", "y"] -[0.791629, "o", " "] -[0.845757, "o", "d"] -[0.899562, "o", "o"] -[0.950788, "o", "c"] -[1.001602, "o", "t"] -[1.052548, "o", "o"] -[1.107243, "o", "r"] -[1.560228, "o", "\r\n"] -[2.403516, "o", "\u001b[36m[INFO] Checking project requirements.\u001b[0m\r\n"] -[2.432005, "o", "\u001b[32m[ OK ] All required tools are present.\u001b[0m\r\n"] -[2.695369, "o", "\u001b[32m[ OK ] Port 80 is available.\u001b[0m\r\n"] -[13.434807, "o", "\u001b[32m[ OK ] Pygmy is running.\u001b[0m\r\n"] -[13.780409, "o", "\u001b[32m[ OK ] All containers are running.\u001b[0m\r\n"] -[22.346479, "o", "\u001b[33m[WARN] SSH key is not added to pygmy.\u001b[0m\r\n The SSH key will not be available in the CLI container. Run 'pygmy restart' and then 'ahoy up'.\r\n"] -[22.583594, "o", "\u001b[32m[ OK ] Web server is running and accessible at http://vortex_videos.docker.amazee.io.\u001b[0m\r\n"] -[22.608754, "o", "\u001b[32m[ OK ] Bootstrapped website at http://vortex_videos.docker.amazee.io.\u001b[0m\r\n"] -[22.611429, "o", "\u001b[32m[ OK ] All required checks have passed.\u001b[0m\r\n\r\n"] -[22.617406, "x", "0"] +{"version":2,"width":80,"height":27,"timestamp":1787268334,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy doctor'","title":"Vortex ahoy doctor Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.087249, "o", "$ "] +[0.593509, "o", "a"] +[0.647884, "o", "h"] +[0.700603, "o", "o"] +[0.751791, "o", "y"] +[0.818242, "o", " "] +[0.865993, "o", "d"] +[0.916636, "o", "o"] +[0.968431, "o", "c"] +[1.021759, "o", "t"] +[1.076102, "o", "o"] +[1.126908, "o", "r"] +[1.582383, "o", "\r\n"] +[2.371984, "o", "\u001b[36m[INFO] Checking project requirements.\u001b[0m\r\n"] +[2.404482, "o", "\u001b[32m[ OK ] All required tools are present.\u001b[0m\r\n"] +[2.938, "o", "\u001b[32m[ OK ] Port 80 is available.\u001b[0m\r\n"] +[14.099749, "o", "\u001b[32m[ OK ] Pygmy is running.\u001b[0m\r\n"] +[14.577161, "o", "\u001b[32m[ OK ] All containers are running.\u001b[0m\r\n"] +[27.797933, "o", "\u001b[32m[ OK ] SSH key is available within the CLI container.\u001b[0m\r\n"] +[28.02214, "o", "\u001b[32m[ OK ] Web server is running and accessible at http://vortex_videos.docker.amazee.io.\u001b[0m\r\n"] +[28.055285, "o", "\u001b[32m[ OK ] Bootstrapped website at http://vortex_videos.docker.amazee.io.\u001b[0m\r\n"] +[28.058159, "o", "\u001b[32m[ OK ] All required checks have passed.\u001b[0m\r\n\r\n"] +[28.065621, "x", "0"] diff --git a/.vortex/docs/static/img/doctor.png b/.vortex/docs/static/img/doctor.png index 12652330ab..5386ca2568 100644 Binary files a/.vortex/docs/static/img/doctor.png and b/.vortex/docs/static/img/doctor.png differ diff --git a/.vortex/docs/static/img/doctor.svg b/.vortex/docs/static/img/doctor.svg index 1655517a62..c78ff31897 100644 --- a/.vortex/docs/static/img/doctor.svg +++ b/.vortex/docs/static/img/doctor.svg @@ -1 +1 @@ -$ahoy$ahoydoctor[INFO]Checkingprojectrequirements.[OK]Allrequiredtoolsarepresent.[OK]Port80isavailable.[OK]Pygmyisrunning.[OK]Allcontainersarerunning.[WARN]SSHkeyisnotaddedtopygmy.TheSSHkeywillnotbeavailableintheCLIcontainer.Run'pygmyrestart'andthen'ahoyup'.[OK]Webserverisrunningandaccessibleathttp://vortex_videos.docker.amazee.io.[OK]Bootstrappedwebsiteathttp://vortex_videos.docker.amazee.io.$$a$ah$aho$ahoyd$ahoydo$ahoydoc$ahoydoct$ahoydocto[OK]Allrequiredcheckshavepassed. \ No newline at end of file +$ahoy$ahoydoctor[INFO]Checkingprojectrequirements.[OK]Allrequiredtoolsarepresent.[OK]Port80isavailable.[OK]Pygmyisrunning.[OK]Allcontainersarerunning.[OK]SSHkeyisavailablewithintheCLIcontainer.[OK]Webserverisrunningandaccessibleathttp://vortex_videos.docker.amazee.io.[OK]Bootstrappedwebsiteathttp://vortex_videos.docker.amazee.io.$$a$ah$aho$ahoyd$ahoydo$ahoydoc$ahoydoct$ahoydocto[OK]Allrequiredcheckshavepassed. \ No newline at end of file diff --git a/.vortex/docs/static/img/info.json b/.vortex/docs/static/img/info.json index ca5fcfe384..74d0dd8310 100644 --- a/.vortex/docs/static/img/info.json +++ b/.vortex/docs/static/img/info.json @@ -1,18 +1,15 @@ -{"version":2,"width":80,"height":42,"timestamp":1787182440,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy info'","title":"Vortex ahoy info Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} -[0.06462, "o", "$ "] -[0.569672, "o", "a"] -[0.619716, "o", "h"] -[0.670766, "o", "o"] -[0.725138, "o", "y"] -[0.7797, "o", " "] -[0.834454, "o", "i"] -[0.887539, "o", "n"] -[0.939244, "o", "f"] -[0.993222, "o", "o"] -[1.450008, "o", "\r\n"] -[1.965364, "o", "\u001b[36m[INFO] Project information:\u001b[0m\r\n\r\n Project name : star_wars\r\n Docker Compose project name : vortex_videos\r\n Site local URL : http://vortex_videos.docker.amazee.io\r\n"] -[1.965723, "o", " Path to web root : /app/web\r\n DB host : database\r\n DB username : drupal\r\n DB password : drupal\r\n"] -[1.965727, "o", " DB port : 3306\r\n DB port on host : 51391 ('ahoy db' to start SequelAce)\r\n"] -[1.965882, "o", " Solr URL on host : http://127.0.0.1:51389\r\n Selenium VNC URL on host : http://localhost:51399/?autoconnect=1&password=secret\r\n Mailhog URL : http://mailhog.docker.amazee.io/\r\n"] -[1.995207, "o", " Xdebug : Disabled ('ahoy debug' to enable)\r\n\r\n Use 'ahoy login' to generate Drupal login link.\r\n\r\n"] -[2.009735, "x", "0"] +{"version":2,"width":80,"height":27,"timestamp":1787268330,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy info'","title":"Vortex ahoy info Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.099716, "o", "$ "] +[0.604882, "o", "a"] +[0.659105, "o", "h"] +[0.711756, "o", "o"] +[0.764658, "o", "y"] +[0.813581, "o", " "] +[0.863638, "o", "i"] +[0.916195, "o", "n"] +[0.968154, "o", "f"] +[1.018385, "o", "o"] +[1.472596, "o", "\r\n"] +[2.292851, "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 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 Selenium VNC URL on host : http://localhost:56375/?autoconnect=1&password=secret\r\n Mailhog URL : http://mailhog.docker.amazee.io/\r\n"] +[2.369059, "o", " Xdebug : Disabled ('ahoy debug' to enable)\r\n\r\n Use 'ahoy login' to generate Drupal login link.\r\n\r\n"] +[2.396222, "x", "0"] diff --git a/.vortex/docs/static/img/info.png b/.vortex/docs/static/img/info.png index 8854a4596d..5f9b5bfca6 100644 Binary files a/.vortex/docs/static/img/info.png and b/.vortex/docs/static/img/info.png differ diff --git a/.vortex/docs/static/img/info.svg b/.vortex/docs/static/img/info.svg index 29e7442f00..c830d4936c 100644 --- a/.vortex/docs/static/img/info.svg +++ b/.vortex/docs/static/img/info.svg @@ -1 +1 @@ -$ahoy$ahoyinfo[INFO]Projectinformation:Projectname:star_warsDockerComposeprojectname:vortex_videosSitelocalURL:http://vortex_videos.docker.amazee.ioPathtowebroot:/app/webDBhost:databaseDBusername:drupalDBpassword:drupalDBport:3306DBportonhost:51391('ahoydb'tostartSequelAce)SolrURLonhost:http://127.0.0.1:51389SeleniumVNCURLonhost:http://localhost:51399/?autoconnect=1&password=secretMailhogURL:http://mailhog.docker.amazee.io/$$a$ah$aho$ahoyi$ahoyin$ahoyinfXdebug:Disabled('ahoydebug'toenable)Use'ahoylogin'togenerateDrupalloginlink. \ No newline at end of file +$ahoy$ahoyinfo[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/$$a$ah$aho$ahoyi$ahoyin$ahoyinfXdebug:Disabled('ahoydebug'toenable)Use'ahoylogin'togenerateDrupalloginlink. \ No newline at end of file diff --git a/.vortex/docs/static/img/installer.json b/.vortex/docs/static/img/installer.json index 2a705c7c5a..19b6447226 100644 --- a/.vortex/docs/static/img/installer.json +++ b/.vortex/docs/static/img/installer.json @@ -1,216 +1,212 @@ -{"version":2,"width":80,"height":42,"timestamp":1786692508,"command":"/home/user/demo/installer.exp","title":"Vortex Installer Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} -[0.586236, "o", "\r\r\n \u001b[36m──────────────────────────────────────────────────────────────────────────────\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m ██╗ ██╗ ██████╗ ██████╗ ████████╗ ███████╗ ██╗ ██╗\u001b[39m\r\r\n \u001b[36m ██║ ██║ ██╔═══██╗ ██╔══██╗ ╚══██╔══╝ ██╔════╝ ╚██╗██╔╝\u001b[39m\r\r\n \u001b[36m ██║ ██║ ██║ ██║ ██████╔╝ ██║ █████╗ ╚███╔╝\u001b[39m\r\r\n \u001b[36m ╚██╗ ██╔╝ ██║ ██║ ██╔══██╗ ██║ ██╔══╝ ██╔██╗\u001b[39m\r\r\n \u001b[36m ╚████╔╝ ╚██████╔╝ ██║ ██║ "] -[0.586245, "o", " ██"] -[0.586334, "o", "║ ███████╗ ██╔╝ ██╗\u001b[39m\r\r\n \u001b[36m ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝ ╚═╝ ╚═╝\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m Drupal project template\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m by DrevOps\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m──────────────────────────────────────────────────────────────────────────────\u001b[39m\r\r\n \u001b[2m Installer version: development\u001b[22m\r\r\n\r\r\n"] -[0.589441, "o", "\r\r\n \u001b[90m┌───────────────────────────────────────────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32mWelcome to the Vortex interactive installer\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32m───────────────────────────────────────────\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m This tool will guide you through installing the latest \u001b[4mdevelopment\u001b[0m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m version of Vortex into your project.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m "] -[0.589474, "o", " "] -[0.589548, "o", " \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m You will be asked a few questions to tailor the configuration to your\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m site.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m No changes will be made until you confirm everything at the end.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Press \u001b[33mCtrl+C\u001b[39m at any time to exit the installer.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Press \u001b[33mCtrl+U\u001b[39m at any time to go back to the previous step.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└────────────────────────────────────────────"] -[0.589591, "o", "───"] -[0.58962, "o", "────────────────────────┘\u001b[39m\r\r\n\r\r\n"] -[0.589964, "o", "\u001b[?25l"] -[0.593101, "o", "\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mValidating repository and reference\u001b[39m\r\r\n"] -[0.600104, "o", "\u001b[999D\u001b[2A\u001b[J\u001b[?25h"] -[0.600215, "o", "\r\r\n \u001b[34m✦ Validating repository and reference\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mChecking repository \"/home/user/vortex\" and reference\u001b[22m\r\r\n \u001b[2m\"HEAD\"\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] -[0.600277, "o", "\r\r\n \u001b[32m✓ Repository and reference validated successfully\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n \r\r\n \u001b[2mPress any key to continue...\u001b[22m\r\r\n"] -[3.61231, "o", "\r\r\n \u001b[46m\u001b[30m General information \u001b[39m\u001b[49m\r\r\n\r\r\n"] -[3.625564, "o", "\u001b[?25l"] -[3.628552, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] -[3.783421, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star wa\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m\u001b[7mE\u001b[27m.g. My Site\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────"] -[3.78343, "o", "──"] -[4.459431, "o", "──────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m S\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m St\u001b[7m \u001b[27m "] -[4.45945, "o", " "] -[4.45966, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] -[5.463555, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] -[5.46632, "o", "\u001b[1G\u001b[5A\u001b[J"] -[5.46635, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mSite name \u001b[2m(1/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] -[5.466434, "o", "\u001b[?25h"] -[5.487431, "o", "\u001b[?25l"] -[5.489942, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite machine name \u001b[2m(2/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name for the project directory and in the code.\u001b[39m\r\r\n"] -[6.500885, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mSite machine name \u001b[2m(2/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[6.550655, "o", "\u001b[?25l"] -[6.553729, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars Org\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] -[6.708352, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars O\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m\u001b[7mE\u001b[27m.g. My Org\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────"] -[6.708367, "o", "───"] -[7.342213, "o", "───────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m R\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Re\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────"] -[7.342219, "o", "────"] -[7.342309, "o", "─────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] -[8.345271, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Rebellion\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] -[9.349961, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Rebellion \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization machine name \u001b[2m(4/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m rebellion\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the co"] -[9.349984, "o", "de.\u001b[39m\r"] -[9.350216, "o", "\r\r\n"] -[10.351141, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mOrganization machine name \u001b[2m(4/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m rebellion \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mPublic domain \u001b[2m(5/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star-wars.com\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Domain name without pro"] -[10.351161, "o", "tocol and"] -[10.351376, "o", " trailing slash.\u001b[39m\r\r\n"] -[11.355712, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mPublic domain \u001b[2m(5/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star-wars.com \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Drupal \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mHow would you like your site to be created on the first run? \u001b[2m(6/36)\u001b[…\u001b[39m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose how your site will be created the first time after this \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m installer finishes: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] -[11.356066, "o", " "] -[11.356169, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from one of the standard Drupal installation profiles. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal CMS, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from the Drupal CMS recipe. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, loaded from the demo database\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a site by \u001b[4mloadin"] -[11.356334, "o", "g an exist"] -[12.36047, "o", "ing demo database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m provided with the installer. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├─────────────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mDrupal, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mDrupal CMS, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Drupal, loaded from the demo database \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────────────────────"] -[12.36068, "o", "──"] -[12.360809, "o", "───────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇. Applies only on the first run of the installer.\u001b[39m\r\r\n"] -[13.370628, "o", "\u001b[1G\u001b[24A\u001b[J"] -[13.370764, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mHow would you like your site to be created on the first run? \u001b[2m(6/36)\u001b[…\u001b[22m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose how your site will be created the first time after this \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m installer finishes: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from one of the standard Drupal installation profiles. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal CMS, installed from profile\u001b[22m "] -[13.370833, "o", " \u001b[90m│\u001b"] -[13.371064, "o", "[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from the Drupal CMS recipe. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, loaded from the demo database\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a site by \u001b[4mloading an existing demo database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m provided with the installer. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├─────────────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Drupal, loaded from the demo database "] -[13.371083, "o", " "] -[13.371358, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[14.376982, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProfile \u001b[2m(7/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Standard \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mMinimal\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mDemo Umami\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mCustom (next prompt)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select which Drupal profile to use.\u001b[39m\r\r\n"] -[15.379477, "o", "\u001b[1G\u001b[8A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProfile \u001b[2m(7/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Standard \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mModules \u001b[2m(8/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m Coffee \u001b[36m┃\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mConfig split\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mConfig upda"] -[15.379494, "o", "te\u001b[22m "] -[15.379798, "o", " \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDevel\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDrupal helpers\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mEnvironment indicator\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mGenerated content\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mNavigation extra tools\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mPathauto\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mRedirect\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────────────────"] -[15.379809, "o", "───"] -[16.384273, "o", "─────────────────────── 18 selected ┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more modules.\u001b[39m\r\r\n\u001b[1G\u001b[14A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mModules \u001b[2m(8/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Coffee \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Config split \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Config update \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Devel \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Drupal helpers \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Environment indicator \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Generated content \u001b[90m│\u001b[39m\r"] -[16.384282, "o", "\r\n\u001b[90m │"] -[16.384417, "o", "\u001b[39m Navigation extra tools \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Pathauto \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Redirect \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Reroute email \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Robots.txt \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m SDC Devel \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Seckit \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Shield \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Stage file proxy \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Testmode \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m XML Sitemap \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────"] -[16.384436, "o", "───"] -[16.384564, "o", "───────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[17.388435, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom modules prefix \u001b[2m(9/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m sw\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in custom modules\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom modules prefix \u001b[2m(9/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m sw \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b"] -[17.388717, "o", "[39m\r\r\n\r\r\n"] -[17.388925, "o", "\u001b[?25h"] -[18.392388, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom modules \u001b[2m(10/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Select which custom modules to include in your project: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mBase\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Starter module with common site utilities (mail handling, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m deploy hooks) and test scaffolding for Unit, Kernel, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Functional, and FunctionalJavascript tests. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90"] -[18.392411, "o", "m │\u001b[39m"] -[18.39249, "o", " ○ \u001b[1mSearch\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom Solr search integration module. Requires the Solr \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m service to be selected. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDemo\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Demonstrates how Vortex tooling works: includes a counter \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m block with CSS/JS, PHPUnit example tests across all test \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m types, and a Behat feature. Safe to remove on real projects. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────"] -[18.392495, "o", "───"] -[18.392599, "o", "────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m Base - starter module with utilities and test scaffolding \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mSearch - custom Solr search integration\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDemo - counter block and example tests to demonstrate tooling\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more modules.\u001b[39m\r\r\n"] -[19.426416, "o", "\u001b[1G\u001b[25A"] -[19.426569, "o", "\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom modules \u001b[2m(10/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Select which custom modules to include in your project: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mBase\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Starter module with common site utilities (mail handling, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m deploy hooks) and test scaffolding for Unit, Kernel, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Functional, and FunctionalJavascript tests. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] -[19.426582, "o", "○ \u001b[1mSe"] -[19.426789, "o", "arch\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom Solr search integration module. Requires the Solr \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m service to be selected. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDemo\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Demonstrates how Vortex tooling works: includes a counter \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m block with CSS/JS, PHPUnit example tests across all test \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m types, and a Behat feature. Safe to remove on real projects. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────"] -[19.426849, "o", "───"] -[19.427029, "o", "───────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Base - starter module with utilities and test scaffolding \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Search - custom Solr search integration \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Demo - counter block and example tests to demonstrate tooling \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[20.42887, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mTheme \u001b[2m(11/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOlivero\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mClaro\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mStark\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Custom (next prompt) \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select which Drupal theme to use.\u001b[39m\r\r\n"] -[21.433761, "o", "\u001b[1G\u001b[8A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mTheme \u001b[2m(11/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom (next prompt) \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom theme machine name \u001b[2m(12/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use"] -[21.433785, "o", " this nam"] -[21.433991, "o", "e as a custom theme name\u001b[39m\r\r\n"] -[22.439066, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom theme machine name \u001b[2m(12/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mBuild front-end assets in the container? \u001b[2m(13/36)\u001b[22m\u001b[39m \u001b[90m────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Disable to build theme assets on the host or as part of deployment."] -[22.439076, "o", "\u001b[39m\r\r\n"] -[23.442516, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mBuild front-end assets in the container? \u001b[2m(13/36)\u001b[22m\u001b[22m \u001b[90m────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Code repository \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mRepository provider \u001b[2m(14/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Vortex offers full automation with GitHub, while support for \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m other providers is limited. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] -[23.442522, "o", " "] -[23.44267, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m GitHub \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select your code repository provider.\u001b[39m\r\r\n"] -[24.447566, "o", "\u001b[1G\u001b[11A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mRepository provider \u001b[2m(14/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Vortex offers full automation with GitHub, while support for \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m other providers is limited. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m GitHub \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────────────"] -[24.447583, "o", "───"] -[24.44781, "o", "───────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[25.452841, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mRelease versioning scheme \u001b[2m(15/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose your versioning scheme: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mCalendar Versioning (CalVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4myear.month.patch\u001b[0m (E.g., \u001b[4m24.1.0\u001b[0m) \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://calver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mSemantic Versioning (SemVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4mmajor.minor.patch\u001b[0m (E.g., \u001b[4m1.0.0\u001b[0m) "] -[25.452863, "o", " "] -[25.453165, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://semver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom versioning scheme of your choice. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Calendar Versioning (CalVer) \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mSemantic Versioning (SemVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOther\u001b[22m \u001b"] -[25.453181, "o", "[90m│\u001b["] -[25.453425, "o", "39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select your version scheme.\u001b[39m\r\r\n"] -[26.461963, "o", "\u001b[1G\u001b[22A\u001b[J"] -[26.461997, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mRelease versioning scheme \u001b[2m(15/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose your versioning scheme: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mCalendar Versioning (CalVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4myear.month.patch\u001b[0m (E.g., \u001b[4m24.1.0\u001b[0m) \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://calver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mSemantic Versioning (SemVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4mmajor.minor.patch\u001b[0m (E.g., \u001b[4m1.0.0\u001b[0m) "] -[26.462011, "o", " \u001b"] -[26.462081, "o", "[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://semver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom versioning scheme of your choice. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Calendar Versioning (CalVer) \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[27.467227, "o", "\r\r\n \u001b[46m\u001b[30m Environment \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mTimezone \u001b[2m(16/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m UTC\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2mUTC\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇, or start typing to select the timezone for your project.\u001b[39m\r\r\n"] -[28.471232, "o", "\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mTimezone \u001b[2m(16/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m UTC \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mServices \u001b[2m(17/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m ClamAV \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mSolr\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mRedis\u001b[22m "] -[28.471246, "o", " "] -[28.471488, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more services.\u001b[39m\r\r\n"] -[29.476571, "o", "\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mServices \u001b[2m(17/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m ClamAV \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Solr \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Redis \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDevelopment tools \u001b[2m(18/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m PHP CodeSniffer \u001b[36m┃\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39"] -[29.476617, "o", "m \u001b[36m"] -[29.476821, "o", "◼\u001b[39m \u001b[2mPHPStan\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mRector\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mESLint\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mStylelint\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mJest\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mPHPUnit\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mBehat\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mTwig CS Fixer\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDCLint\u001b[22m"] -[29.476832, "o", " "] -[30.479324, "o", " \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────────────────────────────────────────── 11 selected ┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more tools.\u001b[39m\r\r\n\u001b[1G\u001b[14A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDevelopment tools \u001b[2m(18/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m PHP CodeSniffer \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m PHPStan \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Rector \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ESLint \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Stylelint \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Jest "] -[30.479393, "o", " "] -[30.479424, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m PHPUnit \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Behat \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Twig CS Fixer \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m DCLint \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Hadolint \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[31.484461, "o", "\r\r\n \u001b[46m\u001b[30m Hosting \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mHosting provider \u001b[2m(19/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mAcquia Cloud\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mLagoon\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select your hosting provider.\u001b[39m\r\r\n\u001b[1G\u001b[8A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mHosting provider \u001b[2m(19/36)"] -[31.484506, "o", "\u001b[22m\u001b[22m \u001b"] -[31.48475, "o", "[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[32.489138, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom web root directory \u001b[2m(20/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m web\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Custom directory where the web server serves the site.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom web root directory \u001b[2m(20/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m web \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r"] -[32.489147, "o", "\r\n\r\r\n\u001b[?25"] -[32.489257, "o", "h"] -[33.493609, "o", "\r\r\n \u001b[46m\u001b[30m Deployment \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDeployment types \u001b[2m(21/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m ◻ Code artifact \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mLagoon webhook\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mCustom webhook\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more deployment types.\u001b[39m\r\r\n\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDeployment types \u001b[2m(21/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────"] -[33.493619, "o", "────"] -[33.493819, "o", "─┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom webhook \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[34.495525, "o", "\r\r\n \u001b[46m\u001b[30m Workflow \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProvision type \u001b[2m(22/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisioning sets up the site in an environment using an \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m already assembled codebase. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mImport from database dump\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by importing a database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m typically copied from production into lower \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] -[34.495543, "o", " "] -[34.495738, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mInstall from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by installing a fresh Drupal \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m site from a profile every time an environment is \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m created. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Import from database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mInstall from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────"] -[34.495744, "o", "───"] -[34.495841, "o", "───────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the provision type.\u001b[39m\r\r\n"] -[35.506922, "o", "\u001b[1G\u001b[21A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProvision type \u001b[2m(22/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisioning sets up the site in an environment using an \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m already assembled codebase. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mImport from database dump\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by importing a database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m typically copied from production into lower \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] -[35.506932, "o", "\u001b[90m│\u001b["] -[35.507048, "o", "39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mInstall from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by installing a fresh Drupal \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m site from a profile every time an environment is \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m created. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Import from database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[36.511925, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDatabase source \u001b[2m(23/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m URL download \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mFTP download\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mAcquia backup\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mLagoon environment\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mContainer registry\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mS3 bucket\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mNone\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────"] -[36.511953, "o", "───"] -[36.512102, "o", "────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the database fetch source.\u001b[39m\r\r\n"] -[37.516978, "o", "\u001b[1G\u001b[11A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDatabase source \u001b[2m(23/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m URL download \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mUse a second database for migrations? \u001b[2m(24/36)\u001b[22m\u001b[39m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○ Yes /\u001b[22m \u001b[32m●\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Adds a second database service for Drupa"] -[37.516985, "o", "l migrati"] -[37.517114, "o", "ons.\u001b[39m\r\r\n"] -[38.520481, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mUse a second database for migrations? \u001b[2m(24/36)\u001b[22m\u001b[22m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Notifications \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mNotification channels \u001b[2m(25/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m Email \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mGitHub\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mJIRA\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m "] -[38.520492, "o", "│\u001b[39m \u001b["] -[38.520691, "o", "2m◻\u001b[22m \u001b[2mNew Relic\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mSlack\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mWebhook\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more notification channels.\u001b[39m\r\r\n"] -[39.525189, "o", "\u001b[1G\u001b[10A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mNotification channels \u001b[2m(25/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Email \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Continuous Integration \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mContinuous Integration provider \u001b[2m(26/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m GitHub Actions \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mCircleCI\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mNone\u001b[22m "] -[39.525206, "o", " \u001b["] -[39.525455, "o", "90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the CI provider.\u001b[39m\r\r\n"] -[40.52938, "o", "\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mContinuous Integration provider \u001b[2m(26/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m GitHub Actions \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mVisual regression testing with Diffy? \u001b[2m(27/36)\u001b[22m\u001b[39m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Diffy-powered visual regression workflow to compare deployed \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Automatically trig"] -[40.529385, "o", "gers compar"] -[40.529492, "o", "isons for dependency-update \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m pull requests matching the configured branch pattern \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m (`deps/*` by default). \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Runs comparisons for pull requests tagged with the `VR` \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m label and posts a sticky comment. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Also supports manual runs against any URL. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○ Yes /\u001b[22m "] -[40.529496, "o", "\u001b[32m●\u001b["] -[41.533275, "o", "39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Requires a Diffy account.\u001b[39m\r\r\n\u001b[1G\u001b[19A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mVisual regression testing with Diffy? \u001b[2m(27/36)\u001b[22m\u001b[22m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Diffy-powered visual regression workflow to compare deployed \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Automatically triggers comparisons for dependency-update \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m pull requests matching the configured branch pattern \u001b[90m│\u001b[39m\r\r\n"] -[41.533311, "o", "\u001b[90m │\u001b["] -[41.533369, "o", "39m (`deps/*` by default). \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Runs comparisons for pull requests tagged with the `VR` \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m label and posts a sticky comment. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Also supports manual runs against any URL. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────"] -[41.533377, "o", "───"] -[42.539989, "o", "───────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mScan for committed secrets with Gitleaks? \u001b[2m(28/36)\u001b[22m\u001b[39m \u001b[90m───────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Runs in CI to detect hardcoded passwords, API keys and tokens.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mScan for committed secrets with Gitleaks? \u001b[2m(28/36)\u001b[22m\u001b[22m \u001b[90m───────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────"] -[42.540137, "o", "───"] -[42.540941, "o", "──────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[43.545171, "o", "\r\r\n \u001b[46m\u001b[30m Automations \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDependency updates provider \u001b[2m(29/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Renovate GitHub app \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mRenovate self-hosted in CI\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mNone\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the dependency updates provider.\u001b[39m\r\r\n\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDependency updates provider \u001b[2m(29/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Ren"] -[43.545239, "o", "ovate GitHub"] -[43.545456, "o", " app \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[44.550023, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCode coverage provider \u001b[2m(30/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mCodecov\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the code coverage provider.\u001b[39m\r\r\n\u001b[1G\u001b[6A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCode coverage provider \u001b[2m(30/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────────────"] -[44.550037, "o", "───"] -[44.550151, "o", "────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[45.555253, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mAuto-assign the author to their PR? \u001b[2m(31/36)\u001b[22m\u001b[39m \u001b[90m─────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Helps to keep the PRs organized.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mAuto-assign the author to their PR? \u001b[2m(31/36)\u001b[22m\u001b[22m \u001b[90m─────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mAuto-add"] -[45.55527, "o", " a CONFLICT"] -[45.555487, "o", " label to a PR when conflicts occur? \u001b[2m(32/36)\u001b[22m\u001b[39m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Helps to keep quickly identify PRs that need attention.\u001b[39m\r\r\n"] -[46.55922, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mAuto-add a CONFLICT label to a PR when conflicts occur? \u001b[2m(32/36)\u001b[22m\u001b[22m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Documentation \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mPreserve project documentation? \u001b[2m(33/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Helps to maintain the project documentation"] -[46.55923, "o", " within the "] -[46.559363, "o", "repository.\u001b[39m\r\r\n"] -[47.564068, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mPreserve project documentation? \u001b[2m(33/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m AI \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProvide AI agent instructions? \u001b[2m(34/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Provides AI coding agents"] -[47.564081, "o", " with better"] -[47.564241, "o", " context about the project.\u001b[39m\r\r\n"] -[48.565544, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProvide AI agent instructions? \u001b[2m(34/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m \u001b[39m\u001b[49m\r\r\n \u001b[46m\u001b[30m Installation summary \u001b[39m\u001b[49m\r\r\n \u001b[46m\u001b[30m \u001b[39m\u001b[49m\r\r\n\r\r\n\r\r\n \u001b[90m┌────────────────────────────────────┬────────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mGeneral information\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│"] -[48.565578, "o", "\u001b[39m\u001b[39m "] -[48.565638, "o", "Site name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Star Wars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Site machine name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m star_wars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Organization name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Rebellion \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Organization machine name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m rebellion \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Public domain \u001b[39m\u001b[90m│\u001b[39m\u001b[39m star-wars.com \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mDrupal\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Starter \u001b[39m\u001b[90m│\u001b[39m\u001b[39m load_demodb \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Modules \u001b[39m\u001b[90m│\u001b[39m\u001b[39m cof"] -[48.56566, "o", "fee, co"] -[49.569935, "o", "nfig_split,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m config_update, devel,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m drupal_helpers,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m environment_indicator,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m generated_content,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m navigation_extra_tools, pathauto,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m redirect, reroute_email,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m robotstxt, sdc_deve"] -[49.569986, "o", "l, seck"] -[49.570035, "o", "it,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m shield, stage_file_proxy,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m testmode, xmlsitemap \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Webroot \u001b[39m\u001b[90m│\u001b[39m\u001b[39m web \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Profile \u001b[39m\u001b[90m│\u001b[39m\u001b[39m standard \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Module prefix \u001b[39m\u001b[90m│\u001b[39m\u001b[39m sw \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Custom modules \u001b[39m\u001b[90m│\u001b[39m\u001b[39m base, search, demo \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Theme machine name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m star_wars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Build f"] -[49.570039, "o", "ront-end"] -[49.570122, "o", " in container \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mCode repository\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Code provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m github \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Version scheme \u001b[39m\u001b[90m│\u001b[39m\u001b[39m calver \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mEnvironment\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Timezone \u001b[39m\u001b[90m│\u001b[39m\u001b[39m UTC \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Services \u001b[39m\u001b[90m│\u001b[39m\u001b[39m clamav, redis, solr \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Tools \u001b[39m\u001b[90m│\u001b[39m\u001b[39m"] -[49.570167, "o", " behat,"] -[49.570255, "o", " dclint, eslint, hadolint,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m jest, phpcs, phpstan, phpunit,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m rector, stylelint, twig_cs_fixer \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mHosting\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Hosting provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m none \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mDeployment\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Deployment types \u001b[39m\u001b[90m│\u001b[39m\u001b[39m webhook \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mWorkflow\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m "] -[49.570274, "o", " "] -[49.570416, "o", " \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Provision type \u001b[39m\u001b[90m│\u001b[39m\u001b[39m database \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Database source \u001b[39m\u001b[90m│\u001b[39m\u001b[39m url \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Migration database \u001b[39m\u001b[90m│\u001b[39m\u001b[39m No \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mNotifications\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Channels \u001b[39m\u001b[90m│\u001b[39m\u001b[39m email \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mContinuous Integration\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m CI provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m gha \u001b[39m\u001b[90m│\u001b[39m\r\r\n"] -[49.570473, "o", " \u001b[90m"] -[49.570558, "o", "│\u001b[39m\u001b[39m Visual regression testing \u001b[39m\u001b[90m│\u001b[39m\u001b[39m No \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Secret scanning with Gitleaks \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mAutomations\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Dependency updates provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m renovatebot_app \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Code coverage provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m none \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Auto-assign PR author \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Auto-add a CONFLICT label to PRs \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mDocumentation\u001b[22m\u001b[39m "] -[49.570561, "o", " \u001b"] -[49.570674, "o", "[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Preserve project documentation \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mAI\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m AI agent instructions \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mLocations\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Current directory \u001b[39m\u001b[90m│\u001b[39m\u001b[39m /home/user/vortex/.art\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m ifacts/tmp/videos-workspace \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Destination directory \u001b[39m\u001b[90m│\u001b[39m\u001b[39m /home/user/www/"] -[49.570784, "o", "drevops/vortex/.art\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m ifacts/tmp/videos-workspace/star_w\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m ars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Vortex repository \u001b[39m\u001b[90m│\u001b[39m\u001b[39m /home/user/vortex \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Vortex reference \u001b[39m\u001b[90m│\u001b[39m\u001b[39m HEAD \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└────────────────────────────────────┴────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n Vortex will be installed into your project's directory \"/home/user/demo/star_wars\"\r\r\n"] -[51.575316, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProceed with installing Vortex?\u001b[39m \u001b[90m─────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] -[53.579106, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProceed with installing Vortex?\u001b[22m \u001b[90m─────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Starting project installation \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mDownloading Vortex\u001b[39m\r\r\n\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mDownloading Vortex\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Downloading Vortex\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mDownloading from \"/home/user/vortex\" repository at ref\u001b[22m\r\r\n \u001b[2m\"HEAD\"\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Vortex downloaded (develop)\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mCustomizing Vortex for your project\u001b[39m\r\r\n\u001b[1G\u001b["] -[53.579118, "o", "2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mCustom"] -[54.583548, "o", "izing Vortex for your project\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Customizing Vortex for your project\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Vortex was customized for your project\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mPreparing destination directory\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Preparing destination directory\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mCreated directory \"/home/user/demo/star_wars\".\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mInitializing a new Git repository in directory \"/home/user/demo/star_wars\".\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Destination directory is ready\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mCopying files to the destination directory\u001b[39m\r\r\n\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mCopying files to the destination directory\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Copying files to the destination directory\u001b[39m\r\r\n\r\r\n\r\r\n "] -[54.583561, "o", "\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Files copied to "] -[54.583715, "o", "destination directory\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] -[54.584055, "o", "\u001b[?25l"] -[54.593991, "o", "\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[54.681274, "o", "\u001b[1G\u001b[2A\u001b[J"] -[54.681442, "o", "\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[54.762607, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠐\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[54.843665, "o", "\u001b[1G\u001b[2A\u001b[J"] -[54.843704, "o", "\r\r\n \u001b[36m⠰\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[54.932565, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠠\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[55.012232, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠤\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[55.092349, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠄\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[55.171507, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠆\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[55.252497, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[55.332691, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] -[55.36287, "o", "\u001b[999D\u001b[2A\u001b[J\u001b[?25h"] -[55.363183, "o", "\r\r\n \u001b[34m✦ Preparing demo content\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mCreated data directory \"/home/user/demo/star_wars/.data\".\u001b[22m\r\r\n\r\r\n"] -[55.363319, "o", "\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mNo database dump file was found in \"/home/user/demo/star_wars/.data\" directory.\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mFetched demo database from https://github.com/drevops/vortex/releases/download/1.40.0/db.demo.sql.\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Demo content prepared\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] -[55.365555, "o", "\r\r\n \u001b[90m┌───────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32mFinished installing Vortex\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32m──────────────────────────\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Add and commit all files:\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m git add -A\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m git commit -m \"Initial commit.\"\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└───────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] -[55.389025, "o", "\u001b[?25l"] -[55.392382, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mRun the site build now?\u001b[39m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○ Yes /\u001b[22m \u001b[32m●\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Takes ~5-10 min; output will be streamed. You can skip and run later with…\u001b[39m\r\r\n"] -[57.40101, "o", "\u001b[1G\u001b[5A\u001b[J"] -[57.40112, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mRun the site build now?\u001b[22m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] -[57.413689, "o", "\r\r\n \u001b[90m┌────────────────────────────────────────────────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32mReady to build\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32m──────────────\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Build the site:\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m ahoy build\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m"] -[57.4137, "o", "│\u001b[39"] -[57.413848, "o", "m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Setup GitHub Actions:\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m https://www.vortextemplate.com/docs/continuous-integration/github-actions#\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m onboarding\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└────────────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] -[57.424736, "x", "0"] +{"version":2,"width":80,"height":27,"timestamp":1787268051,"command":"/home/user/demo/installer.exp","title":"Vortex Installer Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.516946, "o", "\r\r\n \u001b[36m──────────────────────────────────────────────────────────────────────────────\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m ██╗ ██╗ ██████╗ ██████╗ ████████╗ ███████╗ ██╗ ██╗\u001b[39m\r\r\n \u001b[36m ██║ ██║ ██╔═══██╗ ██╔══██╗ ╚══██╔══╝ ██╔════╝ ╚██╗██╔╝\u001b[39m\r\r\n \u001b[36m ██║ ██║ ██║ ██║ ██████╔╝ ██║ █████╗ ╚███╔╝\u001b[39m\r\r\n \u001b[36m ╚██╗ ██╔╝ ██║ ██║ ██╔══██╗ ██║ ██╔══╝ ██╔██╗\u001b[39m\r\r\n \u001b[36m ╚████╔╝ ╚██████╔╝ ██║ ██║ "] +[0.516955, "o", " ██"] +[0.517105, "o", "║ ███████╗ ██╔╝ ██╗\u001b[39m\r\r\n \u001b[36m ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝ ╚═╝ ╚═╝\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m Drupal project template\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m by DrevOps\u001b[39m\r\r\n \u001b[36m\u001b[39m\r\r\n \u001b[36m──────────────────────────────────────────────────────────────────────────────\u001b[39m\r\r\n \u001b[2m Installer version: development\u001b[22m\r\r\n\r\r\n"] +[0.519965, "o", "\r\r\n \u001b[90m┌───────────────────────────────────────────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32mWelcome to the Vortex interactive installer\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32m───────────────────────────────────────────\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m This tool will guide you through installing the latest \u001b[4mdevelopment\u001b[0m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m version of Vortex into your project.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m "] +[0.520031, "o", " "] +[0.520075, "o", " \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m You will be asked a few questions to tailor the configuration to your\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m site.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m No changes will be made until you confirm everything at the end.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Press \u001b[33mCtrl+C\u001b[39m at any time to exit the installer.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Press \u001b[33mCtrl+U\u001b[39m at any time to go back to the previous step.\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└────────────────────────────────────────────"] +[0.520098, "o", "───"] +[0.520209, "o", "────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[0.520432, "o", "\u001b[?25l"] +[0.523649, "o", "\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mValidating repository and reference\u001b[39m\r\r\n"] +[0.530451, "o", "\u001b[999D\u001b[2A\u001b[J\u001b[?25h"] +[0.530553, "o", "\r\r\n \u001b[34m✦ Validating repository and reference\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mChecking repository \"/home/user/vortex\" and reference\u001b[22m\r\r\n \u001b[2m\"HEAD\"\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] +[0.530618, "o", "\r\r\n \u001b[32m✓ Repository and reference validated successfully\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n \r\r\n \u001b[2mPress any key to continue...\u001b[22m\r\r\n"] +[3.544616, "o", "\r\r\n \u001b[46m\u001b[30m General information \u001b[39m\u001b[49m\r\r\n\r\r\n"] +[3.56139, "o", "\u001b[?25l"] +[3.565716, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[3.717968, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m s\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m\u001b[7mE\u001b[27m.g. My Site\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────"] +[3.717974, "o", "──"] +[4.602051, "o", "──────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m S\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m St\u001b[7m \u001b[27m "] +[4.602071, "o", " "] +[4.602258, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[5.605376, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite name \u001b[2m(1/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[5.610593, "o", "\u001b[1G\u001b[5A\u001b[J"] +[5.610696, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mSite name \u001b[2m(1/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[5.610825, "o", "\u001b[?25h"] +[5.643312, "o", "\u001b[?25l"] +[5.646686, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mSite machine name \u001b[2m(2/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name for the project directory and in the code.\u001b[39m\r\r\n"] +[6.657299, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mSite machine name \u001b[2m(2/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[6.657311, "o", "\u001b[?25h"] +[6.689137, "o", "\u001b[?25l"] +[6.693098, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars Org\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[6.845566, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Star Wars O\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m\u001b[7mE\u001b[27m.g. My Org\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────"] +[6.845599, "o", "───"] +[7.64111, "o", "───────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m R\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Re\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────"] +[7.641238, "o", "────"] +[7.641565, "o", "─────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[8.647827, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Rebellion\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the project and documentation.\u001b[39m\r\r\n"] +[9.651319, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mOrganization name \u001b[2m(3/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Rebellion \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mOrganization machine name \u001b[2m(4/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m rebellion\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in the co"] +[9.651342, "o", "de.\u001b[39m\r"] +[9.651475, "o", "\r\r\n"] +[10.655316, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mOrganization machine name \u001b[2m(4/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m rebellion \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mPublic domain \u001b[2m(5/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star-wars.com\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Domain name without pro"] +[10.655331, "o", "tocol and"] +[10.655469, "o", " trailing slash.\u001b[39m\r\r\n"] +[11.659582, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mPublic domain \u001b[2m(5/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star-wars.com \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Drupal \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mHow would you like your site to be created on the first run? \u001b[2m(6/36)\u001b[…\u001b[39m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose how your site will be created the first time after this \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m installer finishes: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] +[11.659591, "o", " "] +[11.659806, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from one of the standard Drupal installation profiles. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal CMS, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from the Drupal CMS recipe. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, loaded from the demo database\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a site by \u001b[4mloadin"] +[11.659834, "o", "g an exist"] +[12.662972, "o", "ing demo database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m provided with the installer. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├─────────────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mDrupal, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mDrupal CMS, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Drupal, loaded from the demo database \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────────────────────"] +[12.663283, "o", "──"] +[12.663431, "o", "───────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇. Applies only on the first run of the installer.\u001b[39m\r\r\n"] +[13.675825, "o", "\u001b[1G\u001b[24A\u001b[J"] +[13.675919, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mHow would you like your site to be created on the first run? \u001b[2m(6/36)\u001b[…\u001b[22m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose how your site will be created the first time after this \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m installer finishes: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, installed from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from one of the standard Drupal installation profiles. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal CMS, installed from profile\u001b[22m "] +[13.675957, "o", " \u001b[90m│\u001b"] +[13.676088, "o", "[39m\r\r\n\u001b[90m │\u001b[39m Creates a new site by \u001b[4mpopulating a fresh database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m from the Drupal CMS recipe. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDrupal, loaded from the demo database\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Creates a site by \u001b[4mloading an existing demo database\u001b[0m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m provided with the installer. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├─────────────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Drupal, loaded from the demo database "] +[13.67613, "o", " "] +[13.676281, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[14.67912, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProfile \u001b[2m(7/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Standard \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mMinimal\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mDemo Umami\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mCustom (next prompt)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select which Drupal profile to use.\u001b[39m\r\r\n"] +[15.683958, "o", "\u001b[1G\u001b[8A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProfile \u001b[2m(7/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Standard \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mModules \u001b[2m(8/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m Coffee \u001b[36m┃\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mConfig split\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mConfig upda"] +[15.684021, "o", "te\u001b[22m "] +[15.684199, "o", " \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDevel\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDrupal helpers\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mEnvironment indicator\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mGenerated content\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mNavigation extra tools\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mPathauto\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mRedirect\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────────────────"] +[15.68424, "o", "───"] +[16.688442, "o", "─────────────────────── 18 selected ┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more modules.\u001b[39m\r\r\n\u001b[1G\u001b[14A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mModules \u001b[2m(8/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Coffee \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Config split \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Config update \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Devel \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Drupal helpers \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Environment indicator \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Generated content \u001b[90m│\u001b[39m\r"] +[16.688458, "o", "\r\n\u001b[90m │"] +[16.688673, "o", "\u001b[39m Navigation extra tools \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Pathauto \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Redirect \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Reroute email \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Robots.txt \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m SDC Devel \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Seckit \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Shield \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Stage file proxy \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Testmode \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m XML Sitemap \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────"] +[16.688687, "o", "───"] +[16.688858, "o", "───────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[17.692559, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom modules prefix \u001b[2m(9/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m sw\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use this name in custom modules\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom modules prefix \u001b[2m(9/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m sw \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b"] +[17.692575, "o", "[39m\r\r\n\r\r\n"] +[17.692711, "o", "\u001b[?25h"] +[18.695612, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom modules \u001b[2m(10/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Select which custom modules to include in your project: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mBase\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Starter module with common site utilities (mail handling, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m deploy hooks) and test scaffolding for Unit, Kernel, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Functional, and FunctionalJavascript tests. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90"] +[18.695648, "o", "m │\u001b[39m"] +[18.695711, "o", " ○ \u001b[1mSearch\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom Solr search integration module. Requires the Solr \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m service to be selected. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDemo\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Demonstrates how Vortex tooling works: includes a counter \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m block with CSS/JS, PHPUnit example tests across all test \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m types, and a Behat feature. Safe to remove on real projects. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────"] +[18.695729, "o", "───"] +[18.695838, "o", "────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m Base - starter module with utilities and test scaffolding \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mSearch - custom Solr search integration\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDemo - counter block and example tests to demonstrate tooling\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more modules.\u001b[39m\r\r\n"] +[19.704687, "o", "\u001b[1G\u001b[25A\u001b[J"] +[19.704766, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom modules \u001b[2m(10/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Select which custom modules to include in your project: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mBase\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Starter module with common site utilities (mail handling, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m deploy hooks) and test scaffolding for Unit, Kernel, \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Functional, and FunctionalJavascript tests. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○"] +[19.704821, "o", " \u001b[1mSearc"] +[19.704892, "o", "h\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom Solr search integration module. Requires the Solr \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m service to be selected. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mDemo\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Demonstrates how Vortex tooling works: includes a counter \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m block with CSS/JS, PHPUnit example tests across all test \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m types, and a Behat feature. Safe to remove on real projects. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├───────────────────────────────────────────────"] +[19.704897, "o", "───"] +[19.705002, "o", "──────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Base - starter module with utilities and test scaffolding \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Search - custom Solr search integration \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Demo - counter block and example tests to demonstrate tooling \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[20.709127, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mTheme \u001b[2m(11/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOlivero\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mClaro\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mStark\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Custom (next prompt) \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select which Drupal theme to use.\u001b[39m\r\r\n"] +[21.712561, "o", "\u001b[1G\u001b[8A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mTheme \u001b[2m(11/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom (next prompt) \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom theme machine name \u001b[2m(12/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m We will use"] +[21.712579, "o", " this nam"] +[21.712796, "o", "e as a custom theme name\u001b[39m\r\r\n"] +[22.717731, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom theme machine name \u001b[2m(12/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m star_wars \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mBuild front-end assets in the container? \u001b[2m(13/36)\u001b[22m\u001b[39m \u001b[90m────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Disable to build theme assets on the host or as part of deployment."] +[22.717747, "o", "\u001b[39m\r\r\n"] +[23.721771, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mBuild front-end assets in the container? \u001b[2m(13/36)\u001b[22m\u001b[22m \u001b[90m────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Code repository \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mRepository provider \u001b[2m(14/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Vortex offers full automation with GitHub, while support for \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m other providers is limited. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] +[23.721816, "o", " "] +[23.722155, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m GitHub \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select your code repository provider.\u001b[39m\r\r\n"] +[24.724852, "o", "\u001b[1G\u001b[11A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mRepository provider \u001b[2m(14/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Vortex offers full automation with GitHub, while support for \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m other providers is limited. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m GitHub \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────────────────────────────"] +[24.72486, "o", "───"] +[24.724984, "o", "───────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[25.729909, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mRelease versioning scheme \u001b[2m(15/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose your versioning scheme: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mCalendar Versioning (CalVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4myear.month.patch\u001b[0m (E.g., \u001b[4m24.1.0\u001b[0m) \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://calver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mSemantic Versioning (SemVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4mmajor.minor.patch\u001b[0m (E.g., \u001b[4m1.0.0\u001b[0m) "] +[25.729918, "o", " "] +[25.730072, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://semver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom versioning scheme of your choice. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Calendar Versioning (CalVer) \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mSemantic Versioning (SemVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOther\u001b[22m \u001b"] +[25.730109, "o", "[90m│\u001b["] +[25.730177, "o", "39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select your version scheme.\u001b[39m\r\r\n"] +[26.740634, "o", "\u001b[1G\u001b[22A\u001b[J"] +[26.740761, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mRelease versioning scheme \u001b[2m(15/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Choose your versioning scheme: \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mCalendar Versioning (CalVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4myear.month.patch\u001b[0m (E.g., \u001b[4m24.1.0\u001b[0m) \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://calver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mSemantic Versioning (SemVer)\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[4mmajor.minor.patch\u001b[0m (E.g., \u001b[4m1.0.0\u001b[0m) "] +[26.740813, "o", " \u001b"] +[26.740921, "o", "[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m https://semver.org \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom versioning scheme of your choice. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Calendar Versioning (CalVer) \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[27.745913, "o", "\r\r\n \u001b[46m\u001b[30m Environment \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mTimezone \u001b[2m(16/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m UTC\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2mUTC\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇, or start typing to select the timezone for your project.\u001b[39m\r\r\n"] +[28.751061, "o", "\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mTimezone \u001b[2m(16/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m UTC \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mServices \u001b[2m(17/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m ClamAV \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mSolr\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mRedis\u001b[22m "] +[28.751075, "o", " "] +[28.751328, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more services.\u001b[39m\r\r\n"] +[29.754098, "o", "\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mServices \u001b[2m(17/36)\u001b[22m\u001b[22m \u001b[90m────────────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m ClamAV \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Solr \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Redis \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDevelopment tools \u001b[2m(18/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m PHP CodeSniffer \u001b[36m┃\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39"] +[29.754106, "o", "m \u001b[36m"] +[29.754291, "o", "◼\u001b[39m \u001b[2mPHPStan\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mRector\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mESLint\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mStylelint\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mJest\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mPHPUnit\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mBehat\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mTwig CS Fixer\u001b[22m \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mDCLint\u001b[22m"] +[29.754296, "o", " "] +[30.758337, "o", " \u001b[90m│\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────────────────────────────────────────── 11 selected ┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more tools.\u001b[39m\r\r\n\u001b[1G\u001b[14A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDevelopment tools \u001b[2m(18/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m PHP CodeSniffer \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m PHPStan \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Rector \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ESLint \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Stylelint \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Jest "] +[30.758368, "o", " "] +[30.758506, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m PHPUnit \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Behat \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Twig CS Fixer \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m DCLint \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Hadolint \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[31.762429, "o", "\r\r\n \u001b[46m\u001b[30m Hosting \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mHosting provider \u001b[2m(19/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mAcquia Cloud\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mLagoon\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mOther\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select your hosting provider.\u001b[39m\r\r\n\u001b[1G\u001b[8A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mHosting provider \u001b[2m(19/36)"] +[31.762441, "o", "\u001b[22m\u001b[22m \u001b"] +[31.762662, "o", "[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[32.766312, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCustom web root directory \u001b[2m(20/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m web\u001b[7m \u001b[27m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Custom directory where the web server serves the site.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCustom web root directory \u001b[2m(20/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m web \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r"] +[32.766343, "o", "\r\n\r\r\n\u001b[?25"] +[32.766595, "o", "h"] +[33.769179, "o", "\r\r\n \u001b[46m\u001b[30m Deployment \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDeployment types \u001b[2m(21/36)\u001b[22m\u001b[39m \u001b[90m────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m ◻ Code artifact \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mLagoon webhook\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m◼\u001b[39m \u001b[2mCustom webhook\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more deployment types.\u001b[39m\r\r\n\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDeployment types \u001b[2m(21/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────"] +[33.769196, "o", "────"] +[33.769428, "o", "─┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Custom webhook \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[34.774367, "o", "\r\r\n \u001b[46m\u001b[30m Workflow \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProvision type \u001b[2m(22/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisioning sets up the site in an environment using an \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m already assembled codebase. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mImport from database dump\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by importing a database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m typically copied from production into lower \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] +[34.774372, "o", " "] +[34.774454, "o", " \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mInstall from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by installing a fresh Drupal \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m site from a profile every time an environment is \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m created. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Import from database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mInstall from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────"] +[34.774459, "o", "───"] +[34.774568, "o", "───────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the provision type.\u001b[39m\r\r\n"] +[35.78714, "o", "\u001b[1G\u001b[21A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProvision type \u001b[2m(22/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisioning sets up the site in an environment using an \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m already assembled codebase. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m ○ \u001b[1mImport from database dump\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by importing a database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m typically copied from production into lower \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m "] +[35.787154, "o", "\u001b[90m│\u001b[39m\r\r\n\u001b[90m "] +[35.787268, "o", "│\u001b[39m ○ \u001b[1mInstall from profile\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Provisions the site by installing a fresh Drupal \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m site from a profile every time an environment is \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m created. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m Import from database dump \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[36.792059, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDatabase source \u001b[2m(23/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m URL download \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mFTP download\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mAcquia backup\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mLagoon environment\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mContainer registry\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mS3 bucket\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mNone\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────"] +[36.792066, "o", "───"] +[36.792168, "o", "────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the database fetch source.\u001b[39m\r\r\n"] +[37.795248, "o", "\u001b[1G\u001b[11A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDatabase source \u001b[2m(23/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m URL download \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mUse a second database for migrations? \u001b[2m(24/36)\u001b[22m\u001b[39m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○ Yes /\u001b[22m \u001b[32m●\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Adds a second database service for Drupa"] +[37.795255, "o", "l migrati"] +[37.795352, "o", "ons.\u001b[39m\r\r\n"] +[38.800132, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mUse a second database for migrations? \u001b[2m(24/36)\u001b[22m\u001b[22m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Notifications \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mNotification channels \u001b[2m(25/36)\u001b[22m\u001b[39m \u001b[90m───────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m› ◼\u001b[39m Email \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mGitHub\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mJIRA\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m "] +[38.800147, "o", "│\u001b[39m \u001b["] +[38.800378, "o", "2m◻\u001b[22m \u001b[2mNew Relic\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mSlack\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m◻\u001b[22m \u001b[2mWebhook\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆, ⬇ and Space bar to select one or more notification channels.\u001b[39m\r\r\n"] +[39.807979, "o", "\u001b[1G\u001b[10A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mNotification channels \u001b[2m(25/36)\u001b[22m\u001b[22m \u001b[90m───────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Email \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Continuous Integration \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mContinuous Integration provider \u001b[2m(26/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m GitHub Actions \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mCircleCI\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mNone\u001b[22m "] +[39.808085, "o", " \u001b["] +[39.808159, "o", "90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the CI provider.\u001b[39m\r\r\n"] +[40.812402, "o", "\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mContinuous Integration provider \u001b[2m(26/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m GitHub Actions \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mVisual regression testing with Diffy? \u001b[2m(27/36)\u001b[22m\u001b[39m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Diffy-powered visual regression workflow to compare deployed \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Automatically trig"] +[40.81241, "o", "gers compar"] +[40.812534, "o", "isons for dependency-update \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m pull requests matching the configured branch pattern \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m (`deps/*` by default). \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Runs comparisons for pull requests tagged with the `VR` \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m label and posts a sticky comment. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Also supports manual runs against any URL. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○ Yes /\u001b[22m "] +[40.81254, "o", "\u001b[32m●\u001b["] +[41.817872, "o", "39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Requires a Diffy account.\u001b[39m\r\r\n\u001b[1G\u001b[19A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mVisual regression testing with Diffy? \u001b[2m(27/36)\u001b[22m\u001b[22m \u001b[90m───────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Diffy-powered visual regression workflow to compare deployed \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m environments. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Automatically triggers comparisons for dependency-update \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m pull requests matching the configured branch pattern \u001b[90m│\u001b[39m\r\r\n"] +[41.817915, "o", "\u001b[90m │\u001b["] +[41.818105, "o", "39m (`deps/*` by default). \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Runs comparisons for pull requests tagged with the `VR` \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m label and posts a sticky comment. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m Also supports manual runs against any URL. \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[90m│\u001b[39m\r\r\n\u001b[90m ├──────────────────────────────────────────────────────────────┤\u001b[39m\r\r\n\u001b[90m │\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └────────────────────────────"] +[41.818126, "o", "───"] +[42.821175, "o", "───────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mScan for committed secrets with Gitleaks? \u001b[2m(28/36)\u001b[22m\u001b[39m \u001b[90m───────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Runs in CI to detect hardcoded passwords, API keys and tokens.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mScan for committed secrets with Gitleaks? \u001b[2m(28/36)\u001b[22m\u001b[22m \u001b[90m───────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────"] +[42.82119, "o", "───"] +[42.821465, "o", "──────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[43.826091, "o", "\r\r\n \u001b[46m\u001b[30m Automations \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mDependency updates provider \u001b[2m(29/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m Renovate GitHub app \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mRenovate self-hosted in CI\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mNone\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the dependency updates provider.\u001b[39m\r\r\n\u001b[1G\u001b[7A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mDependency updates provider \u001b[2m(29/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Ren"] +[43.826116, "o", "ovate GitHub"] +[43.82655, "o", " app \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[44.829327, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mCode coverage provider \u001b[2m(30/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○\u001b[22m \u001b[2mCodecov\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[36m›\u001b[39m \u001b[36m●\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Use ⬆ and ⬇ to select the code coverage provider.\u001b[39m\r\r\n\u001b[1G\u001b[6A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mCode coverage provider \u001b[2m(30/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m None \u001b[90m│\u001b[39m\r\r\n\u001b[90m └───────────────────"] +[44.829345, "o", "───"] +[44.829543, "o", "────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[45.833308, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mAuto-assign the author to their PR? \u001b[2m(31/36)\u001b[22m\u001b[39m \u001b[90m─────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Helps to keep the PRs organized.\u001b[39m\r\r\n\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mAuto-assign the author to their PR? \u001b[2m(31/36)\u001b[22m\u001b[22m \u001b[90m─────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mAuto-add"] +[45.833326, "o", " a CONFLICT"] +[45.833468, "o", " label to a PR when conflicts occur? \u001b[2m(32/36)\u001b[22m\u001b[39m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Helps to keep quickly identify PRs that need attention.\u001b[39m\r\r\n"] +[46.837175, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mAuto-add a CONFLICT label to a PR when conflicts occur? \u001b[2m(32/36)\u001b[22m\u001b[22m \u001b[90m┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └─────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Documentation \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mPreserve project documentation? \u001b[2m(33/36)\u001b[22m\u001b[39m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Helps to maintain the project documentation"] +[46.83722, "o", " within the "] +[46.837394, "o", "repository.\u001b[39m\r\r\n"] +[47.84164, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mPreserve project documentation? \u001b[2m(33/36)\u001b[22m\u001b[22m \u001b[90m─────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m AI \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProvide AI agent instructions? \u001b[2m(34/36)\u001b[22m\u001b[39m \u001b[90m──────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Provides AI coding agents"] +[47.841693, "o", " with better"] +[47.841797, "o", " context about the project.\u001b[39m\r\r\n"] +[48.846548, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProvide AI agent instructions? \u001b[2m(34/36)\u001b[22m\u001b[22m \u001b[90m──────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m \u001b[39m\u001b[49m\r\r\n \u001b[46m\u001b[30m Installation summary \u001b[39m\u001b[49m\r\r\n \u001b[46m\u001b[30m \u001b[39m\u001b[49m\r\r\n\r\r\n\r\r\n \u001b[90m┌────────────────────────────────────┬────────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mGeneral information\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│"] +[48.846555, "o", "\u001b[39m\u001b[39m "] +[48.846715, "o", "Site name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Star Wars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Site machine name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m star_wars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Organization name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Rebellion \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Organization machine name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m rebellion \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Public domain \u001b[39m\u001b[90m│\u001b[39m\u001b[39m star-wars.com \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mDrupal\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Starter \u001b[39m\u001b[90m│\u001b[39m\u001b[39m load_demodb \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Modules \u001b[39m\u001b[90m│\u001b[39m\u001b[39m cof"] +[48.846723, "o", "fee, co"] +[49.850375, "o", "nfig_split,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m config_update, devel,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m drupal_helpers,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m environment_indicator,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m generated_content,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m navigation_extra_tools, pathauto,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m redirect, reroute_email,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m robotstxt, sdc_deve"] +[49.850453, "o", "l, seck"] +[49.850568, "o", "it,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m shield, stage_file_proxy,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m testmode, xmlsitemap \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Webroot \u001b[39m\u001b[90m│\u001b[39m\u001b[39m web \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Profile \u001b[39m\u001b[90m│\u001b[39m\u001b[39m standard \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Module prefix \u001b[39m\u001b[90m│\u001b[39m\u001b[39m sw \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Custom modules \u001b[39m\u001b[90m│\u001b[39m\u001b[39m base, search, demo \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Theme machine name \u001b[39m\u001b[90m│\u001b[39m\u001b[39m star_wars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Build f"] +[49.850625, "o", "ront-end"] +[49.85072, "o", " in container \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mCode repository\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Code provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m github \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Version scheme \u001b[39m\u001b[90m│\u001b[39m\u001b[39m calver \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mEnvironment\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Timezone \u001b[39m\u001b[90m│\u001b[39m\u001b[39m UTC \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Services \u001b[39m\u001b[90m│\u001b[39m\u001b[39m clamav, redis, solr \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Tools \u001b[39m\u001b[90m│\u001b[39m\u001b[39m"] +[49.850792, "o", " behat,"] +[49.850949, "o", " dclint, eslint, hadolint,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m jest, phpcs, phpstan, phpunit,\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m rector, stylelint, twig_cs_fixer \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mHosting\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Hosting provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m none \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mDeployment\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Deployment types \u001b[39m\u001b[90m│\u001b[39m\u001b[39m webhook \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mWorkflow\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m "] +[49.851114, "o", " "] +[49.851205, "o", " \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Provision type \u001b[39m\u001b[90m│\u001b[39m\u001b[39m database \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Database source \u001b[39m\u001b[90m│\u001b[39m\u001b[39m url \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Migration database \u001b[39m\u001b[90m│\u001b[39m\u001b[39m No \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mNotifications\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Channels \u001b[39m\u001b[90m│\u001b[39m\u001b[39m email \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mContinuous Integration\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m CI provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m gha \u001b[39m\u001b[90m│\u001b[39m\r\r\n"] +[49.85129, "o", " \u001b[90m"] +[49.851381, "o", "│\u001b[39m\u001b[39m Visual regression testing \u001b[39m\u001b[90m│\u001b[39m\u001b[39m No \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Secret scanning with Gitleaks \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mAutomations\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Dependency updates provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m renovatebot_app \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Code coverage provider \u001b[39m\u001b[90m│\u001b[39m\u001b[39m none \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Auto-assign PR author \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Auto-add a CONFLICT label to PRs \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mDocumentation\u001b[22m\u001b[39m "] +[49.851409, "o", " \u001b"] +[49.851681, "o", "[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Preserve project documentation \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mAI\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m AI agent instructions \u001b[39m\u001b[90m│\u001b[39m\u001b[39m Yes \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[36m\u001b[1mLocations\u001b[22m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Current directory \u001b[39m\u001b[90m│\u001b[39m\u001b[39m /home/user/vortex/.art\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m ifacts/tmp/videos-workspace \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Destination directory \u001b[39m\u001b[90m│\u001b[39m\u001b[39m /home/user/www/"] +[49.851896, "o", "drevops/vortex/.art\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m ifacts/tmp/videos-workspace/star_w\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\u001b[39m ars \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Vortex repository \u001b[39m\u001b[90m│\u001b[39m\u001b[39m /home/user/vortex \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Vortex reference \u001b[39m\u001b[90m│\u001b[39m\u001b[39m HEAD \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└────────────────────────────────────┴────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n Vortex will be installed into your project's directory \"/home/user/demo/star_wars\"\r\r\n"] +[51.854357, "o", "\u001b[?25l\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mProceed with installing Vortex?\u001b[39m \u001b[90m─────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[32m●\u001b[39m Yes \u001b[2m/ ○ No\u001b[22m \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[53.857942, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mProceed with installing Vortex?\u001b[22m \u001b[90m─────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m Yes \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h\r\r\n \u001b[46m\u001b[30m Starting project installation \u001b[39m\u001b[49m\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mDownloading Vortex\u001b[39m\r\r\n\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mDownloading Vortex\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Downloading Vortex\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mDownloading from \"/home/user/vortex\" repository at ref\u001b[22m\r\r\n \u001b[2m\"HEAD\"\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Vortex downloaded (develop)\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mCustomizing Vortex for your project\u001b[39m\r\r\n\u001b[1G\u001b["] +[53.857952, "o", "2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mCustom"] +[54.862011, "o", "izing Vortex for your project\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Customizing Vortex for your project\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Vortex was customized for your project\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mPreparing destination directory\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Preparing destination directory\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mCreated directory \"/home/user/demo/star_wars\".\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mInitializing a new Git repository in directory \"/home/user/demo/star_wars\".\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Destination directory is ready\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\u001b[?25l\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mCopying files to the destination directory\u001b[39m\r\r\n\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mCopying files to the destination directory\u001b[39m\r\r\n\u001b[999D\u001b[2A\u001b[J\u001b[?25h\r\r\n \u001b[34m✦ Copying files to the destination directory\u001b[39m\r\r\n\r\r\n\r\r\n "] +[54.86202, "o", "\u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Files copied to "] +[54.862118, "o", "destination directory\u001b[39m\r\r\n\r\r\n"] +[54.862239, "o", "\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] +[54.862339, "o", "\u001b[?25l"] +[54.866561, "o", "\r\r\n \u001b[36m⠂\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[54.951965, "o", "\u001b[1G\u001b[2A\u001b[J"] +[54.952041, "o", "\r\r\n \u001b[36m⠒\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.032086, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠐\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.113189, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠰\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.192874, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠠\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.275216, "o", "\u001b[1G\u001b[2A\u001b[J\r\r\n \u001b[36m⠤\u001b[39m \u001b[33mPreparing demo content\u001b[39m\r\r\n"] +[55.355266, "o", "\u001b[999D\u001b[2A\u001b[J\u001b[?25h"] +[55.355394, "o", "\r\r\n \u001b[34m✦ Preparing demo content\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mCreated data directory \"/home/user/demo/star_wars/.data\".\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] +[55.35552, "o", "\r\r\n \u001b[2mNo database dump file was found in \"/home/user/demo/star_wars/.data\" directory.\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[2mFetched demo database from https://github.com/drevops/vortex/releases/download/1.40.0/db.demo.sql.\u001b[22m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n\r\r\n \u001b[32m✓ Demo content prepared\u001b[39m\r\r\n\r\r\n\r\r\n \u001b[A\u001b[A\u001b[A\u001b[A\r\r\n\r\r\n"] +[55.358498, "o", "\r\r\n \u001b[90m┌───────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32mFinished installing Vortex\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32m──────────────────────────\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Add and commit all files:\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m git add -A\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m git commit -m \"Initial commit.\"\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└───────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[55.380454, "o", "\u001b[?25l"] +[55.384132, "o", "\r\r\n\u001b[90m ┌\u001b[39m \u001b[36mRun the site build now?\u001b[39m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m \u001b[2m○ Yes /\u001b[22m \u001b[32m●\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\u001b[90m Takes ~5-10 min; output will be streamed. You can skip and run later with…\u001b[39m\r\r\n"] +[57.398938, "o", "\u001b[1G\u001b[5A\u001b[J\r\r\n\u001b[90m ┌\u001b[39m \u001b[2mRun the site build now?\u001b[22m \u001b[90m─────────────────────────────────────┐\u001b[39m\r\r\n\u001b[90m │\u001b[39m No \u001b[90m│\u001b[39m\r\r\n\u001b[90m └──────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n\u001b[?25h"] +[57.415584, "o", "\r\r\n \u001b[90m┌────────────────────────────────────────────────────────────────────────────┐\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32mReady to build\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[32m──────────────\u001b[39m\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Build the site:\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m ahoy build\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m"] +[57.415593, "o", "│\u001b[39"] +[57.415726, "o", "m\r\r\n \u001b[90m│\u001b[39m\u001b[39m Setup GitHub Actions:\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m https://www.vortextemplate.com/docs/continuous-integration/github-actions#\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m onboarding\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m│\u001b[39m\u001b[39m \u001b[39m\u001b[90m│\u001b[39m\r\r\n \u001b[90m└────────────────────────────────────────────────────────────────────────────┘\u001b[39m\r\r\n\r\r\n"] +[57.427647, "x", "0"] diff --git a/.vortex/docs/static/img/installer.png b/.vortex/docs/static/img/installer.png index 821fd397f5..4655073e4c 100644 Binary files a/.vortex/docs/static/img/installer.png and b/.vortex/docs/static/img/installer.png differ diff --git a/.vortex/docs/static/img/installer.svg b/.vortex/docs/static/img/installer.svg index ea71dbbbc7..268ed553f9 100644 --- a/.vortex/docs/static/img/installer.svg +++ b/.vortex/docs/static/img/installer.svg @@ -1 +1 @@ -──────────────────────────────────────────────────────────────────────────────██╗██╗██████╗██████╗████████╗███████╗██╗██╗██║██║██╔═══██╗██╔══██╗╚══██╔══╝██╔════╝╚██╗██╔╝██║██║██║██║██████╔╝██║█████╗╚███╔╝╚██╗██╔╝██║██║██╔══██╗██║██╔══╝██╔██╗╚████╔╝╚██████╔╝██║██║██║███████╗██╔╝██╗╚═══╝╚═════╝╚═╝╚═╝╚═╝╚══════╝╚═╝╚═╝DrupalprojecttemplatebyDrevOpsInstallerversion:development┌───────────────────────────────────────────────────────────────────────┐WelcometotheVortexinteractiveinstaller───────────────────────────────────────────ThistoolwillguideyouthroughinstallingthelatestdevelopmentversionofVortexintoyourproject.Youwillbeaskedafewquestionstotailortheconfigurationtoyoursite.Nochangeswillbemadeuntilyouconfirmeverythingattheend.PressCtrl+Catanytimetoexittheinstaller.PressCtrl+Uatanytimetogobacktothepreviousstep.└────────────────────────────────────────────└───────────────────────────────────────────────└───────────────────────────────────────────────────────────────────────┘ValidatingrepositoryandreferenceCheckingrepository"/home/user/vortex"andreference"HEAD"RepositoryandreferencevalidatedsuccessfullyPressanykeytocontinue... General information Sitename(1/36)────────────────────────────────────────────┐└──────────────────────────────────────────────────────────────┘Wewillusethisnameintheprojectanddocumentation.E.g.MySiteSt Sitename(1/36)────────────────────────────────────────────┐StarWarsstar_wars Sitemachinename(2/36)────────────────────────────────────┐star_warsOrganizationname(3/36)────────────────────────────────────┐E.g.MyOrgRe Organizationname(3/36)────────────────────────────────────┐RebellionOrganizationmachinename(4/36)────────────────────────────┐rebellion Wewillusethisnameinthecode.Organizationmachinename(4/36)────────────────────────────┐rebellionPublicdomain(5/36)────────────────────────────────────────┐star-wars.com Publicdomain(5/36)────────────────────────────────────────┐star-wars.com Drupal Howwouldyoulikeyoursitetobecreatedonthefirstrun?(6/36)Choosehowyoursitewillbecreatedthefirsttimeafterthisinstallerfinishes:Drupal,installedfromprofileCreatesanewsitebypopulatingafreshdatabasefromoneofthestandardDrupalinstallationprofiles.DrupalCMS,installedfromprofilefromtheDrupalCMSrecipe.Drupal,loadedfromthedemodatabaseCreatesasitebyloadinganexistingdemodatabaseprovidedwiththeinstaller.├─────────────────────────────────────────────────────────────────────┤Drupal,installedfromprofileDrupalCMS,installedfromprofileDrupal,loadedfromthedemodatabase└─────────────────────────────────────────────────────────────────────┘Howwouldyoulikeyoursitetobecreatedonthefirstrun?(6/36)Drupal,loadedfromthedemodatabaseDrupal,loadedfromthedemodatabaseProfile(7/36)──────────────────────────────────────────────┐StandardModules(8/36)──────────────────────────────────────────────┐CoffeeConfigsplitConfigupdateDevelDrupalhelpersEnvironmentindicatorGeneratedcontentNavigationextratoolsPathautoRedirectModules(8/36)──────────────────────────────────────────────┐CoffeeConfigsplitConfigupdateDevelDrupalhelpersEnvironmentindicatorGeneratedcontentNavigationextratoolsPathautoRedirectRerouteemailRobots.txtSDCDevelSeckitShieldStagefileproxyTestmodeXMLSitemapCustommodulesprefix(9/36)────────────────────────────────┐swCustommodules(10/36)─────────────────────────────────────────────┐Selectwhichcustommodulestoincludeinyourproject:BaseStartermodulewithcommonsiteutilities(mailhandling,deployhooks)andtestscaffoldingforUnit,Kernel,Functional,andFunctionalJavascripttests.SearchCustomSolrsearchintegrationmodule.RequirestheSolrservicetobeselected.DemoDemonstrateshowVortextoolingworks:includesacounterblockwithCSS/JS,PHPUnitexampletestsacrossalltesttypes,andaBehatfeature.Safetoremoveonrealprojects.Base-startermodulewithutilitiesandtestscaffoldingSearch-customSolrsearchintegrationDemo-counterblockandexampleteststodemonstratetoolingUse⬆,andSpacebartoselectoneormoremodules.Custommodules(10/36)────────────────────────────────────────────┐Selectwhichcustommodulestoincludeinyourproject:BaseStartermodulewithcommonsiteutilities(mailhandling,deployhooks)andtestscaffoldingforUnit,Kernel,Functional,andFunctionalJavascripttests.SearchCustomSolrsearchintegrationmodule.RequirestheSolrservicetobeselected.DemoDemonstrateshowVortextoolingworks:includesacounterblockwithCSS/JS,PHPUnitexampletestsacrossalltesttypes,andaBehatfeature.Safetoremoveonrealprojects.├────────────────────────────────────────────────────────────────────┤Base-startermodulewithutilitiesandtestscaffoldingSearch-customSolrsearchintegrationDemo-counterblockandexampleteststodemonstratetooling└────────────────────────────────────────────────────────────────────┘Theme(11/36)───────────────────────────────────────────────┐Custom(nextprompt)Customthememachinename(12/36)───────────────────────────┐Customthememachinename(12/36)───────────────────────────┐Buildfront-endassetsinthecontainer?(13/36)────────────┐Yes/NoDisabletobuildthemeassetsonthehostoraspartofdeployment.Buildfront-endassetsinthecontainer?(13/36)────────────┐Yes Code repository Repositoryprovider(14/36)─────────────────────────────────┐VortexoffersfullautomationwithGitHub,whilesupportforotherprovidersislimited.├──────────────────────────────────────────────────────────────┤OtherRepositoryprovider(14/36)─────────────────────────────────┐GitHubReleaseversioningscheme(15/36)───────────────────────────┐Chooseyourversioningscheme:CalendarVersioning(CalVer)year.month.patch(E.g.,24.1.0)https://calver.orgSemanticVersioning(SemVer)major.minor.patch(E.g.,1.0.0)major.minor.patch(E.g.,1.0.0)https://semver.orgOtherCustomversioningschemeofyourchoice.CalendarVersioning(CalVer)SemanticVersioning(SemVer)Releaseversioningscheme(15/36)───────────────────────────┐CalendarVersioning(CalVer) Environment Timezone(16/36)────────────────────────────────────────────┐UTCServices(17/36)────────────────────────────────────────────┐ClamAVSolrRedisServices(17/36)────────────────────────────────────────────┐ClamAVSolrRedisDevelopmenttools(18/36)───────────────────────────────────┐PHPCodeSnifferPHPStanRectorESLintStylelintJestPHPUnitBehatTwigCSFixerDCLintDevelopmenttools(18/36)───────────────────────────────────┐PHPCodeSnifferPHPStanRectorESLintStylelintJestJestPHPUnitBehatTwigCSFixerDCLintHadolint Hosting Hostingprovider(19/36)Hostingprovider(19/36)────────────────────────────────────┐NoneCustomwebrootdirectory(20/36)───────────────────────────┐web Deployment Deploymenttypes(21/36)────────────────────────────────────┐Customwebhook Workflow Provisiontype(22/36)──────────────────────────────────────┐Provisioningsetsupthesiteinanenvironmentusinganalreadyassembledcodebase.ImportfromdatabasedumpProvisionsthesitebyimportingadatabasedumptypicallycopiedfromproductionintolowerenvironments.InstallfromprofileProvisionsthesitebyinstallingafreshDrupalsitefromaprofileeverytimeanenvironmentiscreated.ImportfromdatabasedumpInstallfromprofileProvisiontype(22/36)──────────────────────────────────────┐ImportfromdatabasedumpDatabasesource(23/36)─────────────────────────────────────┐URLdownloadFTPdownloadAcquiabackupLagoonenvironmentContainerregistryS3bucketNoneDatabasesource(23/36)─────────────────────────────────────┐URLdownloadUseaseconddatabaseformigrations?(24/36)───────────────┐Yes/NoUseaseconddatabaseformigrations?(24/36)───────────────┐No Notifications Notificationchannels(25/36)───────────────────────────────┐EmailGitHubJIRANotificationchannels(25/36)───────────────────────────────┐Email Continuous Integration ContinuousIntegrationprovider(26/36)─────────────────────┐GitHubActionsCircleCINoneContinuousIntegrationprovider(26/36)─────────────────────┐GitHubActionsVisualregressiontestingwithDiffy?(27/36)───────────────┐Diffy-poweredvisualregressionworkflowtocomparedeployedenvironments.Automaticallytriggerscomparisonsfordependency-updatepullrequestsmatchingtheconfiguredbranchpattern(`deps/*`bydefault).Runscomparisonsforpullrequeststaggedwiththe`VR`labelandpostsastickycomment.AlsosupportsmanualrunsagainstanyURL.VisualregressiontestingwithDiffy?(27/36)───────────────┐ScanforcommittedsecretswithGitleaks?(28/36)───────────┐ Automations Dependencyupdatesprovider(29/36)─────────────────────────┐RenovateGitHubappCodecoverageprovider(30/36)──────────────────────────────┐Auto-assigntheauthortotheirPR?(31/36)─────────────────┐└─────────────────────────────────────────────────────────────────┘Auto-addaCONFLICTlabeltoaPRwhenconflictsoccur?(32/36)Yes Documentation Preserveprojectdocumentation?(33/36)─────────────────────┐Preserveprojectdocumentation?(33/36)─────────────────────┐ AI ProvideAIagentinstructions?(34/36)──────────────────────┐ProvideAIagentinstructions?(34/36)──────────────────────┐ Installation summary ┌────────────────────────────────────┬────────────────────────────────────┐GeneralinformationSitenameStarWarsSitemachinenamestar_warsOrganizationnameRebellionOrganizationmachinenamerebellionPublicdomainstar-wars.comDrupalStarterload_demodbModulescoffee,config_split,config_update,devel,drupal_helpers,environment_indicator,generated_content,navigation_extra_tools,pathauto,redirect,reroute_email,robotstxt,sdc_devel,seckit,shield,stage_file_proxy,testmode,xmlsitemapWebrootwebProfilestandardModuleprefixswCustommodulesbase,search,demoThememachinenamestar_warsBuildfront-endincontainerYesCoderepositoryCodeprovidergithubVersionschemecalverEnvironmentTimezoneUTCServicesclamav,redis,solrToolsbehat,dclint,eslint,hadolint,jest,phpcs,phpstan,phpunit,rector,stylelint,twig_cs_fixerHostingHostingprovidernoneDeploymentDeploymenttypeswebhookWorkflowWorkflowProvisiontypedatabaseDatabasesourceurlMigrationdatabaseNoNotificationsChannelsemailContinuousIntegrationCIproviderghaVisualregressiontestingNoSecretscanningwithGitleaksYesAutomationsDependencyupdatesproviderrenovatebot_appCodecoverageprovidernoneAuto-assignPRauthorYesAuto-addaCONFLICTlabeltoPRsYesDocumentationDocumentationPreserveprojectdocumentationYesAIAIagentinstructionsYesLocationsCurrentdirectory/home/user/vortex/.artifacts/tmp/videos-workspaceDestinationdirectory/home/user/www/drevops/vortex/.artifacts/tmp/videos-workspace/star_warsVortexrepository/home/user/vortexVortexreferenceHEAD└────────────────────────────────────┴────────────────────────────────────┘Vortexwillbeinstalledintoyourproject'sdirectory"/home/user/demo/star_wars"ProceedwithinstallingVortex?─────────────────────────────┐ Starting project installation DownloadingVortexDownloadingfrom"/home/user/vortex"repositoryatrefVortexdownloaded(develop)CustomizingVortexforyourprojectVortexwascustomizedforyourprojectPreparingdestinationdirectoryCreateddirectory"/home/user/demo/star_wars".InitializinganewGitrepositoryindirectory"/home/user/demo/star_wars".DestinationdirectoryisreadyCopyingfilestothedestinationdirectoryFilescopiedtodestinationdirectoryPreparingdemocontentPreparingdemocontentPreparingdemocontentCreateddatadirectory"/home/user/demo/star_wars/.data".Nodatabasedumpfilewasfoundin"/home/user/demo/star_wars/.data"directory.Fetcheddemodatabasefromhttps://github.com/drevops/vortex/releases/download/1.40.0/db.demo.sql.Democontentprepared┌───────────────────────────────────┐FinishedinstallingVortex──────────────────────────Addandcommitallfiles:gitadd-Agitcommit-m"Initialcommit."└───────────────────────────────────┘Runthesitebuildnow?─────────────────────────────────────┐┌────────────────────────────────────────────────────────────────────────────┐Readytobuild──────────────Buildthesite:ahoybuild╚████╔╝╚██████╔╝██║██║╚████╔╝╚██████╔╝██║██║██Validatingrepositoryandreferencestarwars └──────────────────────────────────└────────────────────────────────────St StarWars Sitemachinename(2/36)────────────────────────────────────┐Wewillusethisnamefortheprojectdirectoryandinthecode.StarWarsOrg └─────└─────────Rebellion WewillusethisnameinthecoDomainnamewithoutproDomainnamewithoutprotocolandDomainnamewithoutprotocolandtrailingslash.CreatesasitebyloadinCreatesasitebyloadinganexist└────────────────────────────────────────────────────────────└──────────────────────────────────────────────────────────────Useand⬇.Appliesonlyonthefirstrunoftheinstaller.DrupalCMS,installedfromprofileProfile(7/36)──────────────────────────────────────────────┐StandardMinimalDemoUmamiCustom(nextprompt)UseandtoselectwhichDrupalprofiletouse.ConfigupdaConfigupdate└───────────────────────└──────────────────────────└────└───────├──────────────────────────────────────├─────────────────────────────────────────Se├──────────────────────────────────────────────├─────────────────────────────────────────────────Theme(11/36)───────────────────────────────────────────────┐OliveroClaroStarkCustom(nextprompt)UseandtoselectwhichDrupalthemetouse.WewilluseWewillusethisnamWewillusethisnameasacustomthemenameGitHubUseandtoselectyourcoderepositoryprovider.└────────────────────────────────────────────────────└───────────────────────────────────────────────────────OtherUseandtoselectyourversionscheme.Timezone(16/36)────────────────────────────────────────────┐UTC UTCUseand⬇,orstarttypingtoselectthetimezoneforyourproject.RedisUse⬆,andSpacebartoselectoneormoreservices.Deploymenttypes(21/36)───────────────────────────────Deploymenttypes(21/36)───────────────────────────────────└────────────────────────└───────────────────────────Useandtoselecttheprovisiontype.└───────────└──────────────Useandtoselectthedatabasefetchsource.AddsaseconddatabaseserviceforDrupaAddsaseconddatabaseserviceforDrupalmigratiAddsaseconddatabaseserviceforDrupalmigrations.NewRelicSlackWebhookUse⬆,andSpacebartoselectoneormorenotificationchannels.UseandtoselecttheCIprovider.AutomaticallytrigAutomaticallytriggerscomparYes/Yes/└────────────────────────────└───────────────────────────────└─────────────────────────────────────────RenRenovateGitHub└───────────────────└──────────────────────Auto-addAuto-addaCONFLICTAuto-addaCONFLICTlabeltoaPRwhenconflictsoccur?(32/36)Yes/NoHelpstokeepquicklyidentifyPRsthatneedattention.HelpstomaintaintheprojectdocumentationHelpstomaintaintheprojectdocumentationwithintheHelpstomaintaintheprojectdocumentationwithintherepository.ProvidesAIcodingagentsProvidesAIcodingagentswithbetterProvidesAIcodingagentswithbettercontextabouttheproject.ModulescofModulescoffee,corobotstxt,sdc_deverobotstxt,sdc_devel,seckBuildfBuildfront-endToolsToolsbehat,Destinationdirectory/home/user/www/ProceedwithinstallingVortex?─────────────────────────────┐CustomizingVortexforyourprojectCustomFilescopiedtoPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentRunthesitebuildnow?─────────────────────────────────────┐Takes~5-10min;outputwillbestreamed.Youcanskipandrunlaterwith…SetupGitHubActions:https://www.vortextemplate.com/docs/continuous-integration/github-actions#onboarding└────────────────────────────────────────────────────────────────────────────┘ \ No newline at end of file +──────────────────────────────────────────────────────────────────────────────██╗██╗██████╗██████╗████████╗███████╗██╗██╗██║██║██╔═══██╗██╔══██╗╚══██╔══╝██╔════╝╚██╗██╔╝██║██║██║██║██████╔╝██║█████╗╚███╔╝╚██╗██╔╝██║██║██╔══██╗██║██╔══╝██╔██╗╚████╔╝╚██████╔╝██║██║██║███████╗██╔╝██╗╚═══╝╚═════╝╚═╝╚═╝╚═╝╚══════╝╚═╝╚═╝DrupalprojecttemplatebyDrevOpsInstallerversion:development┌───────────────────────────────────────────────────────────────────────┐WelcometotheVortexinteractiveinstaller───────────────────────────────────────────ThistoolwillguideyouthroughinstallingthelatestdevelopmentversionofVortexintoyourproject.Youwillbeaskedafewquestionstotailortheconfigurationtoyoursite.Nochangeswillbemadeuntilyouconfirmeverythingattheend.PressCtrl+Catanytimetoexittheinstaller.PressCtrl+Uatanytimetogobacktothepreviousstep.└────────────────────────────────────────────└───────────────────────────────────────────────└───────────────────────────────────────────────────────────────────────┘ValidatingrepositoryandreferenceCheckingrepository"/home/user/vortex"andreference"HEAD"RepositoryandreferencevalidatedsuccessfullyPressanykeytocontinue... General information Sitename(1/36)────────────────────────────────────────────┐└──────────────────────────────────────────────────────────────┘Wewillusethisnameintheprojectanddocumentation.E.g.MySiteSt Sitename(1/36)────────────────────────────────────────────┐StarWarsstar_wars Sitemachinename(2/36)────────────────────────────────────┐star_warsOrganizationname(3/36)────────────────────────────────────┐E.g.MyOrgRe Organizationname(3/36)────────────────────────────────────┐RebellionOrganizationmachinename(4/36)────────────────────────────┐rebellion Wewillusethisnameinthecode.Organizationmachinename(4/36)────────────────────────────┐rebellionPublicdomain(5/36)────────────────────────────────────────┐star-wars.com Publicdomain(5/36)────────────────────────────────────────┐star-wars.com Drupal Howwouldyoulikeyoursitetobecreatedonthefirstrun?(6/36)Choosehowyoursitewillbecreatedthefirsttimeafterthisinstallerfinishes:Drupal,installedfromprofileCreatesanewsitebypopulatingafreshdatabasefromoneofthestandardDrupalinstallationprofiles.DrupalCMS,installedfromprofilefromtheDrupalCMSrecipe.Drupal,loadedfromthedemodatabaseCreatesasitebyloadinganexistingdemodatabaseprovidedwiththeinstaller.├─────────────────────────────────────────────────────────────────────┤Drupal,installedfromprofileDrupalCMS,installedfromprofileDrupal,loadedfromthedemodatabase└─────────────────────────────────────────────────────────────────────┘Howwouldyoulikeyoursitetobecreatedonthefirstrun?(6/36)Drupal,loadedfromthedemodatabaseDrupal,loadedfromthedemodatabaseProfile(7/36)──────────────────────────────────────────────┐StandardModules(8/36)──────────────────────────────────────────────┐CoffeeConfigsplitConfigupdateDevelDrupalhelpersEnvironmentindicatorGeneratedcontentNavigationextratoolsPathautoRedirectModules(8/36)──────────────────────────────────────────────┐CoffeeConfigsplitConfigupdateDevelDrupalhelpersEnvironmentindicatorGeneratedcontentNavigationextratoolsPathautoRedirectRerouteemailRobots.txtSDCDevelSeckitShieldStagefileproxyTestmodeXMLSitemapCustommodulesprefix(9/36)────────────────────────────────┐swCustommodules(10/36)─────────────────────────────────────────────┐Selectwhichcustommodulestoincludeinyourproject:BaseStartermodulewithcommonsiteutilities(mailhandling,deployhooks)andtestscaffoldingforUnit,Kernel,Functional,andFunctionalJavascripttests.SearchCustomSolrsearchintegrationmodule.RequirestheSolrservicetobeselected.DemoDemonstrateshowVortextoolingworks:includesacounterblockwithCSS/JS,PHPUnitexampletestsacrossalltesttypes,andaBehatfeature.Safetoremoveonrealprojects.Custommodules(10/36)────────────────────────────────────────────┐Selectwhichcustommodulestoincludeinyourproject:BaseStartermodulewithcommonsiteutilities(mailhandling,deployhooks)andtestscaffoldingforUnit,Kernel,Functional,andFunctionalJavascripttests.SearchCustomSolrsearchintegrationmodule.RequirestheSolrservicetobeselected.DemoDemonstrateshowVortextoolingworks:includesacounterblockwithCSS/JS,PHPUnitexampletestsacrossalltesttypes,andaBehatfeature.Safetoremoveonrealprojects.├────────────────────────────────────────────────────────────────────┤Base-startermodulewithutilitiesandtestscaffoldingSearch-customSolrsearchintegrationDemo-counterblockandexampleteststodemonstratetooling└────────────────────────────────────────────────────────────────────┘Theme(11/36)───────────────────────────────────────────────┐Custom(nextprompt)Customthememachinename(12/36)───────────────────────────┐Customthememachinename(12/36)───────────────────────────┐Buildfront-endassetsinthecontainer?(13/36)────────────┐Yes/NoDisabletobuildthemeassetsonthehostoraspartofdeployment.Buildfront-endassetsinthecontainer?(13/36)────────────┐Yes Code repository Repositoryprovider(14/36)─────────────────────────────────┐VortexoffersfullautomationwithGitHub,whilesupportforotherprovidersislimited.├──────────────────────────────────────────────────────────────┤OtherRepositoryprovider(14/36)─────────────────────────────────┐GitHubReleaseversioningscheme(15/36)───────────────────────────┐Chooseyourversioningscheme:CalendarVersioning(CalVer)year.month.patch(E.g.,24.1.0)https://calver.orgSemanticVersioning(SemVer)major.minor.patch(E.g.,1.0.0)major.minor.patch(E.g.,1.0.0)https://semver.orgOtherCustomversioningschemeofyourchoice.CalendarVersioning(CalVer)SemanticVersioning(SemVer)Releaseversioningscheme(15/36)───────────────────────────┐CalendarVersioning(CalVer) Environment Timezone(16/36)────────────────────────────────────────────┐UTCServices(17/36)────────────────────────────────────────────┐ClamAVSolrRedisServices(17/36)────────────────────────────────────────────┐ClamAVSolrRedisDevelopmenttools(18/36)───────────────────────────────────┐PHPCodeSnifferPHPStanRectorESLintStylelintJestPHPUnitBehatTwigCSFixerDCLintDevelopmenttools(18/36)───────────────────────────────────┐PHPCodeSnifferPHPStanRectorESLintStylelintJestJestPHPUnitBehatTwigCSFixerDCLintHadolint Hosting Hostingprovider(19/36)Hostingprovider(19/36)────────────────────────────────────┐NoneCustomwebrootdirectory(20/36)───────────────────────────┐web Deployment Deploymenttypes(21/36)────────────────────────────────────┐Customwebhook Workflow Provisiontype(22/36)──────────────────────────────────────┐Provisioningsetsupthesiteinanenvironmentusinganalreadyassembledcodebase.ImportfromdatabasedumpProvisionsthesitebyimportingadatabasedumptypicallycopiedfromproductionintolowerenvironments.InstallfromprofileProvisionsthesitebyinstallingafreshDrupalsitefromaprofileeverytimeanenvironmentiscreated.ImportfromdatabasedumpInstallfromprofileProvisiontype(22/36)──────────────────────────────────────┐ImportfromdatabasedumpDatabasesource(23/36)─────────────────────────────────────┐URLdownloadFTPdownloadAcquiabackupLagoonenvironmentContainerregistryS3bucketNoneDatabasesource(23/36)─────────────────────────────────────┐URLdownloadUseaseconddatabaseformigrations?(24/36)───────────────┐Yes/NoUseaseconddatabaseformigrations?(24/36)───────────────┐No Notifications Notificationchannels(25/36)───────────────────────────────┐EmailGitHubJIRANotificationchannels(25/36)───────────────────────────────┐Email Continuous Integration ContinuousIntegrationprovider(26/36)─────────────────────┐GitHubActionsCircleCINoneContinuousIntegrationprovider(26/36)─────────────────────┐GitHubActionsVisualregressiontestingwithDiffy?(27/36)───────────────┐Diffy-poweredvisualregressionworkflowtocomparedeployedenvironments.Automaticallytriggerscomparisonsfordependency-updatepullrequestsmatchingtheconfiguredbranchpattern(`deps/*`bydefault).Runscomparisonsforpullrequeststaggedwiththe`VR`labelandpostsastickycomment.AlsosupportsmanualrunsagainstanyURL.VisualregressiontestingwithDiffy?(27/36)───────────────┐ScanforcommittedsecretswithGitleaks?(28/36)───────────┐ Automations Dependencyupdatesprovider(29/36)─────────────────────────┐RenovateGitHubappCodecoverageprovider(30/36)──────────────────────────────┐Auto-assigntheauthortotheirPR?(31/36)─────────────────┐└─────────────────────────────────────────────────────────────────┘Auto-addaCONFLICTlabeltoaPRwhenconflictsoccur?(32/36)Yes Documentation Preserveprojectdocumentation?(33/36)─────────────────────┐Preserveprojectdocumentation?(33/36)─────────────────────┐ AI ProvideAIagentinstructions?(34/36)──────────────────────┐ProvideAIagentinstructions?(34/36)──────────────────────┐ Installation summary ┌────────────────────────────────────┬────────────────────────────────────┐GeneralinformationSitenameStarWarsSitemachinenamestar_warsOrganizationnameRebellionOrganizationmachinenamerebellionPublicdomainstar-wars.comDrupalStarterload_demodbModulescoffee,config_split,config_update,devel,drupal_helpers,environment_indicator,generated_content,navigation_extra_tools,pathauto,redirect,reroute_email,robotstxt,sdc_devel,seckit,shield,stage_file_proxy,testmode,xmlsitemapWebrootwebProfilestandardModuleprefixswCustommodulesbase,search,demoThememachinenamestar_warsBuildfront-endincontainerYesCoderepositoryCodeprovidergithubVersionschemecalverEnvironmentTimezoneUTCServicesclamav,redis,solrToolsbehat,dclint,eslint,hadolint,jest,phpcs,phpstan,phpunit,rector,stylelint,twig_cs_fixerHostingHostingprovidernoneDeploymentDeploymenttypeswebhookWorkflowWorkflowProvisiontypedatabaseDatabasesourceurlMigrationdatabaseNoNotificationsChannelsemailContinuousIntegrationCIproviderghaVisualregressiontestingNoSecretscanningwithGitleaksYesAutomationsDependencyupdatesproviderrenovatebot_appCodecoverageprovidernoneAuto-assignPRauthorYesAuto-addaCONFLICTlabeltoPRsYesDocumentationDocumentationPreserveprojectdocumentationYesAIAIagentinstructionsYesLocationsCurrentdirectory/home/user/vortex/.artifacts/tmp/videos-workspaceDestinationdirectory/home/user/www/drevops/vortex/.artifacts/tmp/videos-workspace/star_warsVortexrepository/home/user/vortexVortexreferenceHEAD└────────────────────────────────────┴────────────────────────────────────┘Vortexwillbeinstalledintoyourproject'sdirectory"/home/user/demo/star_wars"ProceedwithinstallingVortex?─────────────────────────────┐ Starting project installation DownloadingVortexDownloadingfrom"/home/user/vortex"repositoryatrefVortexdownloaded(develop)CustomizingVortexforyourprojectVortexwascustomizedforyourprojectPreparingdestinationdirectoryCreateddirectory"/home/user/demo/star_wars".InitializinganewGitrepositoryindirectory"/home/user/demo/star_wars".DestinationdirectoryisreadyCopyingfilestothedestinationdirectoryFilescopiedtodestinationdirectoryPreparingdemocontentCreateddatadirectory"/home/user/demo/star_wars/.data".Nodatabasedumpfilewasfoundin"/home/user/demo/star_wars/.data"directory.Fetcheddemodatabasefromhttps://github.com/drevops/vortex/releases/download/1.40.0/db.demo.sql.Democontentprepared┌───────────────────────────────────┐FinishedinstallingVortex──────────────────────────Addandcommitallfiles:gitadd-Agitcommit-m"Initialcommit."└───────────────────────────────────┘Runthesitebuildnow?─────────────────────────────────────┐┌────────────────────────────────────────────────────────────────────────────┐Readytobuild──────────────Buildthesite:ahoybuild╚████╔╝╚██████╔╝██║██║╚████╔╝╚██████╔╝██║██║██Validatingrepositoryandreferencestarwars └──────────────────────────────────└────────────────────────────────────St StarWars Sitemachinename(2/36)────────────────────────────────────┐Wewillusethisnamefortheprojectdirectoryandinthecode.StarWarsOrg └─────└─────────Rebellion WewillusethisnameinthecoDomainnamewithoutproDomainnamewithoutprotocolandDomainnamewithoutprotocolandtrailingslash.CreatesasitebyloadinCreatesasitebyloadinganexist└────────────────────────────────────────────────────────────└──────────────────────────────────────────────────────────────Useand⬇.Appliesonlyonthefirstrunoftheinstaller.DrupalCMS,installedfromprofileProfile(7/36)──────────────────────────────────────────────┐StandardMinimalDemoUmamiCustom(nextprompt)UseandtoselectwhichDrupalprofiletouse.ConfigupdaConfigupdate└───────────────────────└──────────────────────────└────└───────├──────────────────────────────────────├─────────────────────────────────────────Base-startermodulewithutilitiesandtestscaffoldingSearch-customSolrsearchintegrationDemo-counterblockandexampleteststodemonstratetoolingUse⬆,andSpacebartoselectoneormoremodules.Searc├───────────────────────────────────────────────├──────────────────────────────────────────────────Theme(11/36)───────────────────────────────────────────────┐OliveroClaroStarkCustom(nextprompt)UseandtoselectwhichDrupalthemetouse.WewilluseWewillusethisnamWewillusethisnameasacustomthemenameGitHubUseandtoselectyourcoderepositoryprovider.└────────────────────────────────────────────────────└───────────────────────────────────────────────────────OtherUseandtoselectyourversionscheme.Timezone(16/36)────────────────────────────────────────────┐UTC UTCUseand⬇,orstarttypingtoselectthetimezoneforyourproject.RedisUse⬆,andSpacebartoselectoneormoreservices.Deploymenttypes(21/36)───────────────────────────────Deploymenttypes(21/36)───────────────────────────────────└────────────────────────└───────────────────────────Useandtoselecttheprovisiontype.└───────────└──────────────Useandtoselectthedatabasefetchsource.AddsaseconddatabaseserviceforDrupaAddsaseconddatabaseserviceforDrupalmigratiAddsaseconddatabaseserviceforDrupalmigrations.NewRelicSlackWebhookUse⬆,andSpacebartoselectoneormorenotificationchannels.UseandtoselecttheCIprovider.AutomaticallytrigAutomaticallytriggerscomparYes/Yes/└────────────────────────────└───────────────────────────────└─────────────────────────────────────────RenRenovateGitHub└───────────────────└──────────────────────Auto-addAuto-addaCONFLICTAuto-addaCONFLICTlabeltoaPRwhenconflictsoccur?(32/36)Yes/NoHelpstokeepquicklyidentifyPRsthatneedattention.HelpstomaintaintheprojectdocumentationHelpstomaintaintheprojectdocumentationwithintheHelpstomaintaintheprojectdocumentationwithintherepository.ProvidesAIcodingagentsProvidesAIcodingagentswithbetterProvidesAIcodingagentswithbettercontextabouttheproject.ModulescofModulescoffee,corobotstxt,sdc_deverobotstxt,sdc_devel,seckBuildfBuildfront-endToolsToolsbehat,Destinationdirectory/home/user/www/ProceedwithinstallingVortex?─────────────────────────────┐CustomizingVortexforyourprojectCustomFilescopiedtoPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentPreparingdemocontentRunthesitebuildnow?─────────────────────────────────────┐Takes~5-10min;outputwillbestreamed.Youcanskipandrunlaterwith…SetupGitHubActions:https://www.vortextemplate.com/docs/continuous-integration/github-actions#onboarding└────────────────────────────────────────────────────────────────────────────┘ \ No newline at end of file diff --git a/.vortex/docs/static/img/lint.json b/.vortex/docs/static/img/lint.json index 49195fd4e9..0e53cd97ce 100644 --- a/.vortex/docs/static/img/lint.json +++ b/.vortex/docs/static/img/lint.json @@ -1,49 +1,48 @@ -{"version":2,"width":80,"height":42,"timestamp":1787192719,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy lint'","title":"Vortex ahoy lint Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} -[0.034539,"o","$ "] -[0.287086,"o","a"] -[0.314593,"o","h"] -[0.342127,"o","o"] -[0.369659,"o","y"] -[0.397185,"o"," "] -[0.424772,"o","l"] -[0.451698,"o","i"] -[0.479403,"o","n"] -[0.505034,"o","t"] -[0.735594,"o","\r\n"] -[1.529786,"o","."] -[1.559516,"o","."] -[1.561747,"o","."] -[1.602369,"o","."] -[1.602772,"o","."] -[1.609707,"o","."] -[1.614412,"o","."] -[1.617594,"o","."] -[1.619339,"o","."] -[1.820184,"o",". 10 / 10 (100%)\r\n\r\n\r\n"] -[1.820695,"o","Time: 1.77 secs; Memory: 16MB\r\n"] -[2.184699,"o","Note: Using configuration file /app/phpstan.neon.\r\n"] -[3.536386,"o"," 0/60 [\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 0%"] -[6.235132,"o","\u001b[1G\u001b[2K 20/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 33%"] -[7.141948,"o","\u001b[1G\u001b[2K 40/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 66%"] -[7.61911,"o","\u001b[1G\u001b[2K 60/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593] 100%"] -[7.650902,"o","\r\n\r\n"] -[7.654597,"o","\r\n [OK] No errors \r\n\r\n"] -[9.338338,"o"," 0/60 [\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 0%"] -[24.26825,"o","\u001b[1G\u001b[2K 16/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 26%"] -[26.931119,"o","\u001b[1G\u001b[2K 28/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 46%"] -[27.441988,"o","\u001b[1G\u001b[2K 44/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2591\u2591\u2591\u2591\u2591\u2591\u2591\u2591] 73%"] -[27.797076,"o","\u001b[1G\u001b[2K 60/60 [\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593\u2593] 100%"] -[27.814106,"o","\r\n\r\n"] -[27.81512,"o"," [OK] Rector is done! \r\n\r\n"] -[28.046353,"o","\r\n"] -[28.046874,"o"," [OK] Files linted: 3, notices: 0, warnings: 0, errors: 0 \r\n\r\n"] -[28.172157,"o","\r\n> lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] -[28.210545,"o","\r\n> lint-js\r\n> eslint web/modules/custom --ext .js --max-warnings=0 --no-error-on-unmatched-pattern\r\n\r\n"] -[29.172688,"o","\r\n> lint-css\r\n> stylelint --allow-empty-input \"web/modules/custom/**/*.css\"\r\n\r\n"] -[29.881316,"o","\r\n> star_wars@1.0.0 lint\r\n> npm run lint-js && npm run lint-css\r\n\r\n"] -[29.929279,"o","\r\n> star_wars@1.0.0 lint-js\r\n> eslint 'js/**/*.js' --ignore-pattern '*.min.js'\r\n\r\n"] -[30.705164,"o","\r\n/app/web/themes/custom/star_wars/js/star_wars.js\r\n 1:1 warning Missing JSDoc @param \"Drupal\" declaration jsdoc/require-param\r\n\r\n\u2716 1 problem (0 errors, 1 warning)\r\n 0 errors and 1 warning potentially fixable with the `--fix` option.\r\n\r\n"] -[30.754667,"o","\r\n> star_wars@1.0.0 lint-css\r\n> stylelint 'scss/**/*.scss'\r\n\r\n"] -[31.323845,"o","Using config file \"gherkinlint.json\"\r\n"] -[31.368145,"o","No problems found in 12 feature files (took 0.049589872360229 seconds)\r\n"] -[31.378411,"x","0"] +{"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"] diff --git a/.vortex/docs/static/img/lint.png b/.vortex/docs/static/img/lint.png index b72cceddb3..3638a43500 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 e10401b663..8250578ea5 100644 --- a/.vortex/docs/static/img/lint.svg +++ b/.vortex/docs/static/img/lint.svg @@ -1 +1 @@ -$ahoy$ahoylint..........10/10(100%)Time:1.77secs;Memory:16MBNote:Usingconfigurationfile/app/phpstan.neon.0/60[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]0%60/60[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]100%[OK]Noerrors[OK]Rectorisdone![OK]Fileslinted:3,notices:0,warnings:0,errors:0>lint>npmrunlint-js&&npmrunlint-css>lint-js>eslintweb/modules/custom--ext.js--max-warnings=0--no-error-on-unmatched-pattern>lint-css>stylelint--allow-empty-input"web/modules/custom/**/*.css">star_wars@1.0.0lint>star_wars@1.0.0lint-js>eslint'js/**/*.js'--ignore-pattern'*.min.js'/app/web/themes/custom/star_wars/js/star_wars.js1:1warningMissingJSDoc@param"Drupal"declarationjsdoc/require-param1problem(0errors,1warning)0errorsand1warningpotentiallyfixablewiththe`--fix`option.>star_wars@1.0.0lint-css>stylelint'scss/**/*.scss'Usingconfigfile"gherkinlint.json"$$a$ah$aho$ahoyl$ahoyli$ahoylin.............................................20/60[▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░]33%40/60[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░]66%16/60[▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░]26%28/60[▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░]46%44/60[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░]73%Noproblemsfoundin12featurefiles(took0.049589872360229seconds) \ No newline at end of file +$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 diff --git a/.vortex/docs/static/img/provision.json b/.vortex/docs/static/img/provision.json index 36086900e8..15313baa99 100644 --- a/.vortex/docs/static/img/provision.json +++ b/.vortex/docs/static/img/provision.json @@ -1,198 +1,198 @@ -{"version":2,"width":80,"height":42,"timestamp":1786956232,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy provision'","title":"Vortex ahoy provision Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} -[0.090474, "o", "$ "] -[0.591406, "o", "a"] -[0.64803, "o", "h"] -[0.703018, "o", "o"] -[0.758502, "o", "y"] -[0.808704, "o", " "] -[0.863563, "o", "p"] -[0.919733, "o", "r"] -[0.973393, "o", "o"] -[1.023512, "o", "v"] -[1.074505, "o", "i"] -[1.129034, "o", "s"] -[1.187396, "o", "i"] -[1.240577, "o", "o"] -[1.292136, "o", "n"] -[1.752824, "o", "\r\n"] -[2.015306, "o", "\u001b[36m[INFO] Started site provisioning.\u001b[0m\r\n"] -[4.011752, "o", "\r\n Drupal core version : 11.4.5\r\n Drush version : 13.7.6.0\r\n\r\n"] -[4.012087, "o", " Web root path : /app/web\r\n Public files path : sites/default/files\r\n Private files path : sites/default/files/private\r\n Temporary files path : /tmp\r\n Config files path : /app/config/default\r\n"] -[4.01319, "o", " DB dump file path : /app/.data/db.sql (present)\r\n"] -[4.013252, "o", "\r\n Profile : standard\r\n"] -[4.013757, "o", " Configuration files present : No\r\n"] -[4.014172, "o", " Existing site found : Yes\r\n\r\n Provision type : database\r\n"] -[4.014595, "o", " Fallback to profile : No\r\n"] -[4.014953, "o", " Overwrite existing DB : Yes\r\n"] -[4.015266, "o", " Skip DB sanitization : No\r\n"] -[4.015893, "o", " Skip post-provision operations : No\r\n"] -[4.016295, "o", " Verify config after update : No\r\n"] -[4.016601, "o", " Use maintenance mode : Yes\r\n\r\n"] -[4.017743, "o", "\u001b[36m[INFO] Provisioning site from the database dump file.\u001b[0m\r\n Dump file path: /app/.data/db.sql\r\n Existing site was found.\r\n"] -[4.01784, "o", " Existing site content will be removed and fresh content will be imported from the database dump file.\r\n"] -[4.029782, "o", "\u001b[36m[INFO] Started database file import.\u001b[0m\r\n"] -[4.328482, "o", "\r\n"] -[4.332627, "o", " // Do you really want to drop all tables in the database drupal?: yes. \r\n\r\n"] -[5.625657, "o", " Imported database from the dump file.\r\n"] -[5.626223, "o", "\u001b[32m[ OK ] Finished database file import.\u001b[0m\r\n"] -[5.6264, "o", "\r\n"] -[6.213862, "o", "\u001b[36m[INFO] Current Drupal environment: local\u001b[0m\r\n\r\n"] -[6.215808, "o", "\u001b[34m[TASK] Enabling maintenance mode.\u001b[0m\r\n"] -[6.794007, "o", "\u001b[32m[ OK ] Enabled maintenance mode. (0s)\u001b[0m\r\n\r\n"] -[6.795626, "o", "\u001b[34m[TASK] Running database updates.\u001b[0m\r\n"] -[10.41456, "o", " [success] No pending updates.\r\n"] -[10.431016, "o", "\u001b[32m[ OK ] Completed running database updates. (4s)\u001b[0m\r\n\r\n"] -[10.431946, "o", "\u001b[34m[TASK] Clearing cache after database updates.\u001b[0m\r\n"] -[12.593758, "o", " [success] Cache rebuild complete.\r\n"] -[12.620892, "o", "\u001b[32m[ OK ] Cache was cleared. (2s)\u001b[0m\r\n\r\n\u001b[34m[TASK] Rebuilding cache.\u001b[0m\r\n"] -[14.856038, "o", " [success] Cache rebuild complete.\r\n"] -[14.867609, "o", "\u001b[32m[ OK ] Cache was rebuilt. (3s)\u001b[0m\r\n\r\n"] -[14.870027, "o", "\u001b[34m[TASK] Running deployment hooks.\u001b[0m\r\n"] -[15.522077, "o", " [success] No pending deploy hooks.\r\n"] -[15.560893, "o", "\u001b[32m[ OK ] Completed deployment hooks. (0s)\u001b[0m\r\n\r\n"] -[15.575088, "o", "\u001b[36m[INFO] Sanitizing database.\u001b[0m\r\n"] -[16.003599, "o", " [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserTableCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeCommentsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeUserFieldsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\n [notice] The Drush\\Commands\\sql\\sanitize\\SanitizeSessionsCommands::messages sanitize plugin is using a deprecated API. See https://www.drush.org/13.x/listeners/\r\nThe following operations will be performed:\r\n"] -[16.00427, "o", " * Sanitize user passwords.\r\n * Sanitize user emails.\r\n * Preserve user emails and passwords for the specified roles.\r\n * Sanitize text fields associated with users.\r\n\r\n"] -[16.007325, "o", " // Do you want to sanitize the current database?: yes. \r\n\r\n"] -[16.314901, "o", " [success] User passwords sanitized.\r\n [success] User emails sanitized.\r\n"] -[16.372833, "o", "\u001b[32m[ OK ] Sanitized database using drush sql:sanitize.\u001b[0m\r\n"] -[16.733037, "o", "\r\n"] -[16.745878, "o", "\u001b[32m[ OK ] Applied custom sanitization commands from file.\u001b[0m\r\n"] -[17.060442, "o", "\r\n"] -[17.37189, "o", "\r\n"] -[17.379667, "o", "\u001b[32m[ OK ] Reset user 0 username and email.\u001b[0m\r\n\r\n"] -[17.382116, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\".\u001b[0m\r\n\r\n"] -[17.390183, "o", " ==> Started demo modules operations.\r\n"] -[17.82906, "o", " Environment: local\r\n"] -[17.829718, "o", " > Creating the content model.\r\n"] -[18.408559, "o", "0/2 [░░░░░░░░░░░░░░░░░░░░░░░░░░░░]\r\nApplying recipe\r\n"] -[18.414766, "o", "\r\n2/2 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]\r\nApplied Basic page recipe.\r\n"] -[18.414788, "o", "\r\n [OK] Basic page applied successfully \r\n\r\n"] -[18.421763, "o", " < Created the content model.\r\n > Setting site name.\r\n"] -[19.209687, "o", " < Set site name.\r\n > Setting up the administration navigation.\r\n"] -[19.946601, "o", " [notice] Already installed: navigation\r\n"] -[20.368988, "o", " < Set up the administration navigation.\r\n > Installing contrib modules.\r\n"] -[21.015519, "o", "The following module(s) will be installed: coffee, config_split, config_update, media, environment_indicator, navigation_extra_tools, pathauto, redirect, reroute_email, robotstxt, shield, stage_file_proxy, xmlsitemap, token\r\n"] -[21.016927, "o", "\r\n"] -[21.020602, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[25.914066, "o", " [success] Module coffee has been installed. (Permissions - Configure)\r\n"] -[25.91692, "o", " [success] Module config_split has been installed. (Permissions - Configure)\r\n"] -[25.920299, "o", " [success] Module config_update has been installed.\r\n"] -[25.921787, "o", " [success] Module media has been installed. (Permissions - Configure)\r\n"] -[25.924641, "o", " [success] Module environment_indicator has been installed. (Permissions - Configure)\r\n"] -[25.926532, "o", " [success] Module navigation_extra_tools has been installed. (Permissions)\r\n"] -[25.929302, "o", " [success] Module pathauto has been installed. (Permissions - Configure)\r\n"] -[25.931842, "o", " [success] Module redirect has been installed. (Permissions - Configure)\r\n"] -[25.934465, "o", " [success] Module reroute_email has been installed. (Permissions - Configure)\r\n"] -[25.938024, "o", " [success] Module robotstxt has been installed. (Permissions - Configure)\r\n"] -[25.940137, "o", " [success] Module shield has been installed. (Permissions - Configure)\r\n"] -[25.947142, "o", " [success] Module stage_file_proxy has been installed. (Permissions - Configure)\r\n"] -[25.947366, "o", " [success] Module xmlsitemap has been installed. (Permissions - Configure)\r\n"] -[25.948528, "o", " [success] Module token has been installed.\r\n"] -[25.967614, "o", " < Installed contrib modules.\r\n > Installing Redis module.\r\n"] -[28.414333, "o", " [success] Module redis has been installed. (Permissions - Configure)\r\n"] -[28.423827, "o", " < Installed Redis module.\r\n > Installing and configuring ClamAV.\r\n"] -[31.086585, "o", " [success] Module clamav has been installed. (Permissions - Configure)\r\n"] -[31.838175, "o", "\r\n"] -[31.838336, "o", " // Do you want to update mode_daemon_tcpip.hostname key in clamav.settings \r\n // config?: yes. \r\n\r\n"] -[32.044802, "o", " < Installed and configured ClamAV.\r\n"] -[32.045238, "o", " > Installing Solr search modules.\r\n"] -[32.799435, "o", "The following module(s) will be installed: search_api, search_api_solr, language\r\n"] -[32.80154, "o", "\r\n"] -[32.804402, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[37.155617, "o", " [success] Module search_api has been installed. (Permissions - Configure)\r\n"] -[37.159425, "o", " [success] Module search_api_solr has been installed.\r\n"] -[37.163655, "o", " [success] Module language has been installed. (Permissions - Configure)\r\n"] -[37.18135, "o", " < Installed Solr search modules.\r\n"] -[37.181684, "o", " > Installing custom site modules.\r\n"] -[42.513276, "o", " [success] Module sw_base has been installed.\r\n"] -[43.529423, "o", "The following module(s) will be installed: sw_search, workflows, content_moderation\r\n"] -[43.530886, "o", "\r\n"] -[43.533823, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[47.5978, "o", " [success] Module sw_search has been installed.\r\n"] -[47.604669, "o", " [success] Module workflows has been installed. (Permissions - Configure)\r\n"] -[47.609063, "o", " [success] Module content_moderation has been installed. (Permissions - Configure)\r\n"] -[48.426318, "o", "The following module(s) will be installed: sw_demo, drupal_helpers, testmode\r\n"] -[48.428205, "o", "\r\n"] -[48.434242, "o", " // Do you want to continue?: yes. \r\n\r\n"] -[51.864513, "o", " [success] Module sw_demo has been installed.\r\n"] -[51.866988, "o", " [success] Module drupal_helpers has been installed.\r\n"] -[51.872896, "o", " [success] Module testmode has been installed. (Configure)\r\n"] -[51.890423, "o", " < Installed custom site modules.\r\n > Running deployment hooks.\r\n"] -[53.349602, "o", " ----------- ------------------------ ---------------------------------------- \r\n Module Hook Description \r\n ----------- ------------------------ ---------------------------------------- \r\n sw_base install_active_theme Installs default and custom theme. \r\n @codeCoverageIgnore \r\n sw_demo configure_testmode Configure testmode to filter the pages \r\n view. Registers the 'sw_demo_pages' \r\n view with testmode so that only \r\n content matching the [TEST] prefix \r\n appears during test runs. \r\n @codeCoverageIgnore \r\n sw_demo create_pages_menu_link Create \"Pages\" menu link in the main \r\n navigation. "] -[53.349756, "o", " Demonstrates using the \r\n drupal_helpers module to manage menu \r\n links within deploy hooks. \r\n @codeCoverageIgnore \r\n sw_demo place_counter_block Place counter block in the \"content\" \r\n region. @codeCoverageIgnore \r\n sw_search add_editorial_workflow Attach editorial workflow to the page \r\n content type. Computed base fields \r\n like 'moderation_state' are only \r\n available when a workflow is attached \r\n to the content type. \r\n @codeCoverageIgnore \r\n ----------- ------------------------ ---------------------------------------- \r\n\r\n\r\n"] -[53.357363, "o", " // Do you wish to run the specified pending deploy hooks?: yes. \r\n\r\n"] -[54.184387, "o", "> [notice] Deploy hook started: sw_base_deploy_install_active_theme\r\n"] -[61.089765, "o", "> [notice] Performed: sw_base_deploy_install_active_theme\r\n> [notice] Deploy hook started: sw_demo_deploy_configure_testmode\r\n"] -[61.094033, "o", "> [notice] Configured testmode to filter the pages view.\r\n> [notice] Performed: sw_demo_deploy_configure_testmode\r\n"] -[61.09608, "o", "> [notice] Deploy hook started: sw_demo_deploy_create_pages_menu_link\r\n"] -[61.178243, "o", "> [notice] Created \"Pages\" menu link in main navigation.\r\n> [notice] Performed: sw_demo_deploy_create_pages_menu_link\r\n"] -[61.180346, "o", "> [notice] Deploy hook started: sw_demo_deploy_place_counter_block\r\n"] -[61.190452, "o", "> [notice] Counter block placed in the \"content\" region.\r\n> [notice] Performed: sw_demo_deploy_place_counter_block\r\n"] -[61.192018, "o", "> [notice] Deploy hook started: sw_search_deploy_add_editorial_workflow\r\n"] -[61.218099, "o", "> [notice] Attached editorial workflow to page content type.\r\n> [notice] Performed: sw_search_deploy_add_editorial_workflow\r\n"] -[61.55782, "o", " [success] Finished performing deploy hooks.\r\n"] -[61.580125, "o", " < Ran deployment hooks.\r\n ==> Finished demo modules operations.\r\n\r\n"] -[61.582688, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\". (44s)\u001b[0m\r\n\r\n"] -[61.584898, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\".\u001b[0m\r\n\r\n"] -[61.5912, "o", " ==> Started development modules operations.\r\n"] -[62.208613, "o", " Environment: local\r\n"] -[62.20922, "o", " > Installing Single Directory Component development tools.\r\n"] -[68.412075, "o", " [success] Module sdc_devel has been installed.\r\n"] -[68.432942, "o", " < Installed Single Directory Component development tools.\r\n > Installing Devel module.\r\n"] -[75.392859, "o", " [success] Module devel has been installed. (Permissions - Configure)\r\n"] -[75.410384, "o", " < Installed Devel module.\r\n > Installing Testmode module.\r\n"] -[76.353303, "o", " [notice] Already installed: testmode\r\n"] -[76.380481, "o", " < Installed Testmode module.\r\n > Installing Generated content module.\r\n"] -[81.524861, "o", "Started creation of generated content from modules: sw_demo, generated_content.\r\n"] -[81.807708, "o", "Created \"page\" node \"Demo page 1 accusamusanimide\" [ID: 2]\r\n"] -[81.819118, "o", "Created \"page\" node \"Demo page 2 asperioresatquem\" [ID: 3]\r\n"] -[81.834392, "o", "Created \"page\" node \"Demo page 3 debitisdelectuse\" [ID: 4]\r\n"] -[81.850244, "o", "Created \"page\" node \"Demo page 4 inmolestiaeoccae\" [ID: 5]\r\n"] -[81.865571, "o", "Created \"page\" node \"Demo page 5 doloribusiustoof\" [ID: 6]\r\n"] -[81.87975, "o", "Created \"page\" node \"Demo page 6 dolorumevenietli\" [ID: 7]\r\n"] -[81.901792, "o", "Created \"page\" node \"Demo page 7 facereidmaximeni\" [ID: 8]\r\n"] -[81.914032, "o", "Created \"page\" node \"Demo page 8 mollitianonsunta\" [ID: 9]\r\n"] -[81.927989, "o", "Created \"page\" node \"Demo page 9 distinctioharump\" [ID: 10]\r\n"] -[81.942871, "o", "Created \"page\" node \"Demo page 10 idimpeditmaximem\" [ID: 11]\r\n"] -[81.951845, "o", "Created \"page\" node \"Demo page 11 culpadebitisnobi\" [ID: 12]\r\n"] -[81.969565, "o", "Created \"page\" node \"Demo page 12 eosiustooptioqui\" [ID: 13]\r\n"] -[81.98258, "o", "Created \"page\" node \"Demo page 13 etitaqueproviden\" [ID: 14]\r\n"] -[81.995042, "o", "Created \"page\" node \"Demo page 14 animiautculpamai\" [ID: 15]\r\n"] -[82.00622, "o", "Created \"page\" node \"Demo page 15 maioresmolestiae\" [ID: 16]\r\n"] -[82.018357, "o", "Created \"page\" node \"Demo page 16 occaecatiperfere\" [ID: 17]\r\n"] -[82.030904, "o", "Created \"page\" node \"Demo page 17 fugaidimpeditnec\" [ID: 18]\r\n"] -[82.044723, "o", "Created \"page\" node \"Demo page 18 estiustomaximequ\" [ID: 19]\r\n"] -[82.057879, "o", "Created \"page\" node \"Demo page 19 consequaturdeser\" [ID: 20]\r\n"] -[82.069679, "o", "Created \"page\" node \"Demo page 20 doloreseosmaxime\" [ID: 21]\r\n"] -[82.070625, "o", "Created generated content entities \"node\" with bundle \"page\".\r\n"] -[82.099557, "o", "Created all generated content.\r\n"] -[82.100311, "o", "Finished creation of generated content.\r\n"] -[82.415769, "o", " [success] Module generated_content has been installed. (Permissions)\r\n"] -[82.554263, "o", " < Installed Generated content module.\r\n ==> Finished development modules operations.\r\n"] -[82.554453, "o", "\r\n"] -[82.557676, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\". (21s)\u001b[0m\r\n\r\n"] -[82.559096, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-30-search-index.sh\".\u001b[0m\r\n\r\n"] -[82.567735, "o", " ==> Started search indexing operations.\r\n"] -[83.199877, "o", " Environment: local\r\n Search indexing skip: 0\r\n\r\n"] -[83.201561, "o", " > Resetting search index tracker.\r\n"] -[83.943831, "o", " [success] Content was successfully scheduled for reindexing.\r\n"] -[83.977977, "o", " < Reset search index tracker.\r\n > Running search indexing.\r\n"] -[84.660622, "o", " [success] Found 21 items to index for Content. Indexing all items.\r\n [success] Indexing a maximum number of 21 items (50 items per batch run) for the index 'Content'.\r\n"] -[85.596078, "o", "> [notice] Successfully indexed 21 items on Content.\r\n"] -[85.614433, "o", "> [notice] Message: Successfully indexed 21 items.\r\n> \r\n"] -[85.687148, "o", " < Completed search indexing.\r\n ==> Finished search indexing operations.\r\n"] -[85.687468, "o", "\r\n"] -[85.691879, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-30-search-index.sh\". (3s)\u001b[0m\r\n\r\n\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-40-example.sh\".\u001b[0m\r\n\r\n"] -[85.701019, "o", " ==> Started example operations.\r\n"] -[86.331752, "o", " Environment: local\r\n"] -[86.332313, "o", " Running example operations in non-production environment.\r\n > Performing an example operation.\r\n"] -[86.332652, "o", " Replace this with your own commands.\r\n < Performed an example operation.\r\n Fresh database detected. Performing additional example operations.\r\n"] -[86.333024, "o", " ==> Finished example operations.\r\n"] -[86.333296, "o", "\r\n"] -[86.335711, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-40-example.sh\". (1s)\u001b[0m\r\n\r\n"] -[86.340827, "o", "\u001b[34m[TASK] Disabling maintenance mode.\u001b[0m\r\n"] -[87.181095, "o", "\u001b[32m[ OK ] Disabled maintenance mode. (1s)\u001b[0m\r\n\r\n"] -[87.183089, "o", "\u001b[32m[ OK ] Finished site provisioning (1m 25s).\u001b[0m\r\n"] -[91.079491, "o", "http://vortex_videos.docker.amazee.io/user/reset/1/1786956322/[REDACTED]/login\r\n"] -[91.126345, "x", "0"] +{"version":2,"width":80,"height":27,"timestamp":1787268367,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy provision'","title":"Vortex ahoy provision Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.077113, "o", "$ "] +[0.582221, "o", "a"] +[0.633411, "o", "h"] +[0.686633, "o", "o"] +[0.741236, "o", "y"] +[0.793045, "o", " "] +[0.844409, "o", "p"] +[0.899449, "o", "r"] +[0.952215, "o", "o"] +[1.002939, "o", "v"] +[1.057873, "o", "i"] +[1.112912, "o", "s"] +[1.167739, "o", "i"] +[1.222783, "o", "o"] +[1.274567, "o", "n"] +[1.73348, "o", "\r\n"] +[2.040547, "o", "\u001b[36m[INFO] Started site provisioning.\u001b[0m\r\n"] +[4.39875, "o", "\r\n Drupal core version : 11.4.5\r\n Drush version : 13.7.6.0\r\n\r\n"] +[4.39909, "o", " Web root path : /app/web\r\n"] +[4.399646, "o", " Public files path : sites/default/files\r\n Private files path : sites/default/files/private\r\n Temporary files path : /tmp\r\n Config files path : /app/config/default\r\n"] +[4.400031, "o", " DB dump file path : /app/.data/db.sql (present)\r\n\r\n Profile : standard\r\n"] +[4.400339, "o", " Configuration files present : No\r\n"] +[4.400955, "o", " Existing site found : Yes\r\n\r\n Provision type : database\r\n"] +[4.401421, "o", " Fallback to profile : No\r\n"] +[4.401894, "o", " Overwrite existing DB : Yes\r\n"] +[4.402379, "o", " Skip DB sanitization : No\r\n"] +[4.402815, "o", " Skip post-provision operations : No\r\n"] +[4.404213, "o", " Verify config after update : No\r\n"] +[4.404502, "o", " Use maintenance mode : Yes\r\n\r\n"] +[4.406184, "o", "\u001b[36m[INFO] Provisioning site from the database dump file.\u001b[0m\r\n Dump file path: /app/.data/db.sql\r\n Existing site was found.\r\n Existing site content will be removed and fresh content will be imported from the database dump file.\r\n"] +[4.41922, "o", "\u001b[36m[INFO] Started database file import.\u001b[0m\r\n"] +[4.683989, "o", "\r\n"] +[4.688251, "o", " // Do you really want to drop all tables in the database drupal?: yes. \r\n\r\n"] +[5.917545, "o", " Imported database from the dump file.\r\n"] +[5.918201, "o", "\u001b[32m[ OK ] Finished database file import.\u001b[0m\r\n"] +[5.918491, "o", "\r\n"] +[6.435428, "o", "\u001b[36m[INFO] Current Drupal environment: local\u001b[0m\r\n\r\n"] +[6.437752, "o", "\u001b[34m[TASK] Enabling maintenance mode.\u001b[0m\r\n"] +[6.993115, "o", "\u001b[32m[ OK ] Enabled maintenance mode. (0s)\u001b[0m\r\n\r\n"] +[6.99483, "o", "\u001b[34m[TASK] Running database updates.\u001b[0m\r\n"] +[9.969691, "o", " [success] No pending updates.\r\n"] +[9.987424, "o", "\u001b[32m[ OK ] Completed running database updates. (3s)\u001b[0m\r\n\r\n"] +[9.988985, "o", "\u001b[34m[TASK] Clearing cache after database updates.\u001b[0m\r\n"] +[11.960223, "o", " [success] Cache rebuild complete.\r\n"] +[11.972914, "o", "\u001b[32m[ OK ] Cache was cleared. (2s)\u001b[0m\r\n\r\n"] +[11.974701, "o", "\u001b[34m[TASK] Rebuilding cache.\u001b[0m\r\n"] +[14.096237, "o", " [success] Cache rebuild complete.\r\n"] +[14.107524, "o", "\u001b[32m[ OK ] Cache was rebuilt. (2s)\u001b[0m\r\n\r\n"] +[14.109061, "o", "\u001b[34m[TASK] Running deployment hooks.\u001b[0m\r\n"] +[14.735129, "o", " [success] No pending deploy hooks.\r\n"] +[14.759017, "o", "\u001b[32m[ OK ] Completed deployment hooks. (1s)\u001b[0m\r\n\r\n"] +[14.771637, "o", "\u001b[36m[INFO] Sanitizing database.\u001b[0m\r\n"] +[15.300387, "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"] +[15.301176, "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"] +[15.303102, "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"] +[15.307085, "o", " // Do you want to sanitize the current database?: yes. \r\n\r\n"] +[15.601, "o", " [success] User passwords sanitized.\r\n [success] User emails sanitized.\r\n"] +[15.655453, "o", "\u001b[32m[ OK ] Sanitized database using drush sql:sanitize.\u001b[0m\r\n"] +[15.967945, "o", "\r\n"] +[15.977763, "o", "\u001b[32m[ OK ] Applied custom sanitization commands from file.\u001b[0m\r\n"] +[16.290944, "o", "\r\n"] +[16.631263, "o", "\r\n"] +[16.642758, "o", "\u001b[32m[ OK ] Reset user 0 username and email.\u001b[0m\r\n\r\n"] +[16.645092, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\".\u001b[0m\r\n\r\n"] +[16.652386, "o", " ==> Started demo modules operations.\r\n"] +[17.087176, "o", " Environment: local\r\n"] +[17.08796, "o", " > Creating the content model.\r\n"] +[17.808441, "o", "0/2 [░░░░░░░░░░░░░░░░░░░░░░░░░░░░]\r\nApplying recipe\r\n"] +[17.814196, "o", "\r\n2/2 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]\r\nApplied Basic page recipe.\r\n"] +[17.814231, "o", "\r\n"] +[17.814578, "o", " [OK] Basic page applied successfully \r\n\r\n"] +[17.819641, "o", " < Created the content model.\r\n > Setting site name.\r\n"] +[18.727, "o", " < Set site name.\r\n > Setting up the administration navigation.\r\n"] +[19.427476, "o", " [notice] Already installed: navigation\r\n"] +[19.881032, "o", " < Set up the administration navigation.\r\n > Installing contrib modules.\r\n"] +[20.495587, "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"] +[20.497155, "o", "\r\n"] +[20.500821, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[25.290343, "o", " [success] Module coffee has been installed. (Permissions - Configure)\r\n"] +[25.295309, "o", " [success] Module config_split has been installed. (Permissions - Configure)\r\n"] +[25.305003, "o", " [success] Module config_update has been installed.\r\n"] +[25.309579, "o", " [success] Module media has been installed. (Permissions - Configure)\r\n"] +[25.312524, "o", " [success] Module environment_indicator has been installed. (Permissions - Configure)\r\n"] +[25.314817, "o", " [success] Module navigation_extra_tools has been installed. (Permissions)\r\n"] +[25.318515, "o", " [success] Module pathauto has been installed. (Permissions - Configure)\r\n"] +[25.321512, "o", " [success] Module redirect has been installed. (Permissions - Configure)\r\n"] +[25.325125, "o", " [success] Module reroute_email has been installed. (Permissions - Configure)\r\n"] +[25.328729, "o", " [success] Module robotstxt has been installed. (Permissions - Configure)\r\n"] +[25.332012, "o", " [success] Module shield has been installed. (Permissions - Configure)\r\n"] +[25.335892, "o", " [success] Module stage_file_proxy has been installed. (Permissions - Configure)\r\n"] +[25.339467, "o", " [success] Module xmlsitemap has been installed. (Permissions - Configure)\r\n"] +[25.342898, "o", " [success] Module token has been installed.\r\n"] +[25.359806, "o", " < Installed contrib modules.\r\n > Installing Redis module.\r\n"] +[27.739682, "o", " [success] Module redis has been installed. (Permissions - Configure)\r\n"] +[27.75235, "o", " < Installed Redis module.\r\n > Installing and configuring ClamAV.\r\n"] +[30.154893, "o", " [success] Module clamav has been installed. (Permissions - Configure)\r\n"] +[30.808202, "o", "\r\n"] +[30.811388, "o", " // Do you want to update mode_daemon_tcpip.hostname key in clamav.settings \r\n // config?: yes. \r\n\r\n"] +[30.978607, "o", " < Installed and configured ClamAV.\r\n > Installing Solr search modules.\r\n"] +[31.672148, "o", "The following module(s) will be installed: search_api, search_api_solr, language\r\n"] +[31.673553, "o", "\r\n"] +[31.676999, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[35.898605, "o", " [success] Module search_api has been installed. (Permissions - Configure)\r\n"] +[35.901553, "o", " [success] Module search_api_solr has been installed.\r\n"] +[35.904991, "o", " [success] Module language has been installed. (Permissions - Configure)\r\n"] +[35.92166, "o", " < Installed Solr search modules.\r\n > Installing custom site modules.\r\n"] +[40.210058, "o", " [success] Module sw_base has been installed.\r\n"] +[40.942878, "o", "The following module(s) will be installed: sw_search, workflows, content_moderation\r\n"] +[40.943753, "o", "\r\n"] +[40.948937, "o", " // Do you want to continue?: yes. \r\n\r\n"] +[44.581375, "o", " [success] Module sw_search has been installed.\r\n"] +[44.586593, "o", " [success] Module workflows has been installed. (Permissions - Configure)\r\n"] +[44.589458, "o", " [success] Module content_moderation has been installed. (Permissions - Configure)\r\n"] +[45.365083, "o", "The following module(s) will be installed: sw_demo, drupal_helpers, testmode\r\n"] +[45.370074, "o", "\r\n // Do you want to continue?: yes. \r\n\r\n"] +[48.32974, "o", " [success] Module sw_demo has been installed.\r\n"] +[48.332753, "o", " [success] Module drupal_helpers has been installed.\r\n"] +[48.338265, "o", " [success] Module testmode has been installed. (Configure)\r\n"] +[48.353129, "o", " < Installed custom site modules.\r\n > Running deployment hooks.\r\n"] +[49.75113, "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. "] +[49.751159, "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"] +[49.755633, "o", " // Do you wish to run the specified pending deploy hooks?: yes. \r\n\r\n"] +[50.302656, "o", "> [notice] Deploy hook started: sw_base_deploy_install_active_theme\r\n"] +[54.365022, "o", "> [notice] Performed: sw_base_deploy_install_active_theme\r\n"] +[54.366699, "o", "> [notice] Deploy hook started: sw_demo_deploy_configure_testmode\r\n"] +[54.371406, "o", "> [notice] Configured testmode to filter the pages view.\r\n> [notice] Performed: sw_demo_deploy_configure_testmode\r\n"] +[54.372552, "o", "> [notice] Deploy hook started: sw_demo_deploy_create_pages_menu_link\r\n"] +[54.430453, "o", "> [notice] Created \"Pages\" menu link in main navigation.\r\n> [notice] Performed: sw_demo_deploy_create_pages_menu_link\r\n"] +[54.431348, "o", "> [notice] Deploy hook started: sw_demo_deploy_place_counter_block\r\n"] +[54.439384, "o", "> [notice] Counter block placed in the \"content\" region.\r\n> [notice] Performed: sw_demo_deploy_place_counter_block\r\n"] +[54.444659, "o", "> [notice] Deploy hook started: sw_search_deploy_add_editorial_workflow\r\n"] +[54.463301, "o", "> [notice] Attached editorial workflow to page content type.\r\n> [notice] Performed: sw_search_deploy_add_editorial_workflow\r\n"] +[54.72842, "o", " [success] Finished performing deploy hooks.\r\n"] +[54.752486, "o", " < Ran deployment hooks.\r\n ==> Finished demo modules operations.\r\n"] +[54.752583, "o", "\r\n"] +[54.754476, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-00-enable-demo-modules.sh\". (38s)\u001b[0m\r\n\r\n"] +[54.756015, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-10-enable-dev-modules.sh\".\u001b[0m\r\n\r\n"] +[54.76275, "o", " ==> Started development modules operations.\r\n"] +[55.342577, "o", " Environment: local\r\n"] +[55.343188, "o", " > Installing Single Directory Component development tools.\r\n"] +[59.553448, "o", " [success] Module sdc_devel has been installed.\r\n"] +[59.567289, "o", " < Installed Single Directory Component development tools.\r\n > Installing Devel module.\r\n"] +[64.174325, "o", " [success] Module devel has been installed. (Permissions - Configure)\r\n"] +[64.187482, "o", " < Installed Devel module.\r\n > Installing Testmode module.\r\n"] +[64.898791, "o", " [notice] Already installed: testmode\r\n"] +[64.94863, "o", " < Installed Testmode module.\r\n > Installing Generated content module.\r\n"] +[68.85784, "o", "Started creation of generated content from modules: sw_demo, generated_content.\r\n"] +[69.053085, "o", "Created \"page\" node \"Demo page 1 accusamusanimide\" [ID: 2]\r\n"] +[69.062652, "o", "Created \"page\" node \"Demo page 2 asperioresatquem\" [ID: 3]\r\n"] +[69.072406, "o", "Created \"page\" node \"Demo page 3 debitisdelectuse\" [ID: 4]\r\n"] +[69.085205, "o", "Created \"page\" node \"Demo page 4 inmolestiaeoccae\" [ID: 5]\r\n"] +[69.092943, "o", "Created \"page\" node \"Demo page 5 doloribusiustoof\" [ID: 6]\r\n"] +[69.102896, "o", "Created \"page\" node \"Demo page 6 dolorumevenietli\" [ID: 7]\r\n"] +[69.118594, "o", "Created \"page\" node \"Demo page 7 facereidmaximeni\" [ID: 8]\r\n"] +[69.126355, "o", "Created \"page\" node \"Demo page 8 mollitianonsunta\" [ID: 9]\r\n"] +[69.136324, "o", "Created \"page\" node \"Demo page 9 distinctioharump\" [ID: 10]\r\n"] +[69.144048, "o", "Created \"page\" node \"Demo page 10 idimpeditmaximem\" [ID: 11]\r\n"] +[69.152684, "o", "Created \"page\" node \"Demo page 11 culpadebitisnobi\" [ID: 12]\r\n"] +[69.163348, "o", "Created \"page\" node \"Demo page 12 eosiustooptioqui\" [ID: 13]\r\n"] +[69.171979, "o", "Created \"page\" node \"Demo page 13 etitaqueproviden\" [ID: 14]\r\n"] +[69.181156, "o", "Created \"page\" node \"Demo page 14 animiautculpamai\" [ID: 15]\r\n"] +[69.192635, "o", "Created \"page\" node \"Demo page 15 maioresmolestiae\" [ID: 16]\r\n"] +[69.20313, "o", "Created \"page\" node \"Demo page 16 occaecatiperfere\" [ID: 17]\r\n"] +[69.210812, "o", "Created \"page\" node \"Demo page 17 fugaidimpeditnec\" [ID: 18]\r\n"] +[69.221592, "o", "Created \"page\" node \"Demo page 18 estiustomaximequ\" [ID: 19]\r\n"] +[69.231351, "o", "Created \"page\" node \"Demo page 19 consequaturdeser\" [ID: 20]\r\n"] +[69.2398, "o", "Created \"page\" node \"Demo page 20 doloreseosmaxime\" [ID: 21]\r\n"] +[69.240585, "o", "Created generated content entities \"node\" with bundle \"page\".\r\n"] +[69.268741, "o", "Created all generated content.\r\n"] +[69.2698, "o", "Finished creation of generated content.\r\n"] +[69.487458, "o", " [success] Module generated_content has been installed. (Permissions)\r\n"] +[69.585083, "o", " < Installed Generated content module.\r\n ==> Finished development modules operations.\r\n"] +[69.585335, "o", "\r\n"] +[69.587411, "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"] +[69.588928, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-30-search-index.sh\".\u001b[0m\r\n\r\n"] +[69.595999, "o", " ==> Started search indexing operations.\r\n"] +[70.068019, "o", " Environment: local\r\n Search indexing skip: 0\r\n\r\n"] +[70.068731, "o", " > Resetting search index tracker.\r\n"] +[70.576293, "o", " [success] Content was successfully scheduled for reindexing.\r\n"] +[70.594567, "o", " < Reset search index tracker.\r\n > Running search indexing.\r\n"] +[71.092501, "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"] +[71.940603, "o", "> [notice] Successfully indexed 21 items on Content.\r\n"] +[71.956621, "o", "> [notice] Message: Successfully indexed 21 items.\r\n> \r\n"] +[72.007132, "o", " < Completed search indexing.\r\n ==> Finished search indexing operations.\r\n"] +[72.007277, "o", "\r\n"] +[72.009345, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-30-search-index.sh\". (2s)\u001b[0m\r\n\r\n"] +[72.011549, "o", "\u001b[34m[TASK] Running custom post-install script \"./scripts/provision-40-example.sh\".\u001b[0m\r\n\r\n"] +[72.019274, "o", " ==> Started example operations.\r\n"] +[72.579212, "o", " Environment: local\r\n"] +[72.579733, "o", " 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"] +[72.57995, "o", "\r\n"] +[72.581818, "o", "\u001b[32m[ OK ] Completed running of custom post-install script \"./scripts/provision-40-example.sh\". (1s)\u001b[0m\r\n\r\n"] +[72.583614, "o", "\u001b[34m[TASK] Disabling maintenance mode.\u001b[0m\r\n"] +[73.142586, "o", "\u001b[32m[ OK ] Disabled maintenance mode. (0s)\u001b[0m\r\n\r\n"] +[73.144173, "o", "\u001b[32m[ OK ] Finished site provisioning (1m 11s).\u001b[0m\r\n"] +[76.82799, "o", "http://vortex_videos.docker.amazee.io/user/reset/1/1787268444/[REDACTED]/login\r\n"] +[76.86679, "x", "0"] diff --git a/.vortex/docs/static/img/provision.png b/.vortex/docs/static/img/provision.png index cc0f3849ee..8b48a52a4a 100644 Binary files a/.vortex/docs/static/img/provision.png and b/.vortex/docs/static/img/provision.png differ diff --git a/.vortex/docs/static/img/provision.svg b/.vortex/docs/static/img/provision.svg index 30cc4148df..da579abc83 100644 --- a/.vortex/docs/static/img/provision.svg +++ b/.vortex/docs/static/img/provision.svg @@ -1 +1 @@ -$ahoy$ahoyprovision[INFO]Startedsiteprovisioning.Drupalcoreversion:11.4.5Drushversion:13.7.6.0Webrootpath:/app/webPublicfilespath:sites/default/filesPrivatefilespath:sites/default/files/privateTemporaryfilespath:/tmpConfigfilespath:/app/config/defaultDBdumpfilepath:/app/.data/db.sql(present)Profile:standardConfigurationfilespresent:NoExistingsitefound:YesProvisiontype:databaseFallbacktoprofile:NoOverwriteexistingDB:YesSkipDBsanitization:NoSkippost-provisionoperations:NoVerifyconfigafterupdate:NoUsemaintenancemode:Yes[INFO]Provisioningsitefromthedatabasedumpfile.Dumpfilepath:/app/.data/db.sqlExistingsitewasfound.Existingsitecontentwillberemovedandfreshcontentwillbeimportedfromthedatabasedumpfile.[INFO]Starteddatabasefileimport.//Doyoureallywanttodropalltablesinthedatabasedrupal?:yes.Importeddatabasefromthedumpfile.[OK]Finisheddatabasefileimport.[INFO]CurrentDrupalenvironment:local[TASK]Enablingmaintenancemode.[OK]Enabledmaintenancemode.(0s)[TASK]Runningdatabaseupdates.[success]Nopendingupdates.[OK]Completedrunningdatabaseupdates.(4s)[TASK]Clearingcacheafterdatabaseupdates.[success]Cacherebuildcomplete.[OK]Cachewascleared.(2s)[TASK]Rebuildingcache.[OK]Cachewasrebuilt.(3s)[TASK]Runningdeploymenthooks.[success]Nopendingdeployhooks.[OK]Completeddeploymenthooks.(0s)[INFO]Sanitizingdatabase.[notice]TheDrush\Commands\sql\sanitize\SanitizeUserTableCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeCommentsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeUserFieldsCommands::messagessanitizepluginisusingadeprecatedAPI.Seehttps://www.drush.org/13.x/listeners/[notice]TheDrush\Commands\sql\sanitize\SanitizeSessionsCommands::messagessanThefollowingoperationswillbeperformed:*Sanitizeuserpasswords.*Sanitizeuseremails.*Preserveuseremailsandpasswordsforthespecifiedroles.*Sanitizetextfieldsassociatedwithusers.//Doyouwanttosanitizethecurrentdatabase?:yes.[success]Userpasswordssanitized.[success]Useremailssanitized.[OK]Sanitizeddatabaseusingdrushsql:sanitize.[OK]Appliedcustomsanitizationcommandsfromfile.[OK]Resetuser0usernameandemail.[TASK]Runningcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".==>Starteddemomodulesoperations.Environment:local>Creatingthecontentmodel.0/2[░░░░░░░░░░░░░░░░░░░░░░░░░░░░]Applyingrecipe2/2[▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓]AppliedBasicpagerecipe.[OK]Basicpageappliedsuccessfully<Createdthecontentmodel.>Settingsitename.<Setsitename.>Settinguptheadministrationnavigation.[notice]Alreadyinstalled:navigation<Setuptheadministrationnavigation.>Installingcontribmodules.Thefollowingmodule(s)willbeinstalled:coffee,config_split,config_update,media,environment_indicator,navigation_extra_tools,pathauto,redirect,reroute_email,robotstxt,shield,stage_file_proxy,xmlsitemap,token//Doyouwanttocontinue?:yes.[success]Modulecoffeehasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_splithasbeeninstalled.(Permissions-Configure)[success]Moduleconfig_updatehasbeeninstalled.[success]Modulemediahasbeeninstalled.(Permissions-Configure)[success]Moduleenvironment_indicatorhasbeeninstalled.(Permissions-Configure)[success]Modulenavigation_extra_toolshasbeeninstalled.(Permissions)[success]Modulepathautohasbeeninstalled.(Permissions-Configure)[success]Moduleredirecthasbeeninstalled.(Permissions-Configure)[success]Modulereroute_emailhasbeeninstalled.(Permissions-Configure)[success]Modulerobotstxthasbeeninstalled.(Permissions-Configure)[success]Moduleshieldhasbeeninstalled.(Permissions-Configure)[success]Modulestage_file_proxyhasbeeninstalled.(Permissions-Configure)[success]Modulexmlsitemaphasbeeninstalled.(Permissions-Configure)[success]Moduletokenhasbeeninstalled.<Installedcontribmodules.>InstallingRedismodule.[success]Moduleredishasbeeninstalled.(Permissions-Configure)<InstalledRedismodule.>InstallingandconfiguringClamAV.[success]Moduleclamavhasbeeninstalled.(Permissions-Configure)//Doyouwanttoupdatemode_daemon_tcpip.hostnamekeyinclamav.settings//config?:yes.<InstalledandconfiguredClamAV.>InstallingSolrsearchmodules.Thefollowingmodule(s)willbeinstalled:search_api,search_api_solr,language[success]Modulesearch_apihasbeeninstalled.(Permissions-Configure)[success]Modulesearch_api_solrhasbeeninstalled.[success]Modulelanguagehasbeeninstalled.(Permissions-Configure)<InstalledSolrsearchmodules.>Installingcustomsitemodules.[success]Modulesw_basehasbeeninstalled.Thefollowingmodule(s)willbeinstalled:sw_search,workflows,content_moderation[success]Modulesw_searchhasbeeninstalled.[success]Moduleworkflowshasbeeninstalled.(Permissions-Configure)[success]Modulecontent_moderationhasbeeninstalled.(Permissions-Configure)Thefollowingmodule(s)willbeinstalled:sw_demo,drupal_helpers,testmode[success]Modulesw_demohasbeeninstalled.[success]Moduledrupal_helpershasbeeninstalled.[success]Moduletestmodehasbeeninstalled.(Configure)<Installedcustomsitemodules.>Runningdeploymenthooks.---------------------------------------------------------------------------ModuleHookDescriptionsw_baseinstall_active_themeInstallsdefaultandcustomtheme.@codeCoverageIgnoresw_democonfigure_testmodeConfiguretestmodetofilterthepagesview.Registersthe'sw_demo_pages'viewwithtestmodesothatonlycontentmatchingthe[TEST]prefixappearsduringtestruns.sw_democreate_pages_menu_linkCreate"Pages"menulinkinthemainnavigation.Demonstratesusingthedrupal_helpersmoduletomanagemenulinkswithindeployhooks.sw_demoplace_counter_blockPlacecounterblockinthe"content"region.@codeCoverageIgnoresw_searchadd_editorial_workflowAttacheditorialworkflowtothepagecontenttype.Computedbasefieldslike'moderation_state'areonlyavailablewhenaworkflowisattachedtothecontenttype.//Doyouwishtorunthespecifiedpendingdeployhooks?:yes.>[notice]Deployhookstarted:sw_base_deploy_install_active_theme>[notice]Performed:sw_base_deploy_install_active_theme>[notice]Deployhookstarted:sw_demo_deploy_configure_testmode>[notice]Configuredtestmodetofilterthepagesview.>[notice]Performed:sw_demo_deploy_configure_testmode>[notice]Deployhookstarted:sw_demo_deploy_create_pages_menu_link>[notice]Created"Pages"menulinkinmainnavigation.>[notice]Performed:sw_demo_deploy_create_pages_menu_link>[notice]Deployhookstarted:sw_demo_deploy_place_counter_block>[notice]Counterblockplacedinthe"content"region.>[notice]Performed:sw_demo_deploy_place_counter_block>[notice]Deployhookstarted:sw_search_deploy_add_editorial_workflow>[notice]Attachededitorialworkflowtopagecontenttype.>[notice]Performed:sw_search_deploy_add_editorial_workflow[success]Finishedperformingdeployhooks.<Randeploymenthooks.==>Finisheddemomodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-00-enable-demo-modules.sh".(44s)[TASK]Runningcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".==>Starteddevelopmentmodulesoperations.>InstallingSingleDirectoryComponentdevelopmenttools.[success]Modulesdc_develhasbeeninstalled.<InstalledSingleDirectoryComponentdevelopmenttools.>InstallingDevelmodule.[success]Moduledevelhasbeeninstalled.(Permissions-Configure)<InstalledDevelmodule.>InstallingTestmodemodule.[notice]Alreadyinstalled:testmode<InstalledTestmodemodule.>InstallingGeneratedcontentmodule.Startedcreationofgeneratedcontentfrommodules:sw_demo,generated_content.Created"page"node"Demopage1accusamusanimide"[ID:2]Created"page"node"Demopage2asperioresatquem"[ID:3]Created"page"node"Demopage3debitisdelectuse"[ID:4]Created"page"node"Demopage4inmolestiaeoccae"[ID:5]Created"page"node"Demopage5doloribusiustoof"[ID:6]Created"page"node"Demopage6dolorumevenietli"[ID:7]Created"page"node"Demopage7facereidmaximeni"[ID:8]Created"page"node"Demopage8mollitianonsunta"[ID:9]Created"page"node"Demopage9distinctioharump"[ID:10]Created"page"node"Demopage10idimpeditmaximem"[ID:11]Created"page"node"Demopage11culpadebitisnobi"[ID:12]Created"page"node"Demopage12eosiustooptioqui"[ID:13]Created"page"node"Demopage13etitaqueproviden"[ID:14]Created"page"node"Demopage14animiautculpamai"[ID:15]Created"page"node"Demopage15maioresmolestiae"[ID:16]Created"page"node"Demopage16occaecatiperfere"[ID:17]Created"page"node"Demopage17fugaidimpeditnec"[ID:18]Created"page"node"Demopage18estiustomaximequ"[ID:19]Created"page"node"Demopage19consequaturdeser"[ID:20]Created"page"node"Demopage20doloreseosmaxime"[ID:21]Createdgeneratedcontententities"node"withbundle"page".Createdallgeneratedcontent.Finishedcreationofgeneratedcontent.[success]Modulegenerated_contenthasbeeninstalled.(Permissions)<InstalledGeneratedcontentmodule.==>Finisheddevelopmentmodulesoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-10-enable-dev-modules.sh".(21s)[TASK]Runningcustompost-installscript"./scripts/provision-30-search-index.sh".==>Startedsearchindexingoperations.Searchindexingskip:0>Resettingsearchindextracker.[success]Contentwassuccessfullyscheduledforreindexing.<Resetsearchindextracker.>Runningsearchindexing.[success]Found21itemstoindexforContent.Indexingallitems.[success]Indexingamaximumnumberof21items(50itemsperbatchrun)fortheindex'Content'.>[notice]Successfullyindexed21itemsonContent.>[notice]Message:Successfullyindexed21items.><Completedsearchindexing.==>Finishedsearchindexingoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-30-search-index.sh".(3s)[TASK]Runningcustompost-installscript"./scripts/provision-40-example.sh".==>Startedexampleoperations.Runningexampleoperationsinnon-productionenvironment.>Performinganexampleoperation.Replacethiswithyourowncommands.<Performedanexampleoperation.Freshdatabasedetected.Performingadditionalexampleoperations.==>Finishedexampleoperations.[OK]Completedrunningofcustompost-installscript"./scripts/provision-40-example.sh".(1s)[TASK]Disablingmaintenancemode.[OK]Disabledmaintenancemode.(1s)[OK]Finishedsiteprovisioning(1m25s).$$a$ah$aho$ahoyp$ahoypr$ahoypro$ahoyprov$ahoyprovi$ahoyprovis$ahoyprovisi$ahoyprovisionavigation.http://vortex_videos.docker.amazee.io/user/reset/1/1786956322/[REDACTED]/login \ No newline at end of file +$ahoy$ahoyprovision[INFO]Startedsiteprovisioning.Drupalcoreversion:11.4.5Drushversion:13.7.6.0Webrootpath:/app/webPublicfilespath:sites/default/filesPrivatefilespath:sites/default/files/privateTemporaryfilespath:/tmpConfigfilespath:/app/config/defaultDBdumpfilepath:/app/.data/db.sql(present)Profile:standardConfigurationfilespresent:NoExistingsitefound:YesProvisiontype:databaseFallbacktoprofile:NoOverwriteexistingDB:YesSkipDBsanitization:NoSkippost-provisionoperations:NoVerifyconfigafterupdate:NoUsemaintenancemode:Yes[INFO]Provisioningsitefromthedatabasedumpfile.Dumpfilepath:/app/.data/db.sqlExistingsitewasfound.Existingsitecontentwillberemovedandfreshcontentwillbeimportedfromthedatabasedumpfile.[INFO]Starteddatabasefileimport.//Doyoureallywanttodropalltablesinthedatabasedrupal?:yes.Importeddatabasefromthedumpfile.[OK]Finisheddatabasefileimport.[INFO]CurrentDrupalenvironment:local[TASK]Enablingmaintenancemode.[OK]Enabledmaintenancemode.(0s)[TASK]Runningdatabaseupdates.[success]Nopendingupdates.[OK]Completedrunningdatabaseupdates.(3s)[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".(38s)[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(1m11s).$$a$ah$aho$ahoyp$ahoypr$ahoypro$ahoyprov$ahoyprovi$ahoyprovis$ahoyprovisi$ahoyprovisionavigation.http://vortex_videos.docker.amazee.io/user/reset/1/1787268444/[REDACTED]/login \ No newline at end of file diff --git a/.vortex/docs/static/img/test-bdd.json b/.vortex/docs/static/img/test-bdd.json index ed8b52250e..5f8d89d360 100644 --- a/.vortex/docs/static/img/test-bdd.json +++ b/.vortex/docs/static/img/test-bdd.json @@ -1,211 +1,218 @@ -{"version":2,"width":80,"height":42,"timestamp":1787184980,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy test-bdd'","title":"Vortex ahoy test-bdd Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} -[0.06, "o", "$ "] -[0.565052, "o", "a"] -[0.619854, "o", "h"] -[0.674877, "o", "o"] -[0.728178, "o", "y"] -[0.783026, "o", " "] -[0.836511, "o", "t"] -[0.889636, "o", "e"] -[0.944654, "o", "s"] -[0.996142, "o", "t"] -[1.051174, "o", "-"] -[1.105678, "o", "b"] -[1.160552, "o", "d"] -[1.211561, "o", "d"] -[1.667381, "o", "\r\n"] -[3.518058, "o", "\u001b[32m.\u001b[39m"] -[5.892354, "o", "\u001b[32m.\u001b[39m"] -[6.383135, "o", "\u001b[32m.\u001b[39m"] -[7.06122, "o", "\u001b[32m.\u001b[39m"] -[7.915851, "o", "\u001b[32m.\u001b[39m"] -[8.435168, "o", "\u001b[32m.\u001b[39m"] -[9.055259, "o", "\u001b[32m.\u001b[39m"] -[9.552571, "o", "\u001b[32m.\u001b[39m"] -[10.039954, "o", "\u001b[32m.\u001b[39m"] -[10.449318, "o", "\u001b[32m.\u001b[39m"] -[11.062031, "o", "\u001b[32m.\u001b[39m"] -[11.647368, "o", "\u001b[32m.\u001b[39m"] -[12.094767, "o", "\u001b[32m.\u001b[39m"] -[12.47816, "o", "\u001b[32m.\u001b[39m"] -[12.899444, "o", "\u001b[32m.\u001b[39m"] -[13.283259, "o", "\u001b[32m.\u001b[39m"] -[13.962056, "o", "\u001b[32m.\u001b[39m"] -[14.252167, "o", "\u001b[32m.\u001b[39m"] -[14.686493, "o", "\u001b[32m.\u001b[39m"] -[15.446613, "o", "\u001b[32m.\u001b[39m"] -[15.92284, "o", "\u001b[32m.\u001b[39m"] -[16.387916, "o", "\u001b[32m.\u001b[39m"] -[16.467574, "o", "\u001b[32m.\u001b[39m"] -[16.495395, "o", "\u001b[32m.\u001b[39m"] -[16.497153, "o", "\u001b[32m.\u001b[39m"] -[16.500006, "o", "\u001b[32m.\u001b[39m"] -[16.521184, "o", "\u001b[32m.\u001b[39m"] -[16.522791, "o", "\u001b[32m.\u001b[39m"] -[16.524746, "o", "\u001b[32m.\u001b[39m"] -[16.526907, "o", "\u001b[32m.\u001b[39m"] -[16.528759, "o", "\u001b[32m.\u001b[39m"] -[16.530592, "o", "\u001b[32m.\u001b[39m"] -[16.532681, "o", "\u001b[32m.\u001b[39m"] -[16.535278, "o", "\u001b[32m.\u001b[39m"] -[16.555146, "o", "\u001b[32m.\u001b[39m"] -[16.556592, "o", "\u001b[32m.\u001b[39m"] -[16.561434, "o", "\u001b[32m.\u001b[39m"] -[16.563511, "o", "\u001b[32m.\u001b[39m"] -[16.565573, "o", "\u001b[32m.\u001b[39m"] -[16.567764, "o", "\u001b[32m.\u001b[39m"] -[16.569613, "o", "\u001b[32m.\u001b[39m"] -[16.580757, "o", "\u001b[32m.\u001b[39m"] -[16.604862, "o", "\u001b[32m.\u001b[39m"] -[16.60804, "o", "\u001b[32m.\u001b[39m"] -[16.609716, "o", "\u001b[32m.\u001b[39m"] -[16.698088, "o", "\u001b[32m.\u001b[39m"] -[16.701755, "o", "\u001b[32m.\u001b[39m"] -[17.392063, "o", "\u001b[32m.\u001b[39m"] -[17.393764, "o", "\u001b[32m.\u001b[39m"] -[17.884376, "o", "\u001b[32m.\u001b[39m"] -[17.887072, "o", "\u001b[32m.\u001b[39m"] -[18.582579, "o", "\u001b[32m.\u001b[39m"] -[19.758866, "o", "\u001b[32m.\u001b[39m"] -[20.10378, "o", "\u001b[32m.\u001b[39m"] -[20.188124, "o", "\u001b[32m.\u001b[39m"] -[20.190997, "o", "\u001b[32m.\u001b[39m"] -[20.194198, "o", "\u001b[32m.\u001b[39m"] -[20.19729, "o", "\u001b[32m.\u001b[39m"] -[20.200778, "o", "\u001b[32m.\u001b[39m"] -[20.203841, "o", "\u001b[32m.\u001b[39m"] -[20.206947, "o", "\u001b[32m.\u001b[39m"] -[20.209848, "o", "\u001b[32m.\u001b[39m"] -[20.212991, "o", "\u001b[32m.\u001b[39m"] -[20.215933, "o", "\u001b[32m.\u001b[39m"] -[20.220685, "o", "\u001b[32m.\u001b[39m"] -[20.223623, "o", "\u001b[32m.\u001b[39m"] -[20.22706, "o", "\u001b[32m.\u001b[39m"] -[20.230982, "o", "\u001b[32m.\u001b[39m"] -[20.522623, "o", "\u001b[32m.\u001b[39m"] -[20.524401, "o", "\u001b[32m.\u001b[39m 70\r\n"] -[20.534015, "o", "\u001b[32m.\u001b[39m"] -[20.537307, "o", "\u001b[32m.\u001b[39m"] -[20.540145, "o", "\u001b[32m.\u001b[39m"] -[20.829833, "o", "\u001b[32m.\u001b[39m"] -[20.832045, "o", "\u001b[32m.\u001b[39m"] -[20.834552, "o", "\u001b[32m.\u001b[39m"] -[21.422744, "o", "\u001b[32m.\u001b[39m"] -[22.386403, "o", "\u001b[32m.\u001b[39m"] -[23.169818, "o", "\u001b[32m.\u001b[39m"] -[23.175509, "o", "\u001b[32m.\u001b[39m"] -[23.212763, "o", "\u001b[32m.\u001b[39m"] -[23.214929, "o", "\u001b[32m.\u001b[39m"] -[23.781427, "o", "\u001b[32m.\u001b[39m"] -[23.952444, "o", "\u001b[32m.\u001b[39m"] -[23.959864, "o", "\u001b[32m.\u001b[39m"] -[24.086761, "o", "\u001b[32m.\u001b[39m"] -[24.089563, "o", "\u001b[32m.\u001b[39m"] -[24.092176, "o", "\u001b[32m.\u001b[39m"] -[24.095097, "o", "\u001b[32m.\u001b[39m"] -[24.098089, "o", "\u001b[32m.\u001b[39m"] -[24.127314, "o", "\u001b[32m.\u001b[39m"] -[24.129907, "o", "\u001b[32m.\u001b[39m"] -[24.806419, "o", "\u001b[32m.\u001b[39m"] -[24.878957, "o", "\u001b[32m.\u001b[39m"] -[24.884158, "o", "\u001b[32m.\u001b[39m"] -[24.991337, "o", "\u001b[32m.\u001b[39m"] -[24.994004, "o", "\u001b[32m.\u001b[39m"] -[24.996655, "o", "\u001b[32m.\u001b[39m"] -[25.000241, "o", "\u001b[32m.\u001b[39m"] -[25.4608, "o", "\u001b[32m.\u001b[39m"] -[25.82725, "o", "\u001b[32m.\u001b[39m"] -[26.210432, "o", "\u001b[32m.\u001b[39m"] -[26.594897, "o", "\u001b[32m.\u001b[39m"] -[27.075666, "o", "\u001b[32m.\u001b[39m"] -[27.528966, "o", "\u001b[32m.\u001b[39m"] -[28.012695, "o", "\u001b[32m.\u001b[39m"] -[28.409656, "o", "\u001b[32m.\u001b[39m"] -[28.892516, "o", "\u001b[32m.\u001b[39m"] -[29.292292, "o", "\u001b[32m.\u001b[39m"] -[29.763855, "o", "\u001b[32m.\u001b[39m"] -[30.162229, "o", "\u001b[32m.\u001b[39m"] -[30.629813, "o", "\u001b[32m.\u001b[39m"] -[31.03177, "o", "\u001b[32m.\u001b[39m"] -[31.530366, "o", "\u001b[32m.\u001b[39m"] -[31.924273, "o", "\u001b[32m.\u001b[39m"] -[32.36012, "o", "\u001b[32m.\u001b[39m"] -[32.831099, "o", "\u001b[32m.\u001b[39m"] -[33.329429, "o", "\u001b[32m.\u001b[39m"] -[33.816013, "o", "\u001b[32m.\u001b[39m"] -[34.231821, "o", "\u001b[32m.\u001b[39m"] -[34.776858, "o", "\u001b[32m.\u001b[39m"] -[35.150119, "o", "\u001b[32m.\u001b[39m"] -[35.210946, "o", "\u001b[32m.\u001b[39m"] -[35.21962, "o", "\u001b[32m.\u001b[39m"] -[35.221488, "o", "\u001b[32m.\u001b[39m"] -[35.224465, "o", "\u001b[32m.\u001b[39m"] -[35.60984, "o", "\u001b[32m.\u001b[39m"] -[35.995592, "o", "\u001b[32m.\u001b[39m"] -[36.363098, "o", "\u001b[32m.\u001b[39m"] -[36.958837, "o", "\u001b[32m.\u001b[39m"] -[37.752141, "o", "\u001b[32m.\u001b[39m"] -[37.839582, "o", "\u001b[32m.\u001b[39m"] -[37.841932, "o", "\u001b[32m.\u001b[39m"] -[37.845048, "o", "\u001b[32m.\u001b[39m"] -[39.356925, "o", "\u001b[32m.\u001b[39m"] -[39.911978, "o", "\u001b[32m.\u001b[39m"] -[40.295471, "o", "\u001b[32m.\u001b[39m"] -[40.940361, "o", "\u001b[32m.\u001b[39m"] -[41.154252, "o", "\u001b[32m.\u001b[39m"] -[41.432138, "o", "\u001b[32m.\u001b[39m 140\r\n"] -[41.434481, "o", "\u001b[32m.\u001b[39m"] -[41.437309, "o", "\u001b[32m.\u001b[39m"] -[41.441146, "o", "\u001b[32m.\u001b[39m"] -[41.581222, "o", "\u001b[32m.\u001b[39m"] -[41.584482, "o", "\u001b[32m.\u001b[39m"] -[41.625576, "o", "\u001b[32m.\u001b[39m"] -[41.627305, "o", "\u001b[32m.\u001b[39m"] -[41.659229, "o", "\u001b[32m.\u001b[39m"] -[41.662534, "o", "\u001b[32m.\u001b[39m"] -[41.694316, "o", "\u001b[32m.\u001b[39m"] -[41.701375, "o", "\u001b[32m.\u001b[39m"] -[41.704581, "o", "\u001b[32m.\u001b[39m"] -[42.376543, "o", "\u001b[32m.\u001b[39m"] -[42.476824, "o", "\u001b[32m.\u001b[39m"] -[42.478839, "o", "\u001b[32m.\u001b[39m"] -[42.481715, "o", "\u001b[32m.\u001b[39m"] -[42.484633, "o", "\u001b[32m.\u001b[39m"] -[42.488889, "o", "\u001b[32m.\u001b[39m"] -[42.528137, "o", "\u001b[32m.\u001b[39m"] -[42.552329, "o", "\u001b[32m.\u001b[39m"] -[42.554635, "o", "\u001b[32m.\u001b[39m"] -[42.556823, "o", "\u001b[32m.\u001b[39m"] -[42.558976, "o", "\u001b[32m.\u001b[39m"] -[42.561567, "o", "\u001b[32m.\u001b[39m"] -[42.564431, "o", "\u001b[32m.\u001b[39m"] -[42.620699, "o", "\u001b[32m.\u001b[39m"] -[42.650226, "o", "\u001b[32m.\u001b[39m"] -[42.666602, "o", "\u001b[32m.\u001b[39m"] -[42.680723, "o", "\u001b[32m.\u001b[39m"] -[42.684743, "o", "\u001b[32m.\u001b[39m"] -[47.68954, "o", "\u001b[32m.\u001b[39m"] -[47.780846, "o", "\u001b[32m.\u001b[39m"] -[47.783708, "o", "\u001b[32m.\u001b[39m"] -[47.786977, "o", "\u001b[32m.\u001b[39m"] -[47.886417, "o", "\u001b[32m.\u001b[39m"] -[47.889335, "o", "\u001b[32m.\u001b[39m"] -[47.891938, "o", "\u001b[32m.\u001b[39m"] -[47.894413, "o", "\u001b[32m.\u001b[39m"] -[47.897318, "o", "\u001b[32m.\u001b[39m"] -[47.949176, "o", "\u001b[32m.\u001b[39m"] -[47.95105, "o", "\u001b[32m.\u001b[39m"] -[47.953478, "o", "\u001b[32m.\u001b[39m"] -[47.957264, "o", "\u001b[32m.\u001b[39m"] -[49.111051, "o", "\u001b[32m.\u001b[39m"] -[49.112566, "o", "\u001b[32m.\u001b[39m"] -[49.132479, "o", "\u001b[32m.\u001b[39m"] -[49.134287, "o", "\u001b[32m.\u001b[39m"] -[49.136029, "o", "\u001b[32m.\u001b[39m"] -[49.137782, "o", "\u001b[32m.\u001b[39m"] -[49.139821, "o", "\u001b[32m.\u001b[39m"] -[49.142604, "o", "\u001b[32m.\u001b[39m"] -[49.147519, "o", "\r\n\r\n"] -[49.147601, "o", "28 scenarios (\u001b[32m28 passed\u001b[39m)\r\n191 steps (\u001b[32m191 passed\u001b[39m)\r\n"] -[49.147648, "o", "0m46.92s (66.71Mb)\r\n"] -[49.240601, "x", "0"] +{"version":2,"width":80,"height":27,"timestamp":1787268746,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy test-bdd'","title":"Vortex ahoy test-bdd Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.069039, "o", "$ "] +[0.574262, "o", "a"] +[0.628288, "o", "h"] +[0.680101, "o", "o"] +[0.732472, "o", "y"] +[0.787634, "o", " "] +[0.842698, "o", "t"] +[0.894017, "o", "e"] +[0.949156, "o", "s"] +[1.004313, "o", "t"] +[1.056484, "o", "-"] +[1.111485, "o", "b"] +[1.16519, "o", "d"] +[1.219889, "o", "d"] +[1.678277, "o", "\r\n"] +[3.310633, "o", "\u001b[32m.\u001b[39m"] +[4.094089, "o", "\u001b[32m.\u001b[39m"] +[4.710398, "o", "\u001b[32m.\u001b[39m"] +[5.443221, "o", "\u001b[32m.\u001b[39m"] +[6.396445, "o", "\u001b[32m.\u001b[39m"] +[6.965891, "o", "\u001b[32m.\u001b[39m"] +[7.636369, "o", "\u001b[32m.\u001b[39m"] +[8.150011, "o", "\u001b[32m.\u001b[39m"] +[8.651923, "o", "\u001b[32m.\u001b[39m"] +[9.072076, "o", "\u001b[32m.\u001b[39m"] +[9.68981, "o", "\u001b[32m.\u001b[39m"] +[10.32565, "o", "\u001b[32m.\u001b[39m"] +[10.790618, "o", "\u001b[32m.\u001b[39m"] +[11.19094, "o", "\u001b[32m.\u001b[39m"] +[11.62724, "o", "\u001b[32m.\u001b[39m"] +[12.042419, "o", "\u001b[32m.\u001b[39m"] +[12.78287, "o", "\u001b[32m.\u001b[39m"] +[13.076437, "o", "\u001b[32m.\u001b[39m"] +[13.429941, "o", "\u001b[32m.\u001b[39m"] +[14.189866, "o", "\u001b[32m.\u001b[39m"] +[14.798645, "o", "\u001b[32m.\u001b[39m"] +[15.275746, "o", "\u001b[32m.\u001b[39m"] +[15.347749, "o", "\u001b[32m.\u001b[39m"] +[15.36893, "o", "\u001b[32m.\u001b[39m"] +[15.374128, "o", "\u001b[32m.\u001b[39m"] +[15.376193, "o", "\u001b[32m.\u001b[39m"] +[15.398813, "o", "\u001b[32m.\u001b[39m"] +[15.400923, "o", "\u001b[32m.\u001b[39m"] +[15.402859, "o", "\u001b[32m.\u001b[39m"] +[15.405198, "o", "\u001b[32m.\u001b[39m"] +[15.407242, "o", "\u001b[32m.\u001b[39m"] +[15.409119, "o", "\u001b[32m.\u001b[39m"] +[15.411372, "o", "\u001b[32m.\u001b[39m"] +[15.414442, "o", "\u001b[32m.\u001b[39m"] +[15.440231, "o", "\u001b[32m.\u001b[39m"] +[15.441919, "o", "\u001b[32m.\u001b[39m"] +[15.447918, "o", "\u001b[32m.\u001b[39m"] +[15.450096, "o", "\u001b[32m.\u001b[39m"] +[15.452924, "o", "\u001b[32m.\u001b[39m"] +[15.456681, "o", "\u001b[32m.\u001b[39m"] +[15.459288, "o", "\u001b[32m.\u001b[39m"] +[15.473011, "o", "\u001b[32m.\u001b[39m"] +[15.50147, "o", "\u001b[32m.\u001b[39m"] +[15.504682, "o", "\u001b[32m.\u001b[39m"] +[15.506336, "o", "\u001b[32m.\u001b[39m"] +[15.610993, "o", "\u001b[32m.\u001b[39m"] +[15.614719, "o", "\u001b[32m.\u001b[39m"] +[16.42909, "o", "\u001b[32m.\u001b[39m"] +[16.431115, "o", "\u001b[32m.\u001b[39m"] +[16.967858, "o", "\u001b[32m.\u001b[39m"] +[16.971245, "o", "\u001b[32m.\u001b[39m"] +[17.959002, "o", "\u001b[32m.\u001b[39m"] +[19.104785, "o", "\u001b[32m.\u001b[39m"] +[19.45973, "o", "\u001b[32m.\u001b[39m"] +[19.552208, "o", "\u001b[32m.\u001b[39m"] +[19.556994, "o", "\u001b[32m.\u001b[39m"] +[19.558568, "o", "\u001b[32m.\u001b[39m"] +[19.562921, "o", "\u001b[32m.\u001b[39m"] +[19.565882, "o", "\u001b[32m.\u001b[39m"] +[19.57275, "o", "\u001b[32m.\u001b[39m\u001b[32m.\u001b[39m"] +[19.575233, "o", "\u001b[32m.\u001b[39m"] +[19.58074, "o", "\u001b[32m.\u001b[39m"] +[19.581747, "o", "\u001b[32m.\u001b[39m"] +[19.58862, "o", "\u001b[32m.\u001b[39m"] +[19.590818, "o", "\u001b[32m.\u001b[39m"] +[19.596448, "o", "\u001b[32m.\u001b[39m"] +[19.598942, "o", "\u001b[32m.\u001b[39m"] +[19.893735, "o", "\u001b[32m.\u001b[39m"] +[19.901463, "o", "\u001b[32m.\u001b[39m 70\r\n"] +[19.930922, "o", "\u001b[32m.\u001b[39m"] +[19.936409, "o", "\u001b[32m.\u001b[39m"] +[19.940168, "o", "\u001b[32m.\u001b[39m"] +[20.235543, "o", "\u001b[32m.\u001b[39m"] +[20.237827, "o", "\u001b[32m.\u001b[39m"] +[20.240496, "o", "\u001b[32m.\u001b[39m"] +[20.834711, "o", "\u001b[32m.\u001b[39m"] +[21.846297, "o", "\u001b[32m.\u001b[39m"] +[22.742363, "o", "\u001b[32m.\u001b[39m"] +[22.753678, "o", "\u001b[32m.\u001b[39m"] +[22.789316, "o", "\u001b[32m.\u001b[39m"] +[22.792104, "o", "\u001b[32m.\u001b[39m"] +[23.373697, "o", "\u001b[32m.\u001b[39m"] +[23.561174, "o", "\u001b[32m.\u001b[39m"] +[23.569948, "o", "\u001b[32m.\u001b[39m"] +[23.720376, "o", "\u001b[32m.\u001b[39m"] +[23.72331, "o", "\u001b[32m.\u001b[39m"] +[23.726143, "o", "\u001b[32m.\u001b[39m"] +[23.72879, "o", "\u001b[32m.\u001b[39m"] +[23.732473, "o", "\u001b[32m.\u001b[39m"] +[23.764174, "o", "\u001b[32m.\u001b[39m"] +[23.76774, "o", "\u001b[32m.\u001b[39m"] +[24.337709, "o", "\u001b[32m.\u001b[39m"] +[24.406299, "o", "\u001b[32m.\u001b[39m"] +[24.412951, "o", "\u001b[32m.\u001b[39m"] +[24.629245, "o", "\u001b[32m.\u001b[39m"] +[24.632949, "o", "\u001b[32m.\u001b[39m"] +[24.635123, "o", "\u001b[32m.\u001b[39m"] +[24.639033, "o", "\u001b[32m.\u001b[39m"] +[25.159746, "o", "\u001b[32m.\u001b[39m"] +[25.544923, "o", "\u001b[32m.\u001b[39m"] +[25.96059, "o", "\u001b[32m.\u001b[39m"] +[26.353634, "o", "\u001b[32m.\u001b[39m"] +[26.873878, "o", "\u001b[32m.\u001b[39m"] +[27.290238, "o", "\u001b[32m.\u001b[39m"] +[27.78992, "o", "\u001b[32m.\u001b[39m"] +[28.203838, "o", "\u001b[32m.\u001b[39m"] +[28.713344, "o", "\u001b[32m.\u001b[39m"] +[29.121752, "o", "\u001b[32m.\u001b[39m"] +[29.622904, "o", "\u001b[32m.\u001b[39m"] +[30.033267, "o", "\u001b[32m.\u001b[39m"] +[30.541754, "o", "\u001b[32m.\u001b[39m"] +[30.933883, "o", "\u001b[32m.\u001b[39m"] +[31.470117, "o", "\u001b[32m.\u001b[39m"] +[31.870994, "o", "\u001b[32m.\u001b[39m"] +[32.357274, "o", "\u001b[32m.\u001b[39m"] +[33.013138, "o", "\u001b[32m.\u001b[39m"] +[33.576705, "o", "\u001b[32m.\u001b[39m"] +[34.126814, "o", "\u001b[32m.\u001b[39m"] +[34.606149, "o", "\u001b[32m.\u001b[39m"] +[35.01839, "o", "\u001b[32m.\u001b[39m"] +[35.403589, "o", "\u001b[32m.\u001b[39m"] +[35.472459, "o", "\u001b[32m.\u001b[39m"] +[35.482213, "o", "\u001b[32m.\u001b[39m"] +[35.484745, "o", "\u001b[32m.\u001b[39m"] +[35.488162, "o", "\u001b[32m.\u001b[39m"] +[35.916726, "o", "\u001b[32m.\u001b[39m"] +[36.393267, "o", "\u001b[32m.\u001b[39m"] +[36.772799, "o", "\u001b[32m.\u001b[39m"] +[37.388324, "o", "\u001b[32m.\u001b[39m"] +[38.169835, "o", "\u001b[32m.\u001b[39m"] +[38.273084, "o", "\u001b[32m.\u001b[39m"] +[38.276056, "o", "\u001b[32m.\u001b[39m"] +[38.279518, "o", "\u001b[32m.\u001b[39m"] +[39.900989, "o", "\u001b[32m.\u001b[39m"] +[40.511581, "o", "\u001b[32m.\u001b[39m"] +[40.908608, "o", "\u001b[32m.\u001b[39m"] +[41.562285, "o", "\u001b[32m.\u001b[39m"] +[41.714868, "o", "\u001b[32m.\u001b[39m"] +[41.960852, "o", "\u001b[32m.\u001b[39m 140\r\n"] +[41.966213, "o", "\u001b[32m.\u001b[39m"] +[41.967323, "o", "\u001b[32m.\u001b[39m"] +[41.971385, "o", "\u001b[32m.\u001b[39m"] +[42.319336, "o", "\u001b[32m.\u001b[39m"] +[42.320887, "o", "\u001b[32m.\u001b[39m"] +[42.368862, "o", "\u001b[32m.\u001b[39m"] +[42.371345, "o", "\u001b[32m.\u001b[39m"] +[42.496605, "o", "\u001b[32m.\u001b[39m"] +[42.497193, "o", "\u001b[32m.\u001b[39m"] +[42.500542, "o", "\u001b[32m.\u001b[39m"] +[42.50341, "o", "\u001b[32m.\u001b[39m"] +[42.506162, "o", "\u001b[32m.\u001b[39m"] +[42.510668, "o", "\u001b[32m.\u001b[39m"] +[42.561479, "o", "\u001b[32m.\u001b[39m"] +[42.564969, "o", "\u001b[32m.\u001b[39m"] +[42.624133, "o", "\u001b[32m.\u001b[39m"] +[42.626049, "o", "\u001b[32m.\u001b[39m"] +[42.705362, "o", "\u001b[32m.\u001b[39m"] +[42.708851, "o", "\u001b[32m.\u001b[39m"] +[42.738397, "o", "\u001b[32m.\u001b[39m"] +[42.745452, "o", "\u001b[32m.\u001b[39m"] +[42.748908, "o", "\u001b[32m.\u001b[39m"] +[43.345308, "o", "\u001b[32m.\u001b[39m"] +[43.423293, "o", "\u001b[32m.\u001b[39m"] +[43.425629, "o", "\u001b[32m.\u001b[39m"] +[43.428516, "o", "\u001b[32m.\u001b[39m"] +[43.431199, "o", "\u001b[32m.\u001b[39m"] +[43.437751, "o", "\u001b[32m.\u001b[39m"] +[43.462155, "o", "\u001b[32m.\u001b[39m"] +[43.481055, "o", "\u001b[32m.\u001b[39m"] +[43.483416, "o", "\u001b[32m.\u001b[39m"] +[43.485363, "o", "\u001b[32m.\u001b[39m"] +[43.487216, "o", "\u001b[32m.\u001b[39m"] +[43.488923, "o", "\u001b[32m.\u001b[39m"] +[43.492373, "o", "\u001b[32m.\u001b[39m"] +[43.544026, "o", "\u001b[32m.\u001b[39m"] +[43.571662, "o", "\u001b[32m.\u001b[39m"] +[43.586153, "o", "\u001b[32m.\u001b[39m"] +[43.605446, "o", "\u001b[32m.\u001b[39m"] +[43.608748, "o", "\u001b[32m.\u001b[39m"] +[48.615256, "o", "\u001b[32m.\u001b[39m"] +[48.7444, "o", "\u001b[32m.\u001b[39m"] +[48.748498, "o", "\u001b[32m.\u001b[39m"] +[48.751807, "o", "\u001b[32m.\u001b[39m"] +[48.896003, "o", "\u001b[32m.\u001b[39m"] +[48.899214, "o", "\u001b[32m.\u001b[39m"] +[48.902033, "o", "\u001b[32m.\u001b[39m"] +[48.905407, "o", "\u001b[32m.\u001b[39m"] +[48.908801, "o", "\u001b[32m.\u001b[39m"] +[48.967473, "o", "\u001b[32m.\u001b[39m"] +[48.969981, "o", "\u001b[32m.\u001b[39m"] +[48.973192, "o", "\u001b[32m.\u001b[39m"] +[48.977584, "o", "\u001b[32m.\u001b[39m"] +[50.434747, "o", "\u001b[32m.\u001b[39m"] +[50.437614, "o", "\u001b[32m.\u001b[39m"] +[50.465947, "o", "\u001b[32m.\u001b[39m"] +[50.466119, "o", "\u001b[32m.\u001b[39m"] +[50.468773, "o", "\u001b[32m.\u001b[39m"] +[50.471629, "o", "\u001b[32m.\u001b[39m"] +[50.473636, "o", "\u001b[32m.\u001b[39m"] +[50.477159, "o", "\u001b[32m.\u001b[39m"] +[50.483614, "o", "\r\n\r\n29 scenarios (\u001b[32m29 passed\u001b[39m)\r\n201 steps (\u001b[32m201 passed\u001b[39m)\r\n0m48.16s (66.90Mb)\r\n"] +[50.578243, "x", "0"] diff --git a/.vortex/docs/static/img/test-bdd.png b/.vortex/docs/static/img/test-bdd.png index 5b37a04ec5..769e66de15 100644 Binary files a/.vortex/docs/static/img/test-bdd.png and b/.vortex/docs/static/img/test-bdd.png differ diff --git a/.vortex/docs/static/img/test-bdd.svg b/.vortex/docs/static/img/test-bdd.svg index 648b648ed0..323f1b466e 100644 --- a/.vortex/docs/static/img/test-bdd.svg +++ b/.vortex/docs/static/img/test-bdd.svg @@ -1 +1 @@ -$ahoy$ahoytest-bdd.....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................70......................................................................14028scenarios(28passed)191steps(191passed)$$a$ah$aho$ahoyt$ahoyte$ahoytes$ahoytest$ahoytest-$ahoytest-b$ahoytest-bd0m46.92s(66.71Mb) \ No newline at end of file +$ahoy$ahoytest-bdd.........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................70..................................................................................................................................140$$a$ah$aho$ahoyt$ahoyte$ahoytes$ahoytest$ahoytest-$ahoytest-b$ahoytest-bd29scenarios(29passed)201steps(201passed)0m48.16s(66.90Mb) \ No newline at end of file diff --git a/.vortex/docs/static/img/test.json b/.vortex/docs/static/img/test.json index 5418cbf7d8..b8d3f16f22 100644 --- a/.vortex/docs/static/img/test.json +++ b/.vortex/docs/static/img/test.json @@ -1,150 +1,144 @@ -{"version":2,"width":80,"height":42,"timestamp":1786957090,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy test'","title":"Vortex ahoy test Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} -[0.037471,"o","$ "] -[0.287966,"o","a"] -[0.313039,"o","h"] -[0.338099,"o","o"] -[0.365629,"o","y"] -[0.392847,"o"," "] -[0.418762,"o","t"] -[0.444989,"o","e"] -[0.470085,"o","s"] -[0.495335,"o","t"] -[0.723033,"o","\r\n"] -[30.819144,"o","PHPUnit 11.5.56 by Sebastian Bergmann and contributors.\r\n\r\nRuntime: PHP 8.4.23 with PCOV 1.0.12\r\nConfiguration: /app/phpunit.xml\r\n\r\n"] -[30.842879,"o","."] -[30.846332,"o","."] -[30.847695,"o","."] -[30.849963,"o","."] -[30.853251,"o","."] -[30.854594,"o","."] -[30.857938,"o","."] -[30.859752,"o","."] -[30.863174,"o","."] -[30.864804,"o","."] -[30.867678,"o","."] -[30.870662,"o","."] -[30.872824,"o","."] -[30.875596,"o","."] -[30.877909,"o","."] -[30.880114,"o","."] -[30.882766,"o","."] -[30.884807,"o","."] -[30.887247,"o","."] -[30.889233,"o","."] -[30.891353,"o","."] -[30.894642,"o","."] -[30.89555,"o","."] -[30.897826,"o","."] -[30.899958,"o","."] -[30.901938,"o","."] -[30.904083,"o","."] -[30.906196,"o","."] -[30.909368,"o","."] -[30.912252,"o","."] -[30.913146,"o","."] -[30.915348,"o","."] -[30.917241,"o","."] -[30.919444,"o","."] -[30.921757,"o","."] -[30.924333,"o","."] -[30.926315,"o","."] -[30.928693,"o","."] -[30.931186,"o","."] -[30.933743,"o","."] -[30.93678,"o","."] -[30.938574,"o","."] -[30.941014,"o","."] -[30.943303,"o","."] -[30.945482,"o","."] -[30.947704,"o","."] -[30.950343,"o","."] -[30.955161,"o","."] -[30.959232,"o","."] -[30.965025,"o","."] -[30.970276,"o","."] -[30.974713,"o","."] -[30.978054,"o","."] -[30.981072,"o","."] -[30.983691,"o","."] -[30.987403,"o","."] -[30.99054,"o","."] -[30.993034,"o","."] -[30.995122,"o","."] -[30.997395,"o","."] -[31.000053,"o","."] -[31.002636,"o","."] -[31.005018,"o",". 63 / 128 ( 49%)\r\n"] -[31.007701,"o","."] -[31.010074,"o","."] -[31.012233,"o","."] -[31.014665,"o","."] -[31.017167,"o","."] -[31.020128,"o","."] -[31.022774,"o","."] -[31.025451,"o","."] -[31.027595,"o","."] -[31.029861,"o","."] -[31.032681,"o","."] -[31.035148,"o","."] -[31.037736,"o","."] -[31.040043,"o","."] -[31.043441,"o","."] -[31.045396,"o","."] -[31.047883,"o","."] -[31.050684,"o","."] -[31.053382,"o","."] -[31.0578,"o","."] -[31.060116,"o","."] -[31.064619,"o","."] -[31.067638,"o","."] -[31.070503,"o","."] -[31.076171,"o","."] -[31.076346,"o","."] -[31.076605,"o","."] -[31.076895,"o","."] -[31.07715,"o","."] -[31.088857,"o","."] -[31.089067,"o","."] -[31.090141,"o","."] -[31.090356,"o","."] -[31.090675,"o","."] -[31.091067,"o","."] -[31.091465,"o","."] -[31.091655,"o","."] -[31.092037,"o","."] -[33.983787,"o","."] -[36.125283,"o","."] -[39.765886,"o","."] -[45.101985,"o","."] -[51.223898,"o","."] -[57.481555,"o","."] -[64.57812,"o","."] -[70.56129,"o","."] -[76.099316,"o","."] -[83.16821,"o","."] -[93.920381,"o","."] -[102.393152,"o","."] -[108.488477,"o","."] -[114.964175,"o","."] -[122.946229,"o","."] -[149.062063,"o","."] -[209.777845,"o","."] -[232.382002,"o","."] -[241.587178,"o","."] -[251.427489,"o","."] -[275.271025,"o","."] -[304.693823,"o","."] -[314.025757,"o","."] -[321.942081,"o","."] -[329.688508,"o",". 126 / 128 ( 98%)\r\n"] -[335.315321,"o","."] -[343.264287,"o",". 128 / 128 (100%)"] -[343.26565,"o","\r\n\r\nHTML output was generated.\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-3-64373793.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-4-28366879.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-6-23032425.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-7-54859850.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-8-54859850.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-9-54859850.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTe"] -[343.265662,"o","st-10-76378463.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-11-76378463.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-12-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-13-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-14-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-15-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-16-97707656.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_star_wars_FunctionalJavascript_Example"] -[343.26578,"o","Test-1-43545822.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_star_wars_FunctionalJavascript_ExampleTest-2-98089372.html\r\n"] -[343.266856,"o","\r\n\r\n"] -[343.267203,"o","Time: 10:24.893, Memory: 18.00 MB\r\n\r\n"] -[343.267209,"o","OK (128 tests, 599 assertions)\r\n\r\nGenerating code coverage report in Cobertura XML format ... "] -[343.27675,"o","done [00:00.018]\r\n\r\nGenerating code coverage report in HTML format ... "] -[343.356781,"o","done [00:00.159]\r\n"] -[343.375845,"x","0"] +{"version":2,"width":80,"height":27,"timestamp":1787268519,"command":"php '/home/user/vortex/.vortex/docs/.utils/type-and-run.php' 'ahoy test'","title":"Vortex ahoy test Demo","env":{"SHELL":"/opt/homebrew/opt/bash/bin/bash"}} +[0.032394,"o","$ "] +[0.283638,"o","a"] +[0.311094,"o","h"] +[0.337516,"o","o"] +[0.365059,"o","y"] +[0.391737,"o"," "] +[0.417018,"o","t"] +[0.444526,"o","e"] +[0.470773,"o","s"] +[0.497153,"o","t"] +[0.724899,"o","\r\n"] +[8.358872,"o","PHPUnit 11.5.56 by Sebastian Bergmann and contributors.\r\n\r\nRuntime: PHP 8.4.23 with PCOV 1.0.12\r\nConfiguration: /app/phpunit.xml\r\n\r\n"] +[8.413791,"o","."] +[8.414536,"o","."] +[8.416617,"o","."] +[8.419172,"o","."] +[8.422011,"o","."] +[8.424177,"o","."] +[8.426865,"o","."] +[8.429266,"o","."] +[8.432187,"o","."] +[8.435586,"o","."] +[8.436734,"o","."] +[8.439419,"o","."] +[8.442104,"o","."] +[8.444633,"o","."] +[8.446979,"o","."] +[8.449028,"o","."] +[8.451698,"o","."] +[8.453718,"o","."] +[8.456061,"o","."] +[8.458079,"o","."] +[8.46049,"o","."] +[8.464256,"o","."] +[8.46438,"o","."] +[8.466392,"o","."] +[8.468717,"o","."] +[8.471133,"o","."] +[8.473341,"o","."] +[8.475569,"o","."] +[8.478001,"o","."] +[8.480722,"o","."] +[8.482866,"o","."] +[8.48535,"o","."] +[8.487552,"o","."] +[8.493076,"o",".."] +[8.493838,"o","."] +[8.496081,"o","."] +[8.498093,"o","."] +[8.499745,"o","."] +[8.502107,"o","."] +[8.504097,"o","."] +[8.506523,"o","."] +[8.510786,"o",".."] +[8.512494,"o","."] +[8.514869,"o","."] +[8.51708,"o","."] +[8.519203,"o","."] +[8.521403,"o","."] +[8.523569,"o","."] +[8.525833,"o","."] +[8.527888,"o","."] +[8.53019,"o","."] +[8.532208,"o","."] +[8.534676,"o","."] +[8.536961,"o","."] +[8.539403,"o","."] +[8.541015,"o","."] +[8.543422,"o","."] +[8.545419,"o","."] +[8.547814,"o","."] +[8.549692,"o","."] +[8.552089,"o",". 63 / 134 ( 47%)\r\n"] +[8.554095,"o","."] +[8.556448,"o","."] +[8.558464,"o","."] +[8.560775,"o","."] +[8.563474,"o","."] +[8.56524,"o","."] +[8.567899,"o","."] +[8.569899,"o","."] +[8.572193,"o","."] +[8.574703,"o","."] +[8.577061,"o","."] +[8.57909,"o","."] +[8.581484,"o","."] +[8.583552,"o","."] +[8.585839,"o","."] +[8.588712,"o","."] +[8.590755,"o","."] +[8.593149,"o","."] +[8.595558,"o","."] +[8.598121,"o","."] +[8.602521,"o",".."] +[8.604572,"o","."] +[8.606728,"o","."] +[8.608944,"o","."] +[8.610926,"o","."] +[8.613146,"o","."] +[8.615255,"o","."] +[8.617549,"o","."] +[8.619488,"o","."] +[8.622696,"o","."] +[8.623024,"o","."] +[8.623336,"o","."] +[8.623579,"o","."] +[8.62383,"o","."] +[8.636186,"o","........."] +[11.022162,"o","."] +[13.111839,"o","."] +[15.067197,"o","."] +[17.320499,"o","."] +[19.418058,"o","."] +[21.859644,"o","."] +[23.884459,"o","."] +[26.2723,"o","."] +[28.287574,"o","."] +[30.441577,"o","."] +[32.583502,"o","."] +[34.953812,"o","."] +[37.063961,"o","."] +[39.022502,"o","."] +[41.199176,"o","."] +[45.705685,"o","."] +[50.094159,"o","."] +[54.531991,"o","."] +[59.324756,"o",". 126 / 134 ( 94%)\r\n"] +[66.085763,"o","."] +[71.990443,"o","."] +[79.22603,"o","."] +[86.530431,"o","."] +[93.670721,"o","."] +[100.842388,"o","."] +[106.856963,"o","."] +[112.694741,"o",". 134 / 134 (100%)"] +[112.695873,"o","\r\n\r\nHTML output was generated.\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-1-85339458.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-2-72022802.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-1-69491653.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-2-64978669.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-3-64978669.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-4-64978669.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTe"] +[112.695876,"o","st-5-16276231.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-6-16276231.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-7-74358123.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-8-74358123.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-9-74358123.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-10-74358123.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_demo_FunctionalJavascript_CounterBlockTest-11-74358123.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_star_wars_FunctionalJavascript_ExampleTest-"] +[112.695893,"o","1-74900591.html\r\nhttp://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_star_wars_FunctionalJavascript_ExampleTest-2-86151970.html\r\n"] +[112.696441,"o","\r\n\r\n"] +[112.696627,"o","Time: 03:28.674, Memory: 20.00 MB\r\n\r\nOK (134 tests, 608 assertions)\r\n\r\nGenerating code coverage report in Cobertura XML format ... "] +[112.716524,"o","done [00:00.039]\r\n\r\nGenerating code coverage report in HTML format ... "] +[112.789292,"o","done [00:00.145]\r\n"] +[112.800333,"x","0"] diff --git a/.vortex/docs/static/img/test.png b/.vortex/docs/static/img/test.png index cbb77411d0..c782d368c7 100644 Binary files a/.vortex/docs/static/img/test.png and b/.vortex/docs/static/img/test.png differ diff --git a/.vortex/docs/static/img/test.svg b/.vortex/docs/static/img/test.svg index e0fee78a2d..85b8ba3f86 100644 --- a/.vortex/docs/static/img/test.svg +++ b/.vortex/docs/static/img/test.svg @@ -1 +1 @@ -$ahoy$ahoytestPHPUnit11.5.56bySebastianBergmannandcontributors.Runtime:PHP8.4.23withPCOV1.0.12Configuration:/app/phpunit.xml................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................63/128(49%)...............................................................126/128(98%)..128/128(100%)HTMLoutputwasgenerated.http://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-3-64373793.htmlts_sw_base_FunctionalJavascript_ExampleTest-4-28366879.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-6-23032425.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-7-54859850.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-8-54859850.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-9-54859850.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-10-76378463.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-11-76378463.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-12-97707656.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-13-97707656.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-14-97707656.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-15-97707656.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-16-97707656.htmlts_star_wars_FunctionalJavascript_ExampleTest-1-43545822.htmlts_star_wars_FunctionalJavascript_ExampleTest-2-98089372.htmlTime:10:24.893,Memory:18.00MBOK(128tests,599assertions)GeneratingcodecoveragereportinCoberturaXMLformat...done[00:00.018]$$a$ah$aho$ahoyt$ahoyte$ahoytests_sw_demo_FunctionalJavascript_CounterBlockTets_star_wars_FunctionalJavascript_ExampleGeneratingcodecoveragereportinCoberturaXMLformat...GeneratingcodecoveragereportinHTMLformat...GeneratingcodecoveragereportinHTMLformat...done[00:00.159] \ No newline at end of file +$ahoy$ahoytestPHPUnit11.5.56bySebastianBergmannandcontributors.Runtime:PHP8.4.23withPCOV1.0.12Configuration:/app/phpunit.xml.............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................63/134(47%)...............................................................126/134(94%)........134/134(100%)http://vortex_videos.docker.amazee.io/sites/simpletest/browser_output/Drupal_Tests_sw_base_FunctionalJavascript_ExampleTest-1-85339458.htmlts_sw_base_FunctionalJavascript_ExampleTest-2-72022802.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-1-69491653.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-2-64978669.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-3-64978669.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-4-64978669.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-5-16276231.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-6-16276231.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-7-74358123.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-8-74358123.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-9-74358123.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-10-74358123.htmlts_sw_demo_FunctionalJavascript_CounterBlockTest-11-74358123.htmlts_star_wars_FunctionalJavascript_ExampleTest-1-74900591.htmlts_star_wars_FunctionalJavascript_ExampleTest-2-86151970.htmlTime:03:28.674,Memory:20.00MBOK(134tests,608assertions)GeneratingcodecoveragereportinCoberturaXMLformat...done[00:00.039]$$a$ah$aho$ahoyt$ahoyte$ahoytes........................................................................................................................................................................................................................................................................................................................................HTMLoutputwasgenerated.ts_sw_demo_FunctionalJavascript_CounterBlockTets_star_wars_FunctionalJavascript_ExampleTest-GeneratingcodecoveragereportinCoberturaXMLformat...GeneratingcodecoveragereportinHTMLformat...GeneratingcodecoveragereportinHTMLformat...done[00:00.145] \ No newline at end of file diff --git a/.vortex/docs/tests/unit/AsciinemaPlayer/AsciinemaPlayer.test.js b/.vortex/docs/tests/unit/AsciinemaPlayer/AsciinemaPlayer.test.js index 54d2e4d9b5..915f33b356 100644 --- a/.vortex/docs/tests/unit/AsciinemaPlayer/AsciinemaPlayer.test.js +++ b/.vortex/docs/tests/unit/AsciinemaPlayer/AsciinemaPlayer.test.js @@ -340,6 +340,28 @@ describe('AsciinemaPlayer Component', () => { }); }); + describe('Prop Variants - Fit Options', () => { + test('renders with each fit value', () => { + const fitValues = ['width', 'height', 'both', false]; + + fitValues.forEach(fit => { + const { container } = render( + + ); + + expect(container.firstChild).toBeInTheDocument(); + }); + }); + + test('renders without a fit value', () => { + const { container } = render( + + ); + + expect(container.firstChild).toBeInTheDocument(); + }); + }); + describe('Prop Combinations', () => { test('renders with all boolean props true', () => { const { container } = render(