Skip to content

Commit cdffdef

Browse files
committed
Add master and metalogger docker containers
Make it easy to run the moosefs master and metalogger inside containers. Signed-off-by: Joe Block <jpb@unixorn.net>
1 parent d86a537 commit cdffdef

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

Dockerfile.master

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# FROM debian:11-slim
2+
FROM ubuntu:22.04
3+
4+
ARG application_version
5+
LABEL maintainer="Joe Block <jpb@unixorn.net>"
6+
LABEL version=${application_version}
7+
8+
RUN apt-get update
9+
RUN apt-get install -y apt-utils ca-certificates --no-install-recommends
10+
RUN update-ca-certificates
11+
12+
RUN apt-get install -y moosefs-master
13+
LABEL description="moosefs-master image"
14+
15+
CMD ["bash", "-l"]

Dockerfile.metalogger

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# FROM debian:11-slim
2+
FROM ubuntu:22.04
3+
4+
ARG application_version
5+
LABEL maintainer="Joe Block <jpb@unixorn.net>"
6+
LABEL version=${application_version}
7+
8+
RUN apt-get update
9+
RUN apt-get install -y apt-utils ca-certificates --no-install-recommends
10+
RUN update-ca-certificates
11+
12+
RUN apt-get install -y moosefs-metalogger
13+
14+
LABEL description="moosefs-metalogger image"
15+
CMD ["bash", "-l"]

0 commit comments

Comments
 (0)