generator-reshow 0.17.9 → 0.17.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,7 +2,7 @@
2
2
 
3
3
  > Docker generator
4
4
 
5
- ## Usage
5
+ ## Environment Variables
6
6
 
7
- ```
8
- ```
7
+ * DOCKER_LOGIN
8
+ * DOCKER_PASSWORD
@@ -5,7 +5,9 @@ DIR="$(
5
5
  )"
6
6
  sourceImage=$(${DIR}/../support/sourceImage.sh)
7
7
  pid=$$
8
+ folderName=${PWD##*/}
8
9
 
9
- cli='env docker run --rm -it';
10
- cli+=" --name ${sourceImage}-${pid} ${sourceImage}";
11
- bash -c "$cli";
10
+ cli='env docker run --rm -it'
11
+ cli+=" --name ${folderName}_${pid} ${sourceImage}"
12
+ echo $cli
13
+ bash -c "$cli"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generator-reshow",
3
- "version": "0.17.9",
3
+ "version": "0.17.10",
4
4
  "description": "Yeoman generator for reshow. (app, generator, ...etc)",
5
5
  "author": "Hill <hill@kimo.com>",
6
6
  "repository": {