Skip to content

Instantly share code, notes, and snippets.

@vkroz
vkroz / Makefile
Last active September 13, 2019 08:42 — forked from mpneuried/Makefile
Simple Makefile to build, run, tag and publish a docker containier to AWS-ECR
# import config.
# You can change the default config with `make cnf="config_special.env" build`
cnf ?= config.env
include $(cnf)
export $(shell sed 's/=.*//' $(cnf))
# import deploy config
# You can change the default deploy config with `make cnf="deploy_special.env" release`
dpl ?= deploy.env
include $(dpl)
@vkroz
vkroz / tmux cheatsheet.md
Last active July 6, 2021 15:21 — forked from MohamedAlaa/tmux-cheatsheet.markdown
tmux shortcuts & cheatsheet

tmux for humans

How to get

If tmux is not installed, then install it or buid from sources.

Installing

  • MacOS: brew install tmux
  • CentOS family: yum install tmux