NOTE: if you are using the docker without the http://azk.io installed, use
dockerinstead ofadocker.
adocker kill $(adocker ps -q | tr '\r\n' ' ')
NOTE: if you are using the docker without the http://azk.io installed, use
dockerinstead ofadocker.
adocker kill $(adocker ps -q | tr '\r\n' ' ')
| #!/bin/bash | |
| # | |
| # Creates a signed and zipaligned APK from your Ionic project | |
| # | |
| # Place your keystore in the root of your project and name it <company>.keystore | |
| # Use this script as following : | |
| # $ ./release.sh [company] [version] | |
| # | |
| # Don't forget to gitignore your key and your compiled apks. | |
| # |
| #! /bin/bash | |
| curl -s "https://github.com/search?utf8=%E2%9C%93&q=Azkfile.js+in%3Apath+-user%3Aazukiapp+-user%3Arun-project+-user%3Amarcusgadbem+-user%3Aheitortsergent+-user%3Asaitodisse+-user%3Agullitmiranda+-user%3Afearenales+-user%3Anuxlli&type=Code&ref=searchresults" | grep counter | sed s/.*counter\"\>//g | sed s/\<\\/.*//g |
Get boot2docker working with nfs instead of vboxsf.
Tested on:
- Boot2Docker-cli version: v1.6.0
Git commit: 9894ae9
- Boot2Docker-cli version: v1.6.2
Git commit: cb2c3bc
| { | |
| "env": { | |
| "browser": true, | |
| "node": true, | |
| "es6": true | |
| }, | |
| "plugins": ["react"], | |
| "ecmaFeatures": { |
| /** | |
| * Documentation: http://docs.azk.io/Azkfile.js | |
| */ | |
| // Adds the systems that shape your system | |
| systems({ | |
| proprietario: { | |
| // Dependent systems | |
| depends: ["mysql"], | |
| provision: [ |
| var blob = require('azure').createBlobService() | |
| , fs = require('fs') | |
| , Q = require('q'); | |
| var options = { publicAccessLevel: 'blob' }; | |
| // With Q | |
| var fsLstat = Q.nbind(fs.lstat, fs); | |
| var getContainer = Q.nbind(blob.createContainerIfNotExists, blob); | |
| var streamFile = Q.nbind(blob.createBlockBlobFromStream, blob); |