At Nasqueron, I maintain this Phabricator instance, and overview the operations infrastructure.
Website: https://www.dereckson.be/
Individual board: User-Dereckson
At Nasqueron, I maintain this Phabricator instance, and overview the operations infrastructure.
Website: https://www.dereckson.be/
Individual board: User-Dereckson
Another way to solve this according https://github.com/koalaman/shellcheck/wiki/SC2086:Quoting this doesn't work, since in the default case, "$debug" would expand to one empty argument while $debug would expand into zero arguments. In this case, you can use an array with zero or one elements as outlined above, or you can use an unquoted expansion with an alternate value:
debug="" [[ $1 == "--trace-commands" ]] && debug="yes" bash ${debug:+"-x"} scriptThis is better than an unquoted value because the alternative value can be properly quoted, e.g. wget ${output:+ -o "$output"}.
Regression introduced in rOPSbf659c5728cbfeab65c1fba8772f2037278000b5:
Ok, but typo to fix.
Could be presented in January as "one year of open source :: 2020 retrospective" with added insights?
Imported from https://github.com/nasqueron/docker-openfire/pull/1
Clear extra lines from README
PostgreSQL by default doesn't consume 2 GB of RAM for an InnoDB cache, so I'm not sure it's a good idea.
Currently, the image runs on Buster, so we're more up to date:
$ php -r "echo ini_get('memory_limit').PHP_EOL;" 2G $ composer install ... Writing lock file Generating autoload files ...
Let's try in the container by the way:
We can ignore build failure, it's a Composer out of memory issue. With 2G on WindRiver, I was okay: php -d memory_limit=2G /opt/composer/composer.phar install.