some preliminary config
This commit is contained in:
commit
a55b81cece
6 changed files with 137 additions and 0 deletions
9
build-containers.sh
Executable file
9
build-containers.sh
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
BASEDIR=/etc/forgejo-runner
|
||||
|
||||
for container in "$BASEDIR"/Containerfile.*; do
|
||||
base=$(basename "$container")
|
||||
tag=${base#"Containerfile."}
|
||||
podman build -t "$tag" --cpu-quota 50000 -f "$container" $BASEDIR
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue