We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14c527a commit fc8b0a5Copy full SHA for fc8b0a5
evernote/Dockerfile
@@ -0,0 +1,21 @@
1
+# DESCRIPTION:
2
+# Just to backup notes with windows app
3
+#
4
+# USAGE:
5
+# docker run -it \
6
+# -v /tmp/.X11-unix:/tmp/.X11-unix \
7
+# -e DISPLAY=unix$DISPLAY \
8
+# -v $HOME/evernote_backup:/root/backup \
9
+# --cpuset-cpus 0
10
+# --name evernote benoitg/evernote
11
+FROM jess/wine
12
+MAINTAINER Benoit GALATI <[email protected]>
13
+
14
+RUN apt-get update && apt-get install -y ca-certificates
15
16
+ADD https://evernote.com/download/get.php?file=Win /usr/src/evernote.exe
17
18
+RUN echo "wine .wine/drive_c/Program\ Files/Evernote/Evernote/Evernote.exe" > /root/.bash_history \
19
+ && echo "wine wineboot --init && wine /usr/src/evernote.exe" > /root/.bash_history
20
21
+CMD [ "bash" ]
0 commit comments