Initial Flask demo

This commit is contained in:
Galyaviev Ruslan
2025-09-01 10:54:35 +03:00
commit 646f36716d
13 changed files with 125 additions and 0 deletions

8
docker-compose.yml Normal file
View File

@@ -0,0 +1,8 @@
version: "3.8"
services:
web:
image: flask-demo:latest
container_name: flask-demo
ports:
- "8888:8000"
restart: unless-stopped