docker exec -it ubuntu-carolai bash
docker exec -it ubuntu-moltbot bash
❯ Só para entrar no Docker eh como?
● docker exec -it $(docker ps -q -f "name=clawdbots_moltbot") bash
Troque moltbot pelo bot desejado (camila, carolai, investizabot).
# Listar os containers dos clawdbots
docker ps --filter "name=clawdbots_" --format "{{.Names}}\t{{.ID}}"
# Entrar no moltbot (exemplo)
docker exec -it $(docker ps -q -f "name=clawdbots_moltbot") bash
# Dentro do container:
clawdbot tui
Atalho direto para cada bot:
# moltbot
docker exec -it $(docker ps -q -f "name=clawdbots_moltbot") clawdbot tui
# camila
docker exec -it $(docker ps -q -f "name=clawdbots_camila") clawdbot tui
# carolai
docker exec -it $(docker ps -q -f "name=clawdbots_carolai") clawdbot tui
# investizabot
docker exec -it $(docker ps -q -f "name=clawdbots_investizabot") clawdbot tui