Skip to content
Snippets Groups Projects
make_and_push_docker.bat 253 B
Newer Older
  • Learn to ignore specific revisions
  • 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