From 963401bfe0e5d2e67ad6b42b76567b1e98bcdc8b Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Sun, 29 Jan 2017 21:24:57 +0530 Subject: [PATCH] release 1.0.1-3 --- README.md | 12 ++++++------ VERSION | 2 +- scripts/skype-wrapper | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 6259d5e..e1534f7 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ [![Docker Repository on Quay.io](https://quay.io/repository/sameersbn/skype/status "Docker Repository on Quay.io")](https://quay.io/repository/sameersbn/skype) -# sameersbn/skype:1.0.1-2 +# sameersbn/skype:1.0.1-3 - [Introduction](#introduction) - [Contributing](#contributing) @@ -49,7 +49,7 @@ Automated builds of the image are available on [Dockerhub](https://hub.docker.co > **Note**: Builds are also available on [Quay.io](https://quay.io/repository/sameersbn/skype) ```bash -docker pull sameersbn/skype:1.0.1-2 +docker pull sameersbn/skype:1.0.1-3 ``` Alternatively you can build the image yourself. @@ -63,7 +63,7 @@ With the image locally available, install the wrapper scripts using: ```bash docker run -it --rm \ --volume /usr/local/bin:/target \ - sameersbn/skype:1.0.1-2 install + sameersbn/skype:1.0.1-3 install ``` This will install a wrapper script to launch `skype`. @@ -96,7 +96,7 @@ To upgrade to newer releases: 1. Download the updated Docker image: ```bash - docker pull sameersbn/skype:1.0.1-2 + docker pull sameersbn/skype:1.0.1-3 ``` 2. Run `install` to make sure the host scripts are updated. @@ -104,7 +104,7 @@ To upgrade to newer releases: ```bash docker run -it --rm \ --volume /usr/local/bin:/target \ - sameersbn/skype:1.0.1-2 install + sameersbn/skype:1.0.1-3 install ``` ## Uninstallation @@ -112,7 +112,7 @@ To upgrade to newer releases: ```bash docker run -it --rm \ --volume /usr/local/bin:/target \ - sameersbn/skype:1.0.1-2 uninstall + sameersbn/skype:1.0.1-3 uninstall ``` ## Shell Access diff --git a/VERSION b/VERSION index 9695bed..8725a09 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.0.1-2 +1.0.1-3 diff --git a/scripts/skype-wrapper b/scripts/skype-wrapper index d999041..21cdaa4 100755 --- a/scripts/skype-wrapper +++ b/scripts/skype-wrapper @@ -31,7 +31,7 @@ cleanup_stopped_skype_instances(){ for c in $(${SUDO} docker ps -a -q) do image="$(${SUDO} docker inspect -f {{.Config.Image}} ${c})" - if [ "${image}" == "sameersbn/skype:1.0.1-2" ]; then + if [ "${image}" == "sameersbn/skype:1.0.1-3" ]; then running=$(${SUDO} docker inspect -f {{.State.Running}} ${c}) if [ "${running}" = "true" ]; then ${SUDO} docker stop "${c}" >/dev/null @@ -100,4 +100,4 @@ ${SUDO} docker run -d \ ${ENV_VARS} \ ${VIDEO_DEVICES} \ ${VOLUMES} \ - sameersbn/skype:1.0.1-2 ${prog} $@ >/dev/null + sameersbn/skype:1.0.1-3 ${prog} $@ >/dev/null