mirror of
https://github.com/csd4ni3l/debt-by-ai.git
synced 2026-01-01 20:43:44 +01:00
Add docker support and automatic docker build
This commit is contained in:
17
docker-compose.yml
Normal file
17
docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
debt-by-ai:
|
||||
build: .
|
||||
container_name: debt-by-ai
|
||||
ports:
|
||||
- "8080:8080"
|
||||
environment:
|
||||
HOST: "0.0.0.0"
|
||||
PORT: "8080"
|
||||
DEBUG_MODE: "false"
|
||||
USE_HACKCLUB_AI: "false"
|
||||
GEMINI_API_KEY: "changeme"
|
||||
FLASK_SECRET_KEY: "changeme"
|
||||
DB_FILE: "/app/data.db"
|
||||
volumes:
|
||||
- ./data.db:/app/data.db
|
||||
restart: unless-stopped
|
||||
Reference in New Issue
Block a user