I’m finally switching to a Macbook Pro as my personal computer after a few months of using one at work. Local development on OSX is a lot easier and bug-free than on a Windows computer.
Download error on https://pypi.python.org/simple/pip/: unknown url type: https -- Some packages may not be found!
ImportError: cannot import name HTTPSHandler
I was trying to install pip in cygwin when this happened. Searches say openssl-devel needed to be installed, but it already was. Apparently python was compiled without ssl support.
My solution was to install cygwin-x86 instead of the 64x one.
"0 5 * * 1 docker run --rm --name=mycontainer ubuntu:13.10 /opt/bin/job" The above command is an example of how "docker run" would be used in crontab to run once every week at 5am.
--rm will delete the container once the job is finished running
--name will name the container and prevent duplicate jobs from running
You don't need to use "&" at the end, because crons already run in the background.