https://github.com/justcodeit7/website_chat_streamlit
https://github.com/justcodeit7/website_chat_streamlit
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/justcodeit7/website_chat_streamlit
- Owner: JustCodeIt7
- License: apache-2.0
- Created: 2025-03-18T06:47:41.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-04-04T01:15:30.000Z (10 months ago)
- Last Synced: 2025-07-07T16:38:44.353Z (7 months ago)
- Language: Python
- Size: 28.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Public_Python_Template
## Docker Build
```bash
docker build -t web_chat .
```
## Docker Run
```bash
docker run -d -p 8501:8501 web_chat
```
## Docker Compose
```bash
docker-compose up
```
## Docker Compose Build
```bash
docker-compose build
```
## Docker Compose Run
```bash
docker-compose run
```
## Docker Compose Up
I'll help you run a Docker image with the tag "web_chat" on port 8501.
To run a Docker image, you need to use the `docker run` command with port mapping. Here's the command you should use:
```bash
docker run -p 8501:8501 web_chat
```
This command:
- Uses `docker run` to start a container
- Maps port 8501 on your host to port 8501 in the container with `-p 8501:8501`
- Uses the image tagged as `web_chat`
If you need to run the container in detached mode (in the background), add the `-d` flag:
```bash
docker run -d -p 8501:8501 web_chat
```