-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
28 lines (21 loc) · 877 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Dockerfile for a Raspbian image containing MongoDB.
# Starts an SSH server and mongod instance by default.
# Image tag should read "rgreschner/rpi-raspbian-mongodb".
#
# Licensed under MIT License, for details see 'LICENSE'.
FROM rgreschner/rpi-raspbian-base
MAINTAINER [email protected]
# Download MongoDB ARM build.
ADD http://facat.github.io/mongodb-2.6.4-arm.7z /tmp/mongodb.7z
# Install stuff.
RUN apt-get install p7zip -y;cd /tmp; 7zr x /tmp/mongodb.7z;
RUN mv /tmp/mongodb/bin/* /usr/local/bin; rm -rf /usr/local/bin/mongo; rm -rf /tmp/mongodb; mkdir -p /data/db;
RUN rm -rf /run.sh;
ADD run.sh /run.sh
# Add compatible version of mongo client (2.4) from blobs.
ADD blobs/mongo /usr/local/bin/mongo
# Permissions & cleanup.
RUN chmod +x /run.sh; chmod a+x /usr/local/bin/mongo; apt-get remove p7zip -y;
VOLUME ["/data"]
EXPOSE 27017
CMD ["/run.sh"]