Skip to content

Commit 5b217c9

Browse files
authored
fix(path): Update Installation.md base docker image build (#1425)
1 parent 3715a74 commit 5b217c9

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

website/docs/installation/Docker.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ AutoGen now provides updated Dockerfiles tailored for different needs. Building
2020
- **Autogen Basic**: Ideal for general use, this setup includes common Python libraries and essential dependencies. Perfect for those just starting with AutoGen.
2121

2222
```bash
23-
docker build -f .devcontainer/base/Dockerfile -t autogen_base_img https://github.com/microsoft/autogen.git
23+
docker build -f .devcontainer/Dockerfile -t autogen_base_img https://github.com/microsoft/autogen.git
2424
```
2525

2626
- **Autogen Advanced**: Advanced users or those requiring all the things that AutoGen has to offer `autogen_full_img`
2727

28-
```bash
29-
docker build -f .devcontainer/full/Dockerfile -t autogen_full_img https://github.com/microsoft/autogen.git
30-
```
28+
```bash
29+
docker build -f .devcontainer/full/Dockerfile -t autogen_full_img https://github.com/microsoft/autogen.git
30+
```
3131

3232
## Step 3: Run AutoGen Applications from Docker Image
3333

@@ -62,23 +62,23 @@ Here's how you can run an application built with AutoGen, using the Docker image
6262
docker run -it -p {WorkstationPortNum}:{DockerPortNum} -v {WorkStation_Dir}:{Docker_DIR} {name_of_the_image} {bash/python} {Docker_path_to_script_to_execute}
6363
```
6464

65-
- *Simple Script*: Run a Python script located in your local `myapp` directory.
65+
- _Simple Script_: Run a Python script located in your local `myapp` directory.
6666

67-
```bash
68-
docker run -it -v `pwd`/myapp:/myapp autogen_base_img:latest python /myapp/my_script.py
69-
```
67+
```bash
68+
docker run -it -v `pwd`/myapp:/myapp autogen_base_img:latest python /myapp/my_script.py
69+
```
7070

71-
- *Web Application*: If your application includes a web server running on port 5000.
71+
- _Web Application_: If your application includes a web server running on port 5000.
7272

73-
```bash
74-
docker run -it -p 8080:5000 -v $(pwd)/myapp:/myapp autogen_base_img:latest
75-
```
73+
```bash
74+
docker run -it -p 8080:5000 -v $(pwd)/myapp:/myapp autogen_base_img:latest
75+
```
7676

77-
- *Data Processing*: For tasks that involve processing data stored in a local directory.
77+
- _Data Processing_: For tasks that involve processing data stored in a local directory.
7878

79-
```bash
80-
docker run -it -v $(pwd)/data:/data autogen_base_img:latest python /myapp/process_data.py
81-
```
79+
```bash
80+
docker run -it -v $(pwd)/data:/data autogen_base_img:latest python /myapp/process_data.py
81+
```
8282

8383
## Additional Resources
8484

0 commit comments

Comments
 (0)