Skip to content

Instantly share code, notes, and snippets.

View jansilvo's full-sized avatar
🎯
Focusing

jansilvo

🎯
Focusing
View GitHub Profile
@jansilvo
jansilvo / Dockerfile
Created July 5, 2019 15:18
php7.2-zts+ptherad+parallel+shmop+sysvmsg
FROM php:7.2-zts-alpine
RUN apk update && apk upgrade \
&& apk add --no-cache git bash \
g++ make autoconf \
nano zip libxml2-dev libmemcached-dev \
libxml2-dev icu-dev curl-dev pcre-dev
RUN pecl install xdebug \
&& pecl install parallel \
@jansilvo
jansilvo / .zshrc
Last active December 13, 2018 10:03
[zshrc aliases and functions config]Move aliases and functions in separate files #zshrc #ohmyzsh
# Load aliases from .zsh_aliases.
if [ -f $HOME/.zsh_aliases ]; then
. $HOME/.zsh_aliases
fi
# Load functions from .zsh_functions.
if [ -f $HOME/.zsh_functions ]; then
. $HOME/.zsh_functions
fi