this command set alias for git add -A
to git a
:
git config --global alias.a 'add -A'
this command set alias for git add -A
to git a
:
git config --global alias.a 'add -A'
git log --oneline --graph --reflog --date-order |
# replace wordpress with any image you like :) | |
FROM wordpress:php7.3-fpm-alpine | |
RUN curl -o ioncube.tar.gz http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz \ | |
&& tar -xvvzf ioncube.tar.gz \ | |
&& mv ioncube/ioncube_loader_lin_7.3.so `php-config --extension-dir` \ | |
&& rm -Rf ioncube.tar.gz ioncube \ | |
&& docker-php-ext-enable ioncube_loader_lin_7.3 |