-
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.
Torrent Suite Software 5.12.1 SDK docs
- Loading branch information
Showing
93 changed files
with
5,899 additions
and
6,254 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 | ||
|
||
repo_name='iontorrent' | ||
image_name='sdk-docs-builder' | ||
|
||
docker run -v $(pwd):/src $repo_name/$image_name |
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 | ||
repo_name="iontorrent" | ||
image_name="sdk-docs-builder" | ||
|
||
#build docker file | ||
# n.b.: assume Dockerfile is in same dir | ||
if docker build --rm -t $repo_name/$image_name .; then | ||
echo "$image_name is successfully built." | ||
fi |
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,11 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
repo_name="iontorrent" | ||
image_name="sdk-docs-builder" | ||
|
||
for name in $(docker images --format '{{.Repository}}:{{.Tag}}'); do | ||
if [[ $name =~ $repo_name/$image_name:.* ]]; then | ||
docker push $name | ||
fi | ||
done |
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
Oops, something went wrong.