Files
dd-multitool/docker-compose.yml
koneko 2216ab4a3d
Some checks failed
Deploy bot / build-and-deploy (push) Failing after 30s
impossible
2025-08-26 17:16:23 +02:00

38 lines
856 B
YAML

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: