Files
checkmyhouse/docker-compose.yml
2025-09-10 23:34:54 +08:00

20 lines
324 B
YAML

services:
django_project:
restart: "no"
ports:
- "8000:8000"
build:
context: .
# command: sleep infinity # Infinite loop to keep container alive doing nothing
command:
- python
- -m
- uvicorn
- website.asgi:application
- --host=0.0.0.0
- --port=8000