Skip to content

Commit 37f359e

Browse files
authored
Update README.md
1 parent 99dc363 commit 37f359e

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -107,21 +107,23 @@ or
107107
### Docker Installation
108108

109109
1. Install Docker: https://www.docker.com/get-started
110-
2. Pull the Docker image
110+
2. Create .env files (use the examples in both `apps/python-server` and `apps/web-ui`
111111
```sh
112-
docker pull othneildrew/open-whisperer:latest
112+
cp apps/web-ui/.example.env.production.local apps/web-ui/.env.producation.local # used by docker
113+
cp apps/web-ui/.example.env.production.local apps/web-ui/.env.development.local # used when running locally in dev (i.e.: npm run dev)
114+
cp apps/python-server/.example.env apps/python-server/.env # used by docker
113115
```
114-
3. Run the container
116+
4. Run the containers
115117
```sh
116-
docker run -d --name open-whisperer
118+
docker compose up --build -d
117119
```
118-
4. Verify the container is running
120+
5. Verify the container is running
119121
```sh
120122
docker ps
121123
```
122-
5. Access the Web UI
123-
Visit http://localhost:3567
124-
6. Enjoy
124+
6. Access the Web UI
125+
Visit http://localhost:3567
126+
7. Enjoy
125127

126128

127129
### Manual Installation

0 commit comments

Comments
 (0)