- security?
- same issue as docker images from dockerhub
- http://twitter.com/nixgeek/status/694103481909649409
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
| #!/bin/bash | |
| # | |
| # /etc/rc.d/init.d/xvfbd | |
| # | |
| # chkconfig: 345 95 28 | |
| # description: Starts/Stops X Virtual Framebuffer server | |
| # processname: Xvfb | |
| # | |
- WiFi is
Campus-Guestpassword isElc0Campus
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
| #!/bin/bash | |
| ##################################################### | |
| # Name: Bash CheatSheet for Mac OSX | |
| # | |
| # A little overlook of the Bash basics | |
| # | |
| # Usage: | |
| # | |
| # Author: J. Le Coupanec | |
| # Date: 2014/11/04 |
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
| # Version key/value should be on his own line | |
| PACKAGE_VERSION=$(cat package.json \ | |
| | grep version \ | |
| | head -1 \ | |
| | awk -F: '{ print $2 }' \ | |
| | sed 's/[",]//g' \ | |
| | tr -d '[[:space:]]') | |
| echo $PACKAGE_VERSION |
This proposal captures the potential use of an ASP.NET specific Docker image that builds on what microsoft/dotnet already provides.
We could build 2 images:
###microsoft/aspnet: This image would be optimised for you to load your already compiled ASP.NET applications into.
- Contains the same as the
microsoft/dotnet:1.0.0-core, just a runtime and OS pre-reqs. - Contains a runtime cache of native assembly images. This cache would contain the closure of all or most of the packages that the ASP.NET team ships. ASP.NET packages + all their dependencies.
- In benchmarks we have shown that including all ASP.NET assemblies in a runtime cache increase the image size-on-disk by ~10mb whilst improving the start time of a container running MVC Music Store by ~32% (around a 3 second improvement). This improvement represents the time taken to JIT the applications dependencies.
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
| Configuration JenkinsSlave { | |
| param ( | |
| [string[]]$NodeName | |
| ) | |
| Import-DscResource -Module PSDesiredStateConfiguration | |
| Import-DscResource -Module xPSDesiredStateConfiguration | |
| Node $AllNodes.Nodename { |
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
| Config.jobs.each { _job -> | |
| switch (_job.type) { | |
| case 'job': | |
| job(namePrefix + _job.name) { | |
| logRotator(CarbonApiProps.num_days_to_keep, CarbonApiProps.num_builds_to_keep, | |
| CarbonApiProps.num_artifacts_days, CarbonApiProps.num_artifacts) | |
| throttleConcurrentBuilds { | |
| categories([carbonThrottleCategory]) | |
| } | |
| if (serverName && _job.remoteCommand) { |
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
| provider "aws" { | |
| region = "${var.region}" | |
| profile = "${var.profile}" | |
| allowed_account_ids = ["${var.aws_account_id}"] | |
| } | |
| data "aws_availability_zones" "available" {} | |
| data "aws_ami" "amazon_linux" { | |
| most_recent = true |
OlderNewer