Fix Bedrock config: add AWS_PROFILE to generated config, add .agents/skills to volume ownership fix
Publish Docker Image / build-omos (push) Successful in 36m41s
Publish Docker Image / build-base (push) Successful in 38m37s
Publish Docker Image / update-description (push) Successful in 17s

This commit is contained in:
2026-04-13 19:52:08 +02:00
parent 875afe0039
commit 271dc2eb35
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -48,7 +48,8 @@ EOF
"provider": { "provider": {
"amazon-bedrock": { "amazon-bedrock": {
"options": { "options": {
"region": "${AWS_REGION:-us-east-1}" "region": "${AWS_REGION:-us-east-1}",
"profile": "${AWS_PROFILE:-default}"
} }
} }
} }
+2 -1
View File
@@ -58,7 +58,8 @@ for dir in \
/home/"$USER_NAME"/.cargo \ /home/"$USER_NAME"/.cargo \
/home/"$USER_NAME"/.vscode-server \ /home/"$USER_NAME"/.vscode-server \
/home/"$USER_NAME"/.config/opencode \ /home/"$USER_NAME"/.config/opencode \
/home/"$USER_NAME"/.config/nvim; do /home/"$USER_NAME"/.config/nvim \
/home/"$USER_NAME"/.agents/skills; do
if [ -d "$dir" ] && [ "$(stat -c '%u' "$dir" 2>/dev/null)" != "$FINAL_UID" ]; then if [ -d "$dir" ] && [ "$(stat -c '%u' "$dir" 2>/dev/null)" != "$FINAL_UID" ]; then
chown -R "$FINAL_UID":"$FINAL_GID" "$dir" 2>/dev/null || true chown -R "$FINAL_UID":"$FINAL_GID" "$dir" 2>/dev/null || true
fi fi