- Docker Machine + Docker
- curl
- A Virtualbox-driven Docker Machine called "default".
The git.io URL (https://git.io/v2MHR) is a shortened form of the raw url of the plist.
The git.io URL (https://git.io/v2MHR) is a shortened form of the raw url of the plist.
| #!/bin/sh | |
| # Fix NTP/Time | |
| # https://github.com/boot2docker/boot2docker/issues/290 | |
| boot2docker ssh -- sudo killall -9 ntpd | |
| boot2docker ssh -- sudo ntpclient -s -h pool.ntp.org | |
| boot2docker ssh -- sudo ntpd -p pool.ntp.org |
| ====================================================== | |
| Setting up Django using Apache/mod_wsgi on Ubuntu 8.10 | |
| ====================================================== | |
| This article will cover setting up Django using Apache/mod_wsgi on Ubuntu | |
| 8.10. The article is targeted at a production environment, but keep in mind | |
| this is a more generalized environment. You may have different requirements, | |
| but this article should at least provide the stepping stones. | |
| The article will use distribution packages where nesscary. As of 8.10 the |
| from fabric.api import * | |
| """ | |
| Base configuration | |
| """ | |
| env.project_name = '$(project)' | |
| env.database_password = '$(db_password)' | |
| env.site_media_prefix = "site_media" | |
| env.admin_media_prefix = "admin_media" | |
| env.newsapps_media_prefix = "na_media" |