Initial Commit

This commit is contained in:
2026-08-20 02:27:36 +02:00
commit eb006ab895
25 changed files with 1675 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
services:
dev:
build:
context: .
target: dev
volumes:
- ./src:/app/src:ro
- ./data:/app/data
ports:
- "3000:3000"
restart: unless-stopped
prod:
build:
context: .
target: prod
volumes:
- bot_data:/app/data
ports:
- "3000:3000"
restart: unless-stopped
volumes:
bot_data: