This file contains hidden or 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
#!/bin/sh | |
# Returns boolean indicates whether designated tagged-image exists. | |
# arg1: repository name | |
# arg2: tag name | |
function image_exists() { | |
image=$(docker image ls -a | grep $1 | grep $2) | |
if [ "$image" ]; then | |
return 0; |
This file contains hidden or 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
<template> | |
<textarea | |
class="textarea bg-white" | |
:style="textareaStyle" | |
:placeholder="placeholder" | |
:value="value" | |
@input="handleInput($event)" | |
/> | |
</template> |