https://github.com/vinioccode/furia-chatbot
Um chatbot para os fãs de CS feito para a FURIA!
https://github.com/vinioccode/furia-chatbot
Last synced: about 1 year ago
JSON representation
Um chatbot para os fãs de CS feito para a FURIA!
- Host: GitHub
- URL: https://github.com/vinioccode/furia-chatbot
- Owner: ViniOcCode
- License: mit
- Created: 2025-04-24T17:32:06.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-04T06:21:17.000Z (about 1 year ago)
- Last Synced: 2025-05-08T00:18:27.234Z (about 1 year ago)
- Language: Python
- Size: 171 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.docker.md
- License: LICENSE
Awesome Lists containing this project
README
# Furia ChatBot — Docker Setup
Este projeto roda uma aplicação Flask em Docker.
---
## 🚀 Como construir a imagem
Dentro da raiz do projeto (onde está o Dockerfile), execute:
```bash
docker build -t furia-chatbot:1.0 .
```
___
## 🕹️ Como rodar o container
```bash
docker run -p 8080:5000 furia-chatbot1.0
```
A porta pode local pode ser qualquer uma! Você escolhe uma para você, ela que vai rodar o localhost. Por exemplo, se você colocar 8080, a aplicação estará rodando na porta 8080, portanto basta colocar isso no navegador:
```bash
http://localhost:8080
```
## Comandos úteis
- Ver containers rodando:
```bash
docker ps
```
- Parar um container:
```bash
docker stop
```
- Remover um container:
```bash
docker rm
```
- Remover imagem:
```bash
docker rmi furia-chatbot:1.0
```