remove liara.json & workflow/liara.yaml - add Dockerfile & docker-compose file

This commit is contained in:
2025-10-18 10:46:54 +03:30
parent 5a2fe5243b
commit d4e14a1e51
8 changed files with 97 additions and 46 deletions

10
docker-compose.yml Normal file
View File

@@ -0,0 +1,10 @@
version: '3.10'
services:
web:
build: ./
command: python manage.py runserver 0.0.0.0:5000
volumes:
- ./app/:/usr/src/app/
ports:
- "5000:5000"