23 lines
517 B
YAML
23 lines
517 B
YAML
services:
|
|
# GKACHELE™ SaaS Modular - Backend Flask
|
|
app:
|
|
build:
|
|
context: .
|
|
dockerfile: ./demo/Dockerfile
|
|
container_name: gkachele_app
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5000:5000"
|
|
environment:
|
|
- FLASK_ENV=production
|
|
- SECRET_KEY=demo-secret-key-2025
|
|
volumes:
|
|
- .:/app
|
|
- ./demo/database:/app/demo/database # Persistencia de la DB SQLite
|
|
networks:
|
|
- gkachele_network
|
|
|
|
networks:
|
|
gkachele_network:
|
|
driver: bridge
|