Readd
Some checks failed
Deploy bot / build-and-deploy (push) Failing after 2s

This commit is contained in:
2025-08-26 00:28:59 +02:00
commit 7a87b284af
40 changed files with 3681 additions and 0 deletions

38
docker-compose.yml Normal file
View File

@ -0,0 +1,38 @@
name: dd-multitool
services:
api:
restart: unless-stopped
build:
context: ./api
dockerfile: Dockerfile
networks:
- dundef-tool
environment:
- PORT=2000
web:
restart: unless-stopped
build:
context: ./web
dockerfile: Dockerfile
networks:
- dundef-tool
depends_on:
- api
ports:
- "8080:80"
bot:
restart: unless-stopped
environment:
- TOKEN=${TOKEN}
- PREFIX=${PREFIX}
- SHARED_ENDPOINT=http://api:2000/
build:
context: ./bot
dockerfile: Dockerfile
networks:
- dundef-tool
depends_on:
- api
networks:
dundef-tool: