x11docker/lxde-wine
Wine with PlayOnLinux on LXDE desktop. Based on Debian.
3.8K
LXDE desktop containing wine, winetricks, q4wine and playonlinux
docker hub does not provide automated builds for free anymore. So this image is becoming old and outdated. Instead of pulling this image, please build it locally yourself. x11docker can do this for you with:
x11docker --build x11docker/lxde-wine
Run LXDE desktop including wine:
x11docker --desktop --cap-default x11docker/lxde-wine
Use host folder to preserve installed Windows applications with option --home
:
x11docker --desktop --home x11docker/lxde-wine
Run PlayOnLinux only:
x11docker --home x11docker/lxde-wine playonlinux
--home
--sharedir DIR
--gpu
--clipboard
--pulseaudio
or --alsa
--lang=$LANG
--printer
--webcam
See x11docker --help
for further options.
The default language locale setting is en_US.UTF-8
. You can change to your desired locale with x11docker option --lang
.
--lang de
--lang zh_CN
--lang $LANG
To enable chinese, japanese and korean fonts in wine, run winetricks cjkfonts
. There is also a starter provided on the desktop for this.
To add your desired applications, create your own Dockerfile with this image as a base. Example:
FROM x11docker/lxde-wine
RUN apt-get update
RUN apt-get install -y vlc
docker pull x11docker/lxde-wine