One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #!/bin/bash | |
| # Delete all containers | |
| docker rm -f $(docker ps -a -q) | |
| # Delete all images | |
| docker rmi -f $(docker images -q) |
| # Used to run minikube shortly | |
| alias mk="minikube" | |
| # Used to run kubectl shortly | |
| alias k="kubectl" | |
| # Used to get ... | |
| alias kg="kubectl get" | |
| # Used to get all pods |
| PS C:\Windows\system32> New-PSDrive -Name Uninstall -PSProvider Registry -Root HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall | |
| PS C:\Windows\system32> dir Uninstall: | Get-ItemProperty -Name DisplayName, InstallDate, Publisher, InstallLocation, UninstallString, ModifyPath, EstimatedSize -ErrorAction SilentlyContinue | Sort-Object -Property DisplayName -ErrorAction SilentlyContinue |
| license: gpl-3.0 | |
| border: no | |
| height: 1060 |
| IAMUSERID %{NUMBER:iam_user_id} | |
| IAMUSERNAME [a-zA-Z0-9._-]+ | |
| IAMUSER arn:aws:iam::%{IAMUSERID}:user/%{IAMUSERNAME:iam_user_name} | |
| S3TYPE (?:OBJECT) | |
| S3OP [a-zA-z]+ | |
| S3SOAPOPERATION (?:SOAP\.%{S3OP}) | |
| S3RESTOPERATION (?:REST\.%{S3OP}\.%{S3TYPE}) | |
| S3WEBSITEOPERATION (?:WEBSITE\.%{S3OP}\.%{S3TYPE}) | |
| S3OPERATION (?:%{S3SOAPOPERATION}|%{S3RESTOPERATION}|%{S3WEBSITEOPERATION}) |
| # Prepare dependencies | |
| sudo yum -y groupinstall "Development Tools" && \ | |
| sudo yum -y install ncurses-devel \ | |
| glibc-static && | |
| # Install Node Version Manager ("nvm") | |
| curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash && | |
| # Install node.js | |
| nvm install v6.9.4 && |
Define your app’s environment with a Dockerfile so it can be reproduced anywhere.
####Build, Ship, Run. An open platform for distributed applications for developers and sysadmins.
Define the services that make up your app in docker-compose.yml so they can be run together in an isolated environment. Lastly, run docker-compose up and Compose will start and run your entire app. -https://docs.docker.com/compose
| Book: <..> | |
| Title: Show by example | |
| Author: Matthew Davis <matthew@appsoa.io> |