@@ -0,0 +1,5 @@
+
+http://alesnosek.com/blog/2015/07/04/running-wine-within-docker/
+https://askubuntu.com/questions/16225/how-can-i-accept-the-microsoft-eula-agreement-for-ttf-mscorefonts-installer
@@ -0,0 +1,4 @@
+#!/bin/bash
+docker run --rm --volume /tmp/.X11-unix/X0:/tmp/.X11-unix/X0 --volume $(pwd)/wine:/home/stevet/.wine --volume /etc/passwd:/etc/passwd -u $(id -u):$(id -g) wine_wine "C:\\bal3\\Balsamiq Mockups 3.exe"
@@ -0,0 +1,15 @@
+version: "2"
+services:
+ wine:
+ build: image
+ volumes:
+ - /tmp/.X11-unix/X0:/tmp/.X11-unix/X0
+ - ./wine:/home/stevet/.wine
+ - /etc/passwd:/etc/passwd:ro
+ user: 1000:1000
+ command: ["c:\\bal3\\Balsamiq Mockups 3.exe"]
+ # ["c:\\windows\\system32\\notepad.exe"]
@@ -0,0 +1,9 @@
+FROM i386/ubuntu:latest
+RUN echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections \
+&& apt-get update \
+&& apt-get install --assume-yes wine
+ENV DISPLAY :0
+ENTRYPOINT ["wine"]
@@ -0,0 +1,7 @@
+FROM ubuntu:latest
+RUN dpkg --add-architecture i386 \
+&& echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | debconf-set-selections \
+docker run --rm --volume /tmp/.X11-unix/X0:/tmp/.X11-unix/X0 --volume $(pwd)/wine:/home/stevet/.wine --volume /etc/passwd:/etc/passwd -u $(id -u):$(id -g) wine_wine "C:\\windows\\system32\\notepad.exe"