From f3b3194bc7fc643d7e09d0f4c5fe665dc634dc55 Mon Sep 17 00:00:00 2001 From: dartkron Date: Fri, 19 Sep 2014 22:37:06 +0400 Subject: [PATCH 1/6] Update README.md Added local timezone mounting to container in read-only mode. This will fix timezone issues. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41f4dbc..23824a2 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ In case you do not want to download the prepared image, you can built the image 8. Run the container and forward the appropriate port - sudo docker run -d -p 55555:22 skype + sudo docker run -d -p 55555:22 -v /etc/localtime:/etc/localtime:ro skype 9. (Optional) Copy an SSH public key From 238e04168029eb625a2b2ad9737fcb5bfe82e2f7 Mon Sep 17 00:00:00 2001 From: dartkron Date: Fri, 19 Sep 2014 22:39:04 +0400 Subject: [PATCH 2/6] Update README.md Fixed comment --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23824a2..ad8c3e7 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ In case you do not want to download the prepared image, you can built the image IdentityFile /path/to/your/ssh/key -8. Run the container and forward the appropriate port +8. Run the container and forward the appropriate port and current time zone sudo docker run -d -p 55555:22 -v /etc/localtime:/etc/localtime:ro skype From 0f6188f67807229569fa0170b2835713f232df66 Mon Sep 17 00:00:00 2001 From: Sergey Mishin Date: Tue, 23 Sep 2014 17:00:49 +0400 Subject: [PATCH 3/6] Replaced ENTRYPOINT with CMD Otherwise not worked --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bfe92e1..c194c64 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,4 +50,4 @@ RUN chmod 755 /usr/local/bin/skype-pulseaudio EXPOSE 22 # Start SSH -ENTRYPOINT ["/usr/sbin/sshd", "-D"] +CMD ["/usr/sbin/sshd", "-D"] From 26f2aa9d54d238dc5e9b2b6f7ad751950e2bacb5 Mon Sep 17 00:00:00 2001 From: Sergey Mishin Date: Mon, 9 Feb 2015 01:09:49 +0300 Subject: [PATCH 4/6] Added webcam suuport --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index ad8c3e7..002bf43 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,10 @@ In case you do not want to download the prepared image, you can built the image sudo docker run -d -p 55555:22 -v /etc/localtime:/etc/localtime:ro skype +(Optional) If you want to use webcam in Skype, you need to forward video device to the container + + sudo docker run -d -p 55555:22 --privileged -v /dev/video0:/dev/video0 skype + 9. (Optional) Copy an SSH public key If you plan to use an SSH key, copy the public key to the docker container using the following command. The password is `docker`. From c322ffeed620fef81e1ddc493c9bc357b8f53f03 Mon Sep 17 00:00:00 2001 From: Sergey Mishin Date: Mon, 9 Feb 2015 01:14:09 +0300 Subject: [PATCH 5/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 002bf43..471b29c 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ In case you do not want to download the prepared image, you can built the image (Optional) If you want to use webcam in Skype, you need to forward video device to the container - sudo docker run -d -p 55555:22 --privileged -v /dev/video0:/dev/video0 skype + sudo docker run -d -p 55555:22 --privileged -v /dev/video0:/dev/video0 -v /etc/localtime:/etc/localtime:ro skype 9. (Optional) Copy an SSH public key From 160683c61022b4b63ba80cf8cf78f3dd1c6eb239 Mon Sep 17 00:00:00 2001 From: Sergey Mishin Date: Mon, 9 Feb 2015 01:15:00 +0300 Subject: [PATCH 6/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 471b29c..baf1a76 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ In case you do not want to download the prepared image, you can built the image sudo docker run -d -p 55555:22 -v /etc/localtime:/etc/localtime:ro skype -(Optional) If you want to use webcam in Skype, you need to forward video device to the container + (Optional) If you want to use webcam in Skype, you need to forward video device to the container sudo docker run -d -p 55555:22 --privileged -v /dev/video0:/dev/video0 -v /etc/localtime:/etc/localtime:ro skype