Skip to content

Instantly share code, notes, and snippets.

@Matts966
Created September 2, 2019 10:57
Show Gist options
  • Save Matts966/ae1091de3a4ce6c49ac4ab8dfcbc4f9b to your computer and use it in GitHub Desktop.
Save Matts966/ae1091de3a4ce6c49ac4ab8dfcbc4f9b to your computer and use it in GitHub Desktop.
lgo does not have top level makefile now but a PR is made (which I don't like so much). So I use my simple one.
.PHONY: up down url
up:
(cd docker/jupyter && ./up.sh)
down:
(cd docker/jupyter && ./down.sh)
url:
(cd docker/jupyter && docker-compose exec jupyter jupyter notebook list | grep http | sed -E 's/ .*//g')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment