@@ -43,13 +43,13 @@ Get your self-hosted AI desktop agent running with just three commands:
4343<Steps >
4444 <Step title = " Clone and Configure" >
4545 ``` bash
46- git clone https://github.com/bytebot-ai/bytebot.git cd bytebot echo " ANTHROPIC_API_KEY=your_api_key_here" > infrastructure/ docker/.env
46+ git clone https://github.com/bytebot-ai/bytebot.git cd bytebot echo " ANTHROPIC_API_KEY=your_api_key_here" > docker/.env
4747 ```
4848 </Step >
4949
5050<Step title = " Start the Agent Stack" >
5151 ``` bash
52- docker-compose -f infrastructure/ docker/docker-compose.yml up -d
52+ docker-compose -f docker/docker-compose.yml up -d
5353 ```
5454
5555This starts all four services:
@@ -124,13 +124,13 @@ Watch it work in real-time through the embedded VNC viewer in the tasks interfac
124124
125125 ``` bash
126126 # Using pre-built image (recommended)
127- docker-compose -f infrastructure/ docker/docker-compose.core.yml pull
128- docker-compose -f infrastructure/ docker/docker-compose.core.yml up -d
127+ docker-compose -f docker/docker-compose.core.yml pull
128+ docker-compose -f docker/docker-compose.core.yml up -d
129129 ```
130130
131131 Or build locally:
132132 ```bash
133- docker-compose -f infrastructure/ docker/docker-compose.core.yml up -d --build
133+ docker-compose -f docker/docker-compose.core.yml up -d --build
134134 ```
135135
136136 Access the desktop at
@@ -147,31 +147,31 @@ Monitor what your agent is doing:
147147
148148``` bash
149149# All services
150- docker-compose -f infrastructure/ docker/docker-compose.yml logs -f
150+ docker-compose -f docker/docker-compose.yml logs -f
151151
152152# Just the agent
153- docker-compose -f infrastructure/ docker/docker-compose.yml logs -f bytebot-agent
153+ docker-compose -f docker/docker-compose.yml logs -f bytebot-agent
154154```
155155
156156### Stop Services
157157
158158``` bash
159- docker-compose -f infrastructure/ docker/docker-compose.yml down
159+ docker-compose -f docker/docker-compose.yml down
160160```
161161
162162### Update to Latest
163163
164164``` bash
165- docker-compose -f infrastructure/ docker/docker-compose.yml pull
166- docker-compose -f infrastructure/ docker/docker-compose.yml up -d
165+ docker-compose -f docker/docker-compose.yml pull
166+ docker-compose -f docker/docker-compose.yml up -d
167167```
168168
169169### Reset Everything
170170
171171Remove all data and start fresh:
172172
173173``` bash
174- docker-compose -f infrastructure/ docker/docker-compose.yml down -v
174+ docker-compose -f docker/docker-compose.yml down -v
175175```
176176
177177## Quick API Examples
@@ -208,21 +208,21 @@ curl -X POST http://localhost:9990/api/computer \
208208 Check Docker is running and you have enough resources:
209209 ```bash
210210 docker info
211- docker-compose -f infrastructure/ docker/docker-compose.yml logs
211+ docker-compose -f docker/docker-compose.yml logs
212212 ```
213213 </Accordion >
214214 <Accordion title = " Can't connect to tasks UI" >
215215 Ensure all services are running:
216216 ```bash
217- docker-compose -f infrastructure/ docker/docker-compose.yml ps
217+ docker-compose -f docker/docker-compose.yml ps
218218 ```
219219 All services should show as "Up".
220220 </Accordion >
221221 <Accordion title = " Agent errors or no response" >
222222 Check your API key is set correctly:
223223 ```bash
224- cat infrastructure/ docker/.env
225- docker-compose -f infrastructure/ docker/docker-compose.yml logs bytebot-agent
224+ cat docker/.env
225+ docker-compose -f docker/docker-compose.yml logs bytebot-agent
226226 ```
227227 </Accordion >
228228</AccordionGroup >
0 commit comments