Skip to content

Instantly share code, notes, and snippets.

View jmaq-cr's full-sized avatar

Jose Aguilar jmaq-cr

  • Conservation International
  • Costa Rica
  • 08:48 (UTC -06:00)
  • LinkedIn in/jmaqcr
View GitHub Profile
@bahmutov
bahmutov / Docker shell commands.sh
Last active February 21, 2026 17:33
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 .