Compare commits

..

6 Commits

Author SHA1 Message Date
6956433169 fix
Some checks failed
build and push image / Release (push) Has been cancelled
2025-04-12 02:50:00 +09:00
41bc4f13ca fix
Some checks failed
build and push image / Release (push) Has been cancelled
2025-04-12 02:49:39 +09:00
1bad33b6f2 fix actions
Some checks failed
build and push image / Release (push) Failing after 19m0s
2025-03-26 14:04:25 +09:00
36789ddd3c fix actions
All checks were successful
build and push image / Release (push) Successful in 1m24s
2025-03-26 13:06:40 +09:00
28dcd9cb69 fix
All checks were successful
build and push image / Release (push) Successful in 2m41s
2025-02-24 17:24:42 +09:00
ad23cc929b fix gh-actions 2025-02-24 17:15:06 +09:00
3 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,5 @@
# https://github.com/containers/shortnames
# ~/.config/containers/registries.conf.d/ai.conf
unqualified-search-registries=["git.syui.ai", "docker.io", "ghcr.io"]
unqualified-search-registries=["git.syui.ai", "docker.io"]
[aliases]
"aios"="git.syui.ai/ai/os"

View File

@ -57,11 +57,13 @@ $ docker run -it ghcr.io/syui/aios ai
if [ ! -d ~/ai/os/.git ];then
mkdir -p ~/ai
git clone https://git.syui.ai/ai/os ~/ai/os
else
cd ~/ai/os
fi
if [ ! -d ~/.config/containers/registries.conf.d ];then
mkdir -p ~/.config/containers/registries.conf.d
fi
ln -s ~/ai/os/.config/containers/registries.conf.d/ai.conf ~/.config/containers/registries.conf.d/ai.conf
ln -s `pwd`/.config/containers/registries.conf.d/ai.conf ~/.config/containers/registries.conf.d/ai.conf
```
```sh

View File

@ -1,6 +1,4 @@
# https://github.com/containers/shortnames
# ~/.config/containers/registries.conf.d/ai.conf
unqualified-search-registries = ['git.syui.ai', 'docker.io', 'ghcr.io']
unqualified-search-registries = ['docker.io', 'git.syui.ai', 'ghcr.io']
[aliases]
"aios" = "git.syui.ai/ai/os"