This file contains hidden or 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
set nocompatible | |
set number | |
:inoremap jj <ESC> | |
set tabstop=4 softtabstop=4 shiftwidth=4 expandtab | |
:set backspace=indent,eol,start |
This file contains hidden or 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
alias dc="docker-compose" | |
alias spec="./vendor/bin/phpspec" | |
alias behat="./vendor/bin/behat" | |
alias jasmine="./node_modules/jasmine/bin/jasmine.js" | |
alias ll="ls -lah" |
This file contains hidden or 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
docker run -tid -v /home/user/webdir:/usr/share/nginx/html --name php7fpm php:7-fpm | |
docker run -tidp 127.0.0.1:80:80 -v /home/user/webdir:/usr/share/nginx/html -v /home/user/webdir/nginx-host.conf:/etc/nginx/conf.d/default.conf --link php7fpm --name webapp nginx |
NewerOlder