File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 107107### Docker Installation
108108
1091091 . 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
You can’t perform that action at this time.
0 commit comments