Skip to content
Snippets Groups Projects
make_and_push_docker.bat 260 B
Newer Older
  • Learn to ignore specific revisions
  • Jonas Leder's avatar
    Jonas Leder committed
    echo off
    title Building and Pushing docker image
    cls
    
    docker pull python:3
    docker build --rm -f "Dockerfile" -t url_shorter:latest .
    docker tag url_shorter docker.jonasled.de/url_shorter/url_shorter
    
    docker push docker.jonasled.de/url_shorter/url_shorter