Skip to content
Permalink
202109
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 9 lines (7 sloc) 195 Bytes
#! /bin/bash
if [ ! -z "$1" ]
then
echo "Do not pass in an argument: $1"
fi
label=$( docker ps -a | grep 'tier/gte' | awk '{print $1}' )
docker exec -it "$label" /bin/bash 2> /dev/null