-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jim Van Fleet
committed
Jul 27, 2016
1 parent
e74a7e0
commit 381807c
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| bin/build.sh | ||
| bin/destroy.sh | ||
| bin/install.sh | ||
| bin/rebuild.sh | ||
| bin/rerun.sh | ||
| bin/run.sh | ||
| bin/test.sh |
This file contains 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| # util | ||
|
|
||
| This repository is intended to be downloaded into a container repository during development for convenience purposes. Since the major mechanisms of developing to the Docker container construction lifecycle are identical across container images, this repository allows for consistency and additional ease of use across all container images. | ||
|
|
||
| ## Install | ||
|
|
||
| To use these scripts on your container image construction project, issue these commands in the root directory of your container project: | ||
|
|
||
| ``` | ||
| ``` | ||
|
|
||
| ### common.bash | ||
|
|
||
| The installation process will create a common.bash file. This file should be the central, canonical authority for management of environment variables. While a subprocess may override them, the files in common.bash should be treated as authoritative defaults. Processes (e.g. `docker build`, `bats`, inside `Jenkinsfile`) can read this file and process the results therein. | ||
|
|
||
| You should edit this file to change the image name, and add any other helpful environment variables. | ||
|
|
||
| ## Use | ||
|
|
||
|
|
||
| ### Building | ||
|
|
||
| #### build.sh | ||
| `bin/build ` | ||
| #### destroy.sh | ||
| #### rebuild.sh | ||
|
|
||
| ### Running | ||
| ### rerun.sh | ||
| ### run.sh | ||
|
|
||
|
|
||
| ### Testing | ||
| #### test.sh |