Skip to content

Instantly share code, notes, and snippets.

View naazeri's full-sized avatar
👨‍💻
Developing

Reza Nazeri naazeri

👨‍💻
Developing
View GitHub Profile
@naazeri
naazeri / gistGitAlias.md
Last active March 23, 2023 18:05
Add Alias to Git

this command set alias for git add -A to git a:

git config --global alias.a 'add -A'

@naazeri
naazeri / gist:167ce9941098930e1160864e3753be29
Created March 9, 2021 15:01
Show All Git Commits in Beautiful Mode
git log --oneline --graph --reflog --date-order
@naazeri
naazeri / Dockerfile
Last active January 18, 2020 03:09 — forked from kubaceg/Dockerfile
Docker install ioncube extension (php 7.3)
# 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