Skip to content

Instantly share code, notes, and snippets.

@deadlysyn
Created January 22, 2018 04:28
Show Gist options
  • Save deadlysyn/f6e1029ee2ccde2a0870d1b16a755a7d to your computer and use it in GitHub Desktop.
Save deadlysyn/f6e1029ee2ccde2a0870d1b16a755a7d to your computer and use it in GitHub Desktop.
DOCKER=/usr/local/bin/docker
IMG=chowchow
build:
$(DOCKER) build . -t $(IMG)
run:
$(DOCKER) run --rm -v $(PWD):/app -p 3000:3000 \
-e IP="0.0.0.0" \
-e API_KEY="${API_KEY}" $(IMG)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment