mirror of
https://github.com/nchevsky/systemrescue-zfs.git
synced 2026-04-21 06:03:41 +00:00
Fix Iso build issue with podman
Pids Limits is too low on podman (2048). It breaks the full packages installation. Bump the pids limit to 4096
This commit is contained in:
parent
7bad4678c6
commit
5caf9bea7d
1 changed files with 1 additions and 1 deletions
|
|
@ -35,7 +35,7 @@ if ! findmnt ${pkgcache} >/dev/null; then
|
|||
fi
|
||||
|
||||
# Run the build process in the container
|
||||
docker run --rm --user 0:0 --privileged -it --workdir /workspace \
|
||||
docker run --rm --pids-limit=4096 --user 0:0 --privileged -it --workdir /workspace \
|
||||
--volume=${repodir}:/workspace \
|
||||
--volume=${pkgcache}:/var/cache/pacman/pkg \
|
||||
${dockerimg} setarch ${sysrescuearch} /bin/bash /workspace/build.sh "$@"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue