20 lines
324 B
YAML
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
|
|
|
|
|
|
|