Skip to content

Commit fc8b0a5

Browse files
committed
Add evernote Dockerfile
1 parent 14c527a commit fc8b0a5

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

evernote/Dockerfile

+21
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)