14 lines
255 B
YAML
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 |