Skip to content

Instantly share code, notes, and snippets.

View nicolas-zozol's full-sized avatar
🙂

Nicolas Zozol nicolas-zozol

🙂
View GitHub Profile
@nicolas-zozol
nicolas-zozol / .sh
Last active April 22, 2021 09:49
Bash shortcuts
export HOME="~/" # or change on windows
export CODE="/c/code/"
export TOOLS="$CODE/tools/"
### Bash Aliases
alias grep='grep --color=auto'
alias ls='ls --color=auto'
alias ll='ls -alF'
@nicolas-zozol
nicolas-zozol / docker-compose.yml
Created January 29, 2020 08:05
Adminer + Postgres docker-compose
---
version: "3.3"
services:
# POSTGRES: https://github.com/docker-library/postgres
db:
image: postgres
container_name: db
#restart: always
environment:
POSTGRES_USER: ${POSTGRES_USER}