Commit

Author:

Hash:

Timestamp:

+3 -1 +/-2 browse

Kevin Schoon [me@kevinschoon.com]

328733466fd412ced910e6c5888bd663983ca046

Sun, 25 May 2025 20:06:28 +0000 (5 months ago)

fix push_container.sh, add note about sec options
1diff --git a/containers/woodpecker/README.md b/containers/woodpecker/README.md
2index 2d00179..76dd86b 100644
3--- a/containers/woodpecker/README.md
4+++ b/containers/woodpecker/README.md
5 @@ -5,3 +5,5 @@
6 ```sh
7 podman run --device /dev/fuse --entrypoint=/bin/sh --rm -ti <IMAGE>
8 ```
9+
10+ IF running in a CI environment which forks processes you need to `--security-opt=unmask=/proc/*`.
11 diff --git a/scripts/push_container.sh b/scripts/push_container.sh
12index 6c27343..c8a8bdc 100755
13--- a/scripts/push_container.sh
14+++ b/scripts/push_container.sh
15 @@ -23,7 +23,7 @@ NAME="$(basename "$TARGET_DIR")"
16 if [ -n "$AYLLU_REGISTRY_PASS" ] ; then
17 "$AYLLU_REGISTRY_PASS" | podman --verbose login $REGISTRY_AUTH
18 else
19- if [ ! -z "$AYLLU_SKIP_REGISTRY_LOGIN" ] ; then
20+ if [ -z "$AYLLU_SKIP_REGISTRY_LOGIN" ] ; then
21 podman login $REGISTRY
22 fi
23 fi