https://github.com/octavian451/locust_poc
A PoC project demonstrating Locust with Docker Compose
https://github.com/octavian451/locust_poc
docker-compose fastapi locust
Last synced: 23 days ago
JSON representation
A PoC project demonstrating Locust with Docker Compose
- Host: GitHub
- URL: https://github.com/octavian451/locust_poc
- Owner: octavian451
- License: gpl-3.0
- Created: 2026-02-25T18:37:39.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-25T18:44:28.000Z (4 months ago)
- Last Synced: 2026-05-07T14:54:20.794Z (about 2 months ago)
- Topics: docker-compose, fastapi, locust
- Language: Dockerfile
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Setup environment
```bash
poetry install
```
# Start the server
```bash
docker compose up --build
```
# Send requests to the server
```bash
curl -X GET localhost:8000
```
# Start locust server
```bash
poetry run locust -f ./load_test.py
```