Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

apps

Blame
  • build-and-push.sh 291 B
    #!/bin/bash
    
    set -eEuo pipefail
    
    [ -z "$(git status --porcelain)" ] || {
      echo "uncommited changes, clean up first"
      exit 1
    }
    docker build -t registry.git.cccv.de/c3lingo/rescheduled:latest .
    echo "Build done."
    docker push registry.git.cccv.de/c3lingo/rescheduled:latest
    echo "Push done."