Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cluster/k8s/agents/devbot/docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ fi

# Build desktop image
echo "Building desktop image..."
docker build -t ${DESKTOP_TAG} ./desktop/
docker build -t "${DESKTOP_TAG}" ./desktop/

# Build MCP server image
echo "Building MCP server image..."
docker build -t ${MCP_TAG} ./mcp-server/
docker build -t "${MCP_TAG}" ./mcp-server/

if [ "$PUSH" = "true" ]; then
echo "Pushing images to ${REGISTRY}..."
docker push ${DESKTOP_TAG}
docker push ${MCP_TAG}
docker push "${DESKTOP_TAG}"
docker push "${MCP_TAG}"
echo "Done! Images pushed to ${REGISTRY}."
else
echo "Done! Images built locally."
Expand Down
2 changes: 1 addition & 1 deletion cluster/k8s/agents/devbot/docker/desktop/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RESOLUTION=${RESOLUTION:-1920x1080}

# Start VNC server
exec vncserver :0 \
-geometry $RESOLUTION \
-geometry "$RESOLUTION" \
-depth 24 \
-localhost no \
-SecurityTypes VncAuth \
Expand Down
14 changes: 7 additions & 7 deletions nix/home/shell/bash-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ complete -cf man
# Colored man pages (zsh has oh-my-zsh plugin for this)
man() {
env \
LESS_TERMCAP_mb=$(printf "\e[1;31m") \
LESS_TERMCAP_md=$(printf "\e[1;31m") \
LESS_TERMCAP_me=$(printf "\e[0m") \
LESS_TERMCAP_se=$(printf "\e[0m") \
LESS_TERMCAP_so=$(printf "\e[1;44;33m") \
LESS_TERMCAP_ue=$(printf "\e[0m") \
LESS_TERMCAP_us=$(printf "\e[1;32m") \
LESS_TERMCAP_mb="$(printf "\e[1;31m")" \
LESS_TERMCAP_md="$(printf "\e[1;31m")" \
LESS_TERMCAP_me="$(printf "\e[0m")" \
LESS_TERMCAP_se="$(printf "\e[0m")" \
LESS_TERMCAP_so="$(printf "\e[1;44;33m")" \
LESS_TERMCAP_ue="$(printf "\e[0m")" \
LESS_TERMCAP_us="$(printf "\e[1;32m")" \
man "$@"
}
Loading