mirror of
https://github.com/Sudo-JHare/SMARTFLARE-Smart-App-Gallery.git
synced 2025-07-29 18:25:35 +00:00
13 lines
281 B
YAML
13 lines
281 B
YAML
version: '3.8'
|
|
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "5000:5000"
|
|
volumes:
|
|
- ./instance:/app/instance
|
|
- ./uploads:/app/uploads
|
|
environment:
|
|
- FLASK_APP=app
|
|
- FLASK_ENV=development
|
|
command: ["flask", "run", "--host=0.0.0.0"] |