13 lines
145 B
Bash
Executable File
13 lines
145 B
Bash
Executable File
#!/bin/sh
|
|
|
|
IMAGE_NAME="robotshop/fluentd:elastic"
|
|
|
|
|
|
docker build -t "$IMAGE_NAME" .
|
|
|
|
if [ "$1" = "push" ]
|
|
then
|
|
docker push "$IMAGE_NAME"
|
|
fi
|
|
|