14 lines
310 B
YAML
14 lines
310 B
YAML
services:
|
|
tg-watchbot:
|
|
build: .
|
|
container_name: tg-watchbot
|
|
restart: unless-stopped
|
|
ports:
|
|
- "8765:8765"
|
|
env_file:
|
|
- .env
|
|
volumes:
|
|
- ./config.yaml:/app/config.yaml
|
|
- ./tg-watchbot.sqlite3:/app/tg-watchbot.sqlite3
|
|
- ./tg-watchbot.log:/app/tg-watchbot.log
|