Switch to apple containers

Signed-off-by: Marcus Noble <github@marcusnoble.co.uk>
This commit is contained in:
2026-09-10 16:23:31 +01:00
parent d324551ea6
commit 09c77d126e
4 changed files with 32 additions and 3 deletions
+13 -1
View File
@@ -145,4 +145,16 @@ git() {
fi
}
alias hermes='docker run --rm -it -v ~/.hermes:/opt/data nousresearch/hermes-agent'
docker() {
if [ "$1" = "run" ]; then # Git clone then cd into new directory
shift
container run --dns 192.168.1.3 $@
elif [ "$1" = "build" ]; then # Sign all commits
shift
container build --dns 192.168.1.3 $@
else
container $@
fi
}