Skip to content

Instantly share code, notes, and snippets.

@costa
Created June 15, 2024 18:32
Show Gist options
  • Save costa/f207149e232ca65cd027a70ff872ee9e to your computer and use it in GitHub Desktop.
Save costa/f207149e232ca65cd027a70ff872ee9e to your computer and use it in GitHub Desktop.
primitively containerizing XpoLog: https://www.xplg.com/log-management
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