2026-01-02 06:18:48 +07:00
|
|
|
version: '3.8'
|
|
|
|
|
|
|
|
|
|
services:
|
|
|
|
|
lms-c:
|
|
|
|
|
build: .
|
|
|
|
|
ports:
|
|
|
|
|
- "5000:5000"
|
|
|
|
|
volumes:
|
2026-01-04 13:27:06 +07:00
|
|
|
- ../content:/app/content
|
2026-01-02 06:18:48 +07:00
|
|
|
- ./static:/app/static
|
|
|
|
|
- ./templates:/app/templates
|
2026-01-02 08:45:32 +07:00
|
|
|
- ./tokens.csv:/app/tokens.csv
|
2026-01-02 06:18:48 +07:00
|
|
|
environment:
|
|
|
|
|
- FLASK_ENV=development
|
|
|
|
|
command: python app.py
|