Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.13 KB

README for Docker.md

File metadata and controls

34 lines (22 loc) · 1.13 KB

Running in Docker

Pre-requisites:

Download the Dockerfile for Skyperious, build and run the Docker image:

    wget https://raw.githubusercontent.com/suurjaak/Skyperious/master/build/Dockerfile
    docker build . -t skyperious

    xhost +
    docker run -it --rm --net=host --mount source=/,target=/mnt/host,type=bind -e DISPLAY -v /tmp/.X11-unix/:/tmp/.X11-unix/ skyperious

docker build . -t skyperious will prepare an Ubuntu 20.04 Docker image and install Skyperious and its dependencies within the container.

xhost + will allow the container to access the X Window System display.

Add sudo before docker commands if current user does not have rights for Docker.

Add --mount source="path to host directory",target=/etc/skyperious after docker run to retain Skyperious configuration in a host directory between runs, e.g. --mount source=~/.config/skyperious,target=/etc/skyperious.

Host filesystem is made available under /mnt/host.


Initial Docker support provided by Atila Romero.