Skip to content

Instantly share code, notes, and snippets.

View llitfkitfk's full-sized avatar
🎯
Focusing

Paul llitfkitfk

🎯
Focusing
View GitHub Profile
@llitfkitfk
llitfkitfk / 0-QuickCmd
Last active June 21, 2019 02:55
Quick Command
quick cmd:
1. docker
2. backup
3. rsync
4. curl
5. ssh-keygen
@mpneuried
mpneuried / Makefile
Last active February 4, 2026 19:41
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)