14 lines
231 B
YAML
14 lines
231 B
YAML
|
version: '3.8'
|
||
|
|
||
|
services:
|
||
|
telegram-bot:
|
||
|
build: .
|
||
|
container_name: telegram-bot
|
||
|
env_file:
|
||
|
- .env
|
||
|
restart: unless-stopped
|
||
|
volumes:
|
||
|
- .:/app
|
||
|
working_dir: /app
|
||
|
command: node app.js
|