Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
gte command
wgthom committed May 30, 2019
1 parent cb58886 commit f1e39d8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions gte
@@ -0,0 +1,13 @@
#! /bin/bash

if [ -z "$1" ]
then
docker images tier/gte
exit 0
fi

docker stop "$1" 2> /dev/null
docker rm "$1" 2> /dev/null
docker run -d -p 80:80 -p 389:389 -p 8443:443 -p 3306:3306 \
--link rabbitmq:rabbitmq --name $1 tier/gte:"$1"-201906-201-updates

0 comments on commit f1e39d8

Please sign in to comment.