diff --git a/Makefile b/Makefile index 6dfa071..501638f 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,12 @@ +REMOTEHOST := root@las2.bounce + default: remote-build build: docker build -t sneak/dockerized-workstation . upload: - rsync -avP --delete ./ root@las2.tor:dockerized-workstation/ + rsync -avP --delete ./ $(REMOTEHOST):dockerized-workstation/ remote-build: upload - ssh -t root@las2.tor "cd dockerized-workstation && make build" + ssh -t $(REMOTEHOST) "cd dockerized-workstation && make build"