Application tried to create a window, but no driver could be loaded.
Make sure that your X server is running and that $DISPLAY is set correctly.
Note: command 'wine dotnetfx.exe /q /c:install.exe /q' returned status 43. Aborting.
dockerfile :
FROM suchja/wine
ENV WINEDEBUG -all,err+all
USER root
COPY waitonprocess.sh /scripts/
RUN chmod +x /scripts/waitonprocess.sh
COPY docker-entrypoint.sh /scripts/
RUN chmod +x /scripts/docker-entrypoint.sh
RUN /scripts/docker-entrypoint.sh
USER xclient
RUN wine wineboot --init
&& /scripts/waitonprocess.sh wineserver
&& rm -rf ~/.wine
&& wine wineboot
&& winetricks --unattended dotnet20
&& /scripts/waitonprocess.sh wineserver
and run command:
docker build --network=x11 --rm -f Dockerfile -t xxxxx
while x11 is my network created.
Application tried to create a window, but no driver could be loaded.
Make sure that your X server is running and that $DISPLAY is set correctly.
Note: command 'wine dotnetfx.exe /q /c:install.exe /q' returned status 43. Aborting.
dockerfile :
FROM suchja/wine
ENV WINEDEBUG -all,err+all
USER root
COPY waitonprocess.sh /scripts/
RUN chmod +x /scripts/waitonprocess.sh
COPY docker-entrypoint.sh /scripts/
RUN chmod +x /scripts/docker-entrypoint.sh
RUN /scripts/docker-entrypoint.sh
USER xclient
RUN wine wineboot --init
&& /scripts/waitonprocess.sh wineserver
&& rm -rf ~/.wine
&& wine wineboot
&& winetricks --unattended dotnet20
&& /scripts/waitonprocess.sh wineserver
and run command:
docker build --network=x11 --rm -f Dockerfile -t xxxxx
while x11 is my network created.