This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ghost:4 | |
RUN apt-get update -y && \ | |
apt-get install -y mariadb-client | |
COPY ./wait-for-mysql.sh /usr/local/bin/wait-for-mysql.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Computer Information: | |
Manufacturer: Unknown | |
Model: Unknown | |
Form Factor: Laptop | |
No Touch Input Detected | |
Processor Information: | |
CPU Vendor: GenuineIntel | |
CPU Brand: Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz | |
CPU Family: 0x6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param( | |
[parameter( ValueFromRemainingArguments = $true )] | |
[string[]]$args | |
) | |
function Show-Help { | |
Clear-Host | |
Write-Host | |
Write-Host "geget.ps1, Version 0.0.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
usage() | |
{ | |
clear | |
echo | |
RESET_ATTR="$(tput sgr0)" | |
COLOR_GREEN="$(tput setaf 2)" | |
COLOR_DARK_GREY="$(tput setaf 245)" | |
COLOR_DARK_BLUE="$(tput setaf 046)" |