Files
dc-bot/docker-compose.yml
Space-Banane 9235748a47 first commit
2026-02-22 14:55:10 +01:00

12 lines
260 B
YAML

services:
bot:
image: node:24
container_name: shsf_dc_bot
restart: unless-stopped
env_file: .env
working_dir: /app
volumes:
- .:/app
ports:
- "$PORT:$PORT"
command: sh -c "npm i -g pnpm && pnpm install && pnpm dev"