Files
eventsub2/docker-compose.yaml
2026-04-23 04:59:24 +02:00

14 lines
255 B
YAML

name: TwitchEventSub
services:
twitch-eventsub:
image: node:24-alpine
working_dir: /app
volumes:
- .:/app
- /app/node_modules
command: >
sh -c "npm install --omit=dev && node src/index.js"
restart: unless-stopped