This is my theme for oh-my-zsh.
It's a fork from the clean
theme with some personnal modifications
# the following two lines give a two-line status, with the current window highlighted | |
hardstatus alwayslastline | |
hardstatus string '%{= kG}[%{G}%H%? %1`%?%{g}][%= %{= kw}%-w%{+b yk} %n*%t%?(%u)%? %{-}%+w %=%{g}][%{B}%m/%d %{W}%C%A%{g}]' | |
# huge scrollback buffer | |
defscrollback 5000 | |
# no welcome message | |
startup_message off |
This is my theme for oh-my-zsh.
It's a fork from the clean
theme with some personnal modifications
COMPOSER = docker run --rm -it -v `pwd`:/project jeckel/composer:alpine-php7 | |
PHP = docker run --rm -it -v `pwd`:/project -w /project php:7-cli php | |
CODECEPTION = docker run --rm -it -v `pwd`:/project jeckel/codeception | |
.PHONY: default install update test | |
default: install | |
install: | |
$(COMPOSER) install --ignore-platform-reqs |
#!/bin/bash | |
######################################################### | |
# docker | |
# Stop all running container | |
alias dstopall="if [ \$(docker ps -q | wc -l) -gt 0 ] ; then docker stop \$(docker ps -q); fi" | |
# Remove all container's instance | |
alias drmall="if [ \$(docker ps -aq | wc -l) -gt 0 ] ; then docker rm \$(docker ps -aq); fi" | |
# Remove all untagged / unfinished images | |
alias drminone="if [ \$(docker images -q --filter dangling=true | wc -l) -gt 0 ] ; then ; docker rmi -f \$(docker images -q --filter dangling=true) ; fi" |
#!/bin/bash | |
function docker_status() { | |
local CONTAINER=$1 | |
local RUNNING=$(docker inspect --format="{{.State.Running}}" $CONTAINER 2> /dev/null) | |
if [ $? -eq 1 ]; then | |
echo "$CONTAINER does not exist." | |
else |
#!/bin/bash | |
# ---------------------------------------------------------- | |
# Define common colors and styles | |
# | |
readonly RED='\033[0;31m' | |
readonly GREEN='\033[0;32m' | |
readonly ORANGE='\033[0;33m' | |
readonly BLUE='\033[0;34m' | |
readonly PURPLE='\033[0;35m' |
# Ignore all .files except .babelrc | |
.* | |
!.babelrc | |
# Ignore build directories and dependencies | |
# everything that will be re-generated by the install/build steps | |
lib | |
dist | |
node_modules |
docker-compose.yml:
version: "3.2"
volumes:
html:
services:
wordpress:
image: wordpress:latest
Here is a collection of links to presentations and other resources shared during the last #APIDays2018 in Paris.
If you find some mistakes, or have any links to add to this list, feel free to add some comments, or contact me on Twitter or LinkedIn
version: 2 | |
jobs: | |
# Run tests | |
test: | |
working_directory: ~/novi | |
docker: | |
- image: circleci/node:10 | |
- image: postgres:alpine | |
environment: | |
POSTGRES_USER: root |