1. Persistence Setup: Optimized the dockerfile to manually create the /root/.config/conn/.folder file
pointing to /config. This avoids running the conn command during the build process and ensures a
cleaner setup.
2. Copilot UI Fix: Resolved a double-escaping bug in the terminal bottom bar. Device prompts (like
6WIND-PE1>) will now render correctly instead of showing HTML entities like >.
3. AI Model Update: Updated the default engineer model in connpy/ai.py to
gemini/gemini-3.1-flash-lite, removing the deprecated -preview suffix.
4. Standardized Timeouts: Unified all default timeouts to 20 seconds across the board. This includes
direct execution (run/test), modern playbooks (v2), and classic task-based playbooks (v1).
5. Documentation Update: Regenerated the full documentation site in the docs/ directory using pdoc to
reflect the latest changes.
6. Cleanup: Removed all debug prints from connpy/core.py and restored the docker/logs/.gitignore
file.
This commit is contained in:
+13
-5
@@ -1,9 +1,17 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
connpy-app:
|
||||
build: .
|
||||
image: connpy-app
|
||||
image: connpy:latest
|
||||
container_name: connpy
|
||||
# Fundamental para la interactividad de la terminal
|
||||
stdin_open: true
|
||||
tty: true
|
||||
environment:
|
||||
- TERM=xterm-256color
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
volumes:
|
||||
- ./docker/connpy/:/app
|
||||
- ./docker/logs/:/logs
|
||||
- ./docker/ssh/:/root/.ssh/
|
||||
- ./docker/config:/config
|
||||
- ./docker/ssh:/root/.ssh
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
# No definimos comando por defecto para que 'run' sea más natural
|
||||
|
||||
Reference in New Issue
Block a user