Merge branch 'main' of ssh://gitea.ghostklart.com:422/dtibragimov/glusterfs-server-docker

This commit is contained in:
2024-09-11 13:59:39 +03:00

View File

@@ -1,6 +1,7 @@
FROM ubuntu:noble FROM ubuntu:noble
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Europe/Moscow
RUN \ RUN \
apt update && \ apt update && \
@@ -21,6 +22,7 @@ RUN \
libfuse3-3 \ libfuse3-3 \
attr \ attr \
xattr && \ xattr && \
dpkg-reconfigure -f noninteractive tzdata && \
apt autoremove --purge -y && \ apt autoremove --purge -y && \
apt clean -y && \ apt clean -y && \
rm -rf /tmp/* rm -rf /tmp/*
@@ -29,6 +31,5 @@ ADD glusterfs-master.sh /docker/glusterfs-master.sh
ADD glusterfs-node.sh /docker/glusterfs-node.sh ADD glusterfs-node.sh /docker/glusterfs-node.sh
EXPOSE 111 111/udp 24007 24009 49152 EXPOSE 111 111/udp 24007 24009 49152
ENV TZ=Europe/Moscow
STOPSIGNAL SIGINT STOPSIGNAL SIGINT
ENTRYPOINT ["tini", "--"] ENTRYPOINT ["tini", "--"]