-
Notifications
You must be signed in to change notification settings - Fork 0
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
Aug 9, 2016
1 parent
d7a2b6f
commit a1fcfa4
Showing
2 changed files
with
15 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,6 @@ | ||
| #!/bin/bash | ||
|
|
||
| # This file will run a container in the background | ||
| source common.bash . | ||
|
|
||
| docker run -d --name=$imagename -p 8080:8080 $maintainer/$imagename |
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,9 @@ | ||
| #!/bin/bash | ||
|
|
||
| # This file will run a container in the background | ||
| source common.bash . | ||
|
|
||
| echo "Cleaning up Docker image($maintainer/$imagename)" | ||
| docker stop $imagename >> /dev/null | ||
| docker rm $imagename | ||
| exit 0 |