Created
June 15, 2024 18:32
-
-
Save costa/f207149e232ca65cd027a70ff872ee9e to your computer and use it in GitHub Desktop.
primitively containerizing XpoLog: https://www.xplg.com/log-management
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:bookworm | |
RUN apt update && apt install -y curl | |
WORKDIR /tmp | |
RUN curl -O "https://xdn.xplg.com/downloads/xpolog/GA/linux/XpoLogCenterSetup-64.bin.gz" && gunzip XpoLogCenterSetup-64.bin.gz && chmod a+x XpoLogCenterSetup-64.bin | |
RUN yes '' | ./XpoLogCenterSetup-64.bin | |
WORKDIR /root | |
EXPOSE 30303 | |
CMD XpoLogCenter7/XpoLog.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment