mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 06:19:24 +08:00
15 lines
321 B
YAML
15 lines
321 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
# Python app service
|
|
python_app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
image: stude_backend:latest
|
|
ports:
|
|
- "8000:8000" # Expose port 8000 for the web server
|
|
environment:
|
|
- PYTHONBUFFERED=1
|
|
command: ["python", "stude/manage.py", "runserver"]
|
|
|