-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jivan Kulkarni
committed
Jun 16, 2015
1 parent
a641e6d
commit c67a52f
Showing
3 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM debian:jessie | ||
MAINTAINER Jivan Kulkarni <jivank@gmail.com> | ||
|
||
RUN echo $'deb http://www.lesbonscomptes.com/recoll/debian/ unstable main\n \ | ||
deb-src http://www.lesbonscomptes.com/recoll/debian/ unstable main' > \ | ||
/etc/apt/sources.list.d/recoll.list | ||
|
||
RUN apt-get update && \ | ||
apt-get install -y recoll python-recoll python git wv poppler-utils && \ | ||
apt-get clean | ||
|
||
RUN mkdir /data | ||
RUN echo topdirs = /data >> /root/.recoll/recoll.conf | ||
|
||
RUN git clone https://github.com/koniu/recoll-webui.git | ||
ADD start.sh /root | ||
ADD bgindex.sh /root | ||
|
||
VOLUME /data | ||
|
||
ENTRYPOINT ["/root/start.sh"] | ||
EXPOSE 8080 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/bash | ||
bash /root/bgindex.sh & | ||
python /recoll-webui/webui-standalone.py |