feat: add integrated nice and ionice options for docker (#5448)

The intended usage here is to basically kick restic as a background
"do it, but don't bother my normal load" process.

This allows passing the following environment variables in to
influence scheduling:

- NICE: usual CPU nice.  Defaults to 0.  This requires CAP_SYS_NICE
  to set a negative nice (IE, prioritize).
- IONICE_CLASS: usual ionice class.  Note that setting realtime
  requires CAP_SYS_ADMIN.  Also note the actual ionice default
  is "none".
- IONICE_PRIORITY: set the priority within the given class.  Ignored
  if no class is specified due to class default of "no scheduler".

---------

Signed-off-by: Brian Harring <ferringb@gmail.com>
Co-authored-by: Michael Eischer <michael.eischer@fau.de>
This commit is contained in:
ferringb
2025-11-16 16:42:33 +01:00
committed by GitHub
parent c854338ad1
commit 87f26accb7
7 changed files with 62 additions and 7 deletions

View File

@@ -8,11 +8,17 @@ RUN go mod download
COPY . .
RUN go run build.go
FROM alpine:latest AS restic
RUN apk add --no-cache ca-certificates fuse openssh-client tzdata jq
COPY --from=builder /go/src/github.com/restic/restic/restic /usr/bin
COPY ./docker/entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/usr/bin/restic"]
# IO class default is "none"- 0, however busybox reject ionice `-c0 -n<something>`
# since priority has no meaning for no scheduler.
# Thus the entrypoint script below is necessary
ENV IONICE_CLASS=
ENV IONICE_PRIORITY=4
ENV NICE=0
ENTRYPOINT ["/entrypoint.sh"]

View File

@@ -1,6 +1,6 @@
# the official binaries are cross-built from Linux running on an AMD64 host
# other architectures also seem to generate identical binaries but stay on the safe side
FROM --platform=linux/amd64 restic/builder:latest as helper
FROM --platform=linux/amd64 restic/builder:latest AS helper
ARG TARGETOS
ARG TARGETARCH
@@ -19,6 +19,14 @@ LABEL org.opencontainers.image.documentation="https://restic.readthedocs.io"
LABEL org.opencontainers.image.source="https://github.com/restic/restic"
COPY --from=helper /output/restic /usr/bin
COPY ./docker/entrypoint.sh /entrypoint.sh
RUN apk add --no-cache ca-certificates fuse openssh-client tzdata jq
ENTRYPOINT ["/usr/bin/restic"]
# IO class default is "none"- 0, however busybox rejects ionice `-c0 -n<something>`
# since priority has no meaning for no scheduler.
# Thus the entrypoint script below is necessary.
ENV IONICE_CLASS=
ENV IONICE_PRIORITY=4
ENV NICE=0
ENTRYPOINT ["/entrypoint.sh"]

View File

@@ -1,4 +1,6 @@
#!/bin/sh
root="$(readlink -f "$0")"
root="$(dirname "$(dirname "${root}")")"
set -e
@@ -8,6 +10,6 @@ echo "Build docker image restic/restic:latest"
docker build \
--rm \
--pull \
--file docker/Dockerfile \
--file "${root}"/docker/Dockerfile \
--tag restic/restic:latest \
.
"${root}" "$@"

10
docker/entrypoint.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh -e
# This must be tested against busybox sh, since there are quirks in its
# implementation of tooling. Busybox rejects `ionice -c0 -n<something>` for example.
set -- /usr/bin/restic "$@"
if [ -n "${IONICE_CLASS}" ]; then
set -- ionice -c "${IONICE_CLASS}" -n "${IONICE_PRIORITY:-4}" "$@"
fi
exec nice -n "${NICE:-0}" "$@"