Skip to content

Instantly share code, notes, and snippets.

View JediMindtrick's full-sized avatar

Brandon Wilhite JediMindtrick

View GitHub Profile
@JediMindtrick
JediMindtrick / ChocolateyIIS
Created December 8, 2014 23:02
List of chocolatey commands to install IIS
#under construction
#based off of https://codealoc.wordpress.com/2013/03/15/installing-iis-with-chocolatey/
choco WindowsFeatures IIS-WebServerRole
choco WindowsFeatures IIS-ISAPIFilter
choco WindowsFeatures IIS-ISAPIExtensions
choco WindowsFeatures IIS-NetFxExtensibility
choco WindowsFeatures IIS-ASPNET
@JediMindtrick
JediMindtrick / Docker Import-Export-Load-Save
Created December 24, 2014 16:20
List of commands to import-export and load-save docker images
#see http://blog.flux7.com/blogs/docker/docker-commands
#and http://www.jamescoyle.net/how-to/1512-export-and-import-a-docker-image-between-nodes
#and https://github.com/docker/docker/issues/188
#export to file
docker ps -a
docker export <CONTAINER ID> > image.tar
#import from file
tar -c <FILENAME> | docker import - image_name