- Replace the
user-data
file on your coreos-vagrant directory. - Run command:
vagrant provision
- Run command:
vagrant reload
- Open the docker-web site, have fun :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python -tt | |
""" Example of how to use Google IMAP Extensions using Python | |
http://code.google.com/apis/gmail/imap/ | |
""" | |
import imaplib | |
import re | |
class GmailIMAP4_SSL( imaplib.IMAP4_SSL ): |