Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,13 @@ 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 skype
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 -v /etc/localtime:/etc/localtime:ro skype

9. (Optional) Copy an SSH public key

Expand Down