mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-01 14:47:38 +00:00
10 lines
267 B
Docker
10 lines
267 B
Docker
|
FROM ubuntu:24.04
|
||
|
|
||
|
RUN \
|
||
|
apt update && \
|
||
|
apt install -y \
|
||
|
systemd \
|
||
|
systemd-journal-remote && \
|
||
|
sed -i 's/# URL=/URL=http:\/\/victorialogs:9428\/insert\/journald/g' /etc/systemd/journal-upload.conf && \
|
||
|
systemctl enable systemd-journal-upload.service
|