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
| webapp: | |
| ports: | |
| - "80" | |
| volumes_from: | |
| - "file_server" | |
| file_server: | |
| image: ubuntu |
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
| webapp: | |
| volumes: | |
| - /var/lib/mysql | |
| - ./cache:/tmp/cache |
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
| webapp: | |
| ports: | |
| - "80:80" | |
| - "8080" | |
| - "8000-8030:3000-3030" | |
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
| webapp: | |
| build: . | |
| links: | |
| - cache | |
| cache: | |
| image: redis |
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
| ... | |
| cache: | |
| image: redis | |
| ... |
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
| myapp: | |
| build: . | |
| build: /path/to/dir/with/Dockerfile |
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
| var reqeustOptions = { | |
| uri: urljoin(apiBaseUrl, apiBasePath, 'SMS'), | |
| method: 'POST', | |
| auth: { | |
| user: 'username', | |
| pass: 'pwd' | |
| }, | |
| form: { | |
| from: fromNubmer, | |
| to: toNumber, |
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
| # Apps | |
| apps=( | |
| alfred | |
| dropbox | |
| google-chrome | |
| slack | |
| firefox | |
| hazel | |
| spotify |
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
| require 'elasticsearch' | |
| require 'redis' | |
| require 'colorize' | |
| unless ARGV.length == 3 | |
| puts 'Wrong number of arguments' | |
| puts | |
| puts 'Syntax: ruby migrate-doorman-v1.rb <elasticsearch URL> <source index> <target-index>' | |
| puts 'Example: ruby migrate-doorman-v1.rb http://localhost:9200 doorman-v1 doorman-v2' | |
| exit |
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
| Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions -EnableShowFileExtensions | |
| Set-StartScreenOptions -EnableBootToDesktop -EnableDesktopBackgroundOnStart -EnableShowStartOnActiveScreen -EnableShowAppsViewOnStartScreen -EnableSearchEverywhereInAppsView -EnableListDesktopAppsFirst | |
| Install-WindowsUpdate -acceptEula | |
| Disable-UAC | |
| Disable-InternetExplorerESC | |
| cinst notepad2 -y | |
| cinst SublimeText3 -y | |
| cinst sublimetext3-contextmenu -y |