Skip to content

Instantly share code, notes, and snippets.

View luetkemj's full-sized avatar
🌄
Working from home

Mark Luetke luetkemj

🌄
Working from home
View GitHub Profile
@bahmutov
bahmutov / Docker shell commands.sh
Last active February 9, 2024 07:55
A personal cheat sheet for running local Node project in a Docker container
# See list of docker virtual machines on the local box
$ docker-machine ls
NAME ACTIVE URL STATE URL SWARM DOCKER ERRORS
default * virtualbox Running tcp://192.168.99.100:2376 v1.9.1
# Note the host URL 192.168.99.100 - it will be used later!
# Build an image from current folder under given image name
$ docker build -t gleb/demo-app .
@acarballo-cs
acarballo-cs / eslintrc
Last active November 17, 2018 01:48
An eslint Shareable Config for JavaScript Standard Style
parser: "babel-eslint"
extends: [
"standard",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
]
env:
browser: true
parserOptions:
jsx: true