Mercurial > public > ssdt-docker
view scripts/console.sh @ 139:9aabd0f7d165 hotfix/v1.1.1
flow: Closed <hotfix> 'v1.1.1'.
author | smith@nwoca.org |
---|---|
date | Fri, 16 Jun 2017 17:14:15 +0100 |
parents | 541766977a11 |
children | 8f45c43ea7a4 |
line wrap: on
line source
#!/bin/bash # connects to the telnet console of the application for the specified service of the current project source "$( dirname "${BASH_SOURCE[0]}")/.functions.sh" container=$(composeGetContainer ${1?"Must specify the app service of the console to connect to"} ) ip=$(docker inspect -f '{{.NetworkSettings.IPAddress}}' $container) docker run -it -v ${PWD}:/tmp -v /ssdt:/ssdt --rm docker.ssdt.io/ssdt-utils telnet $ip 2000 | tee console.log