Warning, /packaging/docker-neon-all/README.md is written in an unsupported language. File is not indexed.
0001 # KDE neon Docker images - All packages 0002 0003 Updated daily with the latest from KDE neon, itself automatically updated with the latest KDE software. 0004 0005 ## Running 0006 0007 Best run from the neondocker script: 0008 https://community.kde.org/Neon/Docker 0009 0010 Flavours available are: `kdeneon/all:unstable`, `kdeneon/all:testing`, `kdeneon/all:user`, `kdeneon/all:plasma` 0011 0012 For flavours with all applications installed see `kdeneon/all`. 0013 0014 By default it will run a full session with startkde on DISPLAY=:1, you can use Xephyr as an X server window. 0015 0016 ``` 0017 Xephyr -screen 1024x768 :1 & 0018 docker run -v /tmp/.X11-unix:/tmp/.X11-unix kdeneon/all:unstable 0019 ``` 0020 0021 Or you can tell it to run on DISPLAY=:0 and run a single app 0022 0023 ``` 0024 xhost + 0025 docker run -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=:0 --security-opt seccomp=unconfined kdeneon/all:unstable dolphin 0026 ```