loeffel / functions
#!/bin/bash
function sendToTower(){
scp $1 tower:/home/loeffel/Schreibtisch/scp
}
function startFinsmart(){
docker stop $(docker ps -a -q)
docker system prune
docker network create finsmart-shared
(cd /Users/lucasloffel/go/src/github.com/finsmart-gmbh/platform-api && make docker-up &)
(cd /Users/lucasloffel/js/finsmart-gmbh/ui && make docker-up &)
(cd /Users/lucasloffel/go/src/github.com/finsmart-gmbh/api && make docker-up)
}