Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 586 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 586 Bytes

Running inkscape in docker

This is a Dockerfile to dockerize an inkscape session

Usage

Build the image locally

$ docker build -t inkscape .

Create the settings folder

$ mkdir -p $HOME/.config/dockerize/inkscape/ $HOME/Documents/

Start the container

$ docker run \
    -d \
    --rm \
    --name inkscape \
    -e DISPLAY \
    -v /tmp/.X11-unix/:/tmp/.X11-unix/ \
    -v $HOME/.config/dockerize/inkscape/:/home/ubuntu/.config/inkscape/ \
    -v $HOME/Documents/:/home/ubuntu/Documents/ \
    --device /dev/snd \
    inkscape