mirror of
https://github.com/arthur-pbty/LazyBot.git
synced 2026-06-03 15:07:29 +02:00
13 lines
270 B
YAML
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 |