Skip to content

Commit 17ff12a

Browse files
committed
Add separate MooseFS CGI server container
1 parent 9e568a4 commit 17ff12a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

moosefs-cgi/Dockerfile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)