Container for Krita 3.0 application running on Ubuntu 16.04
278
I created this container because Krita's latest 3.0 version is not available on all distros. In this case, I used an existing ppa which contains this version for Ubuntu (which uses 2.9 by default).
The following is a sample command I would use to run Krita on a Ubuntu 16.04 host:
$ docker run --rm \
-e DISPLAY \
-v /tmp/.X11-unix:/tmp/.X11-unix \
crsilva/krita:latest
I recommend to mount a volume for saving config and images outside the docker. This ensures you keep the data once you stop the container.
FROM ubuntu:latest
MAINTAINER Cristobal Silva <[email protected]>
RUN apt-get update && \
apt-get install -y software-properties-common
RUN add-apt-repository ppa:dimula73/krita -y && \
apt-get update && \
apt-get install -y krita3-testing && \
apt-get purge -y software-properties-common
CMD ["krita"]
Content type
Image
Digest
Size
207.6 MB
Last updated
almost 10 years ago
docker pull crsilva/krita