Compare commits

..

2 Commits

Author SHA1 Message Date
Nils
5c8a39ad75
add user and group to systemd service example 2022-08-23 03:31:56 +02:00
Nils
deab05167d
docker: trim binary, add standalone traceroute, run as own user 2022-08-23 03:20:01 +02:00
2 changed files with 7 additions and 2 deletions

View File

@ -2,11 +2,14 @@ FROM golang:latest as builder
WORKDIR /build WORKDIR /build
COPY . . COPY . .
RUN go get -u RUN go get -u
RUN CGO_ENABLED=0 go build -o probehost2 RUN CGO_ENABLED=0 go build -ldflags="-s -w" -o probehost2
FROM alpine:latest FROM alpine:latest
RUN apk update RUN apk update
RUN apk add mtr iputils nmap-nping RUN apk add mtr iputils nmap-nping traceroute
RUN adduser -D probehost2
COPY --from=builder /build/probehost2 / COPY --from=builder /build/probehost2 /
RUN touch /probehost2.log RUN touch /probehost2.log
RUN chown probehost2:users /probehost2.log
USER probehost2
CMD ["/probehost2"] CMD ["/probehost2"]

View File

@ -8,6 +8,8 @@ StartLimitBurst=5
StartLimitIntervalSec=20 StartLimitIntervalSec=20
[Service] [Service]
User=1000
Group=1000
Restart=always Restart=always
RestartSec=1 RestartSec=1
ExecStart=/bin/probehost2 --logfilepath "/var/log/probehost2.log" --port 8000 ExecStart=/bin/probehost2 --logfilepath "/var/log/probehost2.log" --port 8000