Skip to content

Commit

Permalink
release 1.0.1-3
Browse files Browse the repository at this point in the history
  • Loading branch information
Sameer Naik committed Jan 29, 2017
1 parent a309830 commit 963401b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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.
Expand All @@ -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`.
Expand Down Expand Up @@ -96,23 +96,23 @@ 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.

```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

```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
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.1-2
1.0.1-3
4 changes: 2 additions & 2 deletions scripts/skype-wrapper
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

0 comments on commit 963401b

Please sign in to comment.