This assumes you have a machine available, created with Docker Machine and VirtualBox
Go into each folder with the Dockerfile and create the image. ie cd on-tftp.
Create the image with the tag:
docker build -t rackhd/on-tftp .
| <html> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="format-detection" content="telephone=no" /> | |
| <meta name="msapplication-tap-highlight" content="no" /> | |
| <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 --> | |
| <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> | |
| <link rel="stylesheet" type="text/css" href="css/index.css" /> | |
| <link href='http://fonts.googleapis.com/css?family=Lobster|Quattrocento+Sans:400,700' rel='stylesheet' type='text/css'> | |
| <script type="text/javascript" src="cordova.js"></script> |
| kcoleman-mbp:jsmap1 kcoleman$ phonegap run ios | |
| [phonegap] detecting iOS SDK environment... | |
| [phonegap] using the local environment | |
| [phonegap] compiling iOS... | |
| Build settings from command line: | |
| ARCHS = i386 | |
| CONFIGURATION_BUILD_DIR = /Users/kcoleman/Documents/Aptana Studio 3 Workspace/jsmap1/platforms/ios/build/emulator | |
| SDKROOT = iphonesimulator8.1 | |
| VALID_ARCHS = i386 |
| #Read the how-to at http://www.kendrickcoleman.com/ | |
| #this is the clockwork configuration file | |
| require File.expand_path('../../config/boot', __FILE__) | |
| require File.expand_path('../../config/environment', __FILE__) | |
| require 'clockwork' | |
| include Clockwork | |
| every(30.seconds, 'Running my reoccurring process...') { SiteDatum.myreoccurringprocess } |
| <!-- The hidden div --> | |
| <div class="hiddenUL"> | |
| </div> | |
| <!-- This is a section of list items. There can be multiple unordered lists as long as the class is the same --> | |
| <ul class="item_box"> | |
| <li class="ViPR SDK Ruby"> | |
| <a href="https://github.com/nctiggy/Vipruby"> | |
| <div class="item_bg" style="background: url(images/items/vipruby.png) no-repeat center center; background-size: cover;"> | |
| <h2>ViPRuby</h2> |
| var mongoose = require('mongoose'), | |
| cfenv = require("cfenv"); | |
| var appEnv = cfenv.getAppEnv() | |
| var mongoLabUrl = appEnv.getServiceURL('my-mongo-database'); | |
| if (mongoLabUrl == null) { | |
| //local or prod development | |
| mongoose.connect('mongodb://localhost/my-mongo-database'); | |
| } else { | |
| //cloud foundry |
| #!/bin/sh | |
| echo Changing SSH for Root login | |
| sed -i 's/PermitRootLogin no/PermitRootLogin yes/g' /etc/ssh/sshd_config | |
| systemctl restart sshd | |
| systemctl enable sshd | |
| echo Starting Docker Services | |
| systemctl start docker | |
| systemctl enable docker |
| package main | |
| import ( | |
| "fmt" | |
| "math/rand" | |
| "time" | |
| ) | |
| func random(min, max int) int { | |
| rand.Seed(time.Now().Unix()) |
| language: node_js | |
| node_js: | |
| - "0.11" | |
| # whitelist | |
| branches: | |
| only: | |
| - master | |
| env: | |
| global: | |
| - secure: h6i/QFDLprVJe7u/ZT... |
| #!/bin/bash | |
| # Read more about REX-Ray storage persistance: | |
| # https://github.com/emccode/rexray | |
| # change the filter and grep to anything you want to search for. | |
| # This example shows searching for the name of machines beginning with "dev" | |
| # You can sort by driver or swarm instance, just change the awk column as well | |
| ALLHOSTS=$(docker-machine ls --filter name=dev* | grep dev* | awk '{print $1}') |