6 lines
166 B
Docker
6 lines
166 B
Docker
|
FROM ubuntu:latest
|
||
|
|
||
|
RUN apt update && apt upgrade -y && apt install -y glusterfs-server
|
||
|
|
||
|
CMD /usr/sbin/glusterd -p /var/run/glusterd.pid --log-level INFO --no-daemon
|