Mercurial > public > ssdt-docker
comparison scripts/console.sh @ 85:8f45c43ea7a4 feature/djs-DEP-12-docker
DEP-12: start upgrading scripts and compose files for RC and docker 1.12
author | Dave Smith <smith@nwoca.org> |
---|---|
date | Wed, 21 Sep 2016 19:00:41 -0400 |
parents | 541766977a11 |
children | ae2b4a5294ff |
comparison
equal
deleted
inserted
replaced
84:36d4c33e43a3 | 85:8f45c43ea7a4 |
---|---|
1 #!/bin/bash | 1 #!/bin/bash |
2 # connects to the telnet console of the application for the specified service of the current project | |
3 # For docker 1.12 and compose 1.9 (and higher) assume project is assigned to a network | |
4 # named "${project}_default" per SSDT templates. | |
2 | 5 |
3 # connects to the telnet console of the application for the specified service of the current project | |
4 source "$( dirname "${BASH_SOURCE[0]}")/.functions.sh" | 6 source "$( dirname "${BASH_SOURCE[0]}")/.functions.sh" |
5 | 7 |
6 container=$(composeGetContainer ${1?"Must specify the app service of the console to connect to"} ) | 8 container=$(composeGetContainer ${1?"Must specify the app service of the console to connect to"} ) |
7 | 9 |
8 ip=$(docker inspect -f '{{.NetworkSettings.IPAddress}}' $container) | 10 ip=$(docker inspect -f '{{.NetworkSettings.IPAddress}}' $container) |
9 | 11 |
10 docker run -it -v ${PWD}:/tmp -v /ssdt:/ssdt --rm docker.ssdt.io/ssdt-utils telnet $ip 2000 | tee console.log | 12 if [ "$ip" == "" ] |
13 then | |
14 ip=$(docker inspect -f '{{range .NetworkSettings.Networks}}{{.IPAddress}}{{end}}' $container) | |
15 project=$(composeGetProject ${1} ) | |
16 fi | |
11 | 17 |
18 if [ "$project" == "" ] | |
19 then | |
20 docker run -it -v ${PWD}:/tmp -v ${SSDT_HOME}:/ssdt --rm docker.ssdt.io/ssdt-utils telnet $ip 2000 | tee console.log | |
21 else | |
22 docker run -it --network ${project}_default --rm docker.ssdt.io/ssdt-utils telnet $ip 2000 | tee console.log | |
23 fi |