Files
LazyBot/docker-compose.yml
T
Arthur Puechberty b18657e01c Init Discord OAuth2
2026-01-14 23:58:42 +01:00

13 lines
270 B
YAML

services:
web:
image: node:20
container_name: discord_bot_web
working_dir: /app
volumes:
- ./app:/app
ports:
- "${PORT}:${PORT}"
env_file:
- ./.env
command: sh -c "npm install && node server.js"
restart: unless-stopped