tldtest.net/docker-compose.yml
2024-03-26 09:38:14 +01:00

11 lines
201 B
YAML

version: '3.11'
services:
web:
build:
context: .
dockerfile: Dockerfile
command: gunicorn tldtest.wsgi:application --bind 0.0.0.0:8000 --timeout 600
ports:
- 8000:8000