ajuste do readme
This commit is contained in:
parent
61556bcf33
commit
0a943c3d2d
48
readme.md
48
readme.md
@ -27,33 +27,33 @@ Antes de começar, certifique-se de ter os seguintes requisitos:
|
|||||||
git clone https://github.com/seu-usuario/transcrevezap.git
|
git clone https://github.com/seu-usuario/transcrevezap.git
|
||||||
cd transcrevezap
|
cd transcrevezap
|
||||||
```
|
```
|
||||||
2. Configure o arquivo `docker-compose.yaml`:
|
2. Configure o arquivo docker-compose.yaml:
|
||||||
|
|
||||||
```bash
|
```yaml
|
||||||
version: "3.7"
|
version: "3.7"
|
||||||
services:
|
services:
|
||||||
tcaudio:
|
tcaudio:
|
||||||
image: impacteai/transcrevezap:latest
|
image: impacteai/transcrevezap:latest
|
||||||
ports:
|
ports:
|
||||||
- 8005:8005 # Porta para FastAPI
|
- 8005:8005 # Porta para FastAPI
|
||||||
- 8501:8501 # Porta para Streamlit
|
- 8501:8501 # Porta para Streamlit
|
||||||
environment:
|
environment:
|
||||||
- REDIS_HOST=redis
|
- REDIS_HOST=redis
|
||||||
- REDIS_PORT=6380
|
- REDIS_PORT=6380
|
||||||
- MANAGER_USER=admin
|
- MANAGER_USER=admin
|
||||||
- MANAGER_PASSWORD=sua_senha_aqui
|
- MANAGER_PASSWORD=sua_senha_aqui
|
||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: redis:6
|
||||||
|
command: redis-server --port 6380 --appendonly yes
|
||||||
|
volumes:
|
||||||
|
- redis_data:/data
|
||||||
|
|
||||||
redis:
|
|
||||||
image: redis:6
|
|
||||||
command: redis-server --port 6380 --appendonly yes
|
|
||||||
volumes:
|
volumes:
|
||||||
- redis_data:/data
|
redis_data:
|
||||||
|
```
|
||||||
volumes:
|
|
||||||
redis_data:
|
|
||||||
```
|
|
||||||
|
|
||||||
3. Inicie os serviços:
|
3. Inicie os serviços:
|
||||||
```bash
|
```bash
|
||||||
|
Loading…
Reference in New Issue
Block a user