gunicorn/tests/docker/asgi/docker-compose.yml
Benoit Chesneau 6575d86251 Add docker integration tests for simple ASGI (HTTP protocol)
Tests the ASGI worker with direct HTTP requests without uWSGI protocol.
Includes tests for GET, POST, query strings, path handling, keepalive,
large bodies, and custom headers.
2026-01-25 15:03:12 +01:00

15 lines
273 B
YAML

services:
gunicorn:
build:
context: ../../..
dockerfile: tests/docker/asgi/Dockerfile
command: >
gunicorn
--worker-class asgi
--bind 0.0.0.0:8000
--workers 1
--log-level debug
app:app
ports:
- "8080:8000"