add zabbix-agent, rename toolbox

This commit is contained in:
Maciej Lebiest 2023-08-20 16:20:57 +02:00
parent b57071d343
commit e43e07af1b
4 changed files with 37 additions and 1 deletions

31
system-toolbox/Dockerfile Normal file
View file

@ -0,0 +1,31 @@
FROM registry.fedoraproject.org/fedora:38
ENV PKGS_GENERAL="htop \
btop \
sysstat \
util-linux"
ENV PKGS_PROCESSES="procps-ng \
strace"
ENV PKGS_NETWORK="bind-utils \
nmap \
nmap-ncat \
telnet \
tcpdump \
iftop \
iproute \
iputils \
whois \
iptraf-ng"
RUN dnf clean all && \
dnf install -y ${PKGS_GENERAL} ${PKGS_PROCESSES} ${PKGS_NETWORK} && \
dnf -y autoremove && \
dnf -y clean all
COPY help-toolbox.sh /usr/bin/help-toolbox
RUN chmod 555 /usr/bin/help-toolbox
USER root