We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e568a4 commit 17ff12aCopy full SHA for 17ff12a
moosefs-cgi/Dockerfile
@@ -0,0 +1,16 @@
1
+FROM debian:buster
2
+
3
+# Install wget and gnupg2
4
+RUN apt-get update && apt-get install -y wget gnupg2 python3
5
6
+# Add key
7
+RUN wget -O - http://ppa.moosefs.com/moosefs.key 2>/dev/null | apt-key add - 2>/dev/null
8
+RUN echo "deb http://ppa.moosefs.com/moosefs-3/apt/debian/buster buster main" > /etc/apt/sources.list.d/moosefs.list
9
10
+# Install MooseFS master
11
+RUN apt-get update && apt-get install -y moosefs-cgi moosefs-cgiserv moosefs-cli
12
13
+# Expose ports master ports
14
+EXPOSE 9425
15
16
+CMD ["mfscgiserv", "-f"]
0 commit comments