19 lines
495 B
YAML
19 lines
495 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
telegram-bot:
|
|
container_name: dsbot
|
|
#container_name: dmbot # uncomment for use
|
|
#container_name: gtbot # uncomment for use
|
|
image: ghcr.io/driftywinds/mpbot:latestDS
|
|
#image: ghcr.io/driftywinds/mpbot:latestDM # uncomment for use
|
|
#image: ghcr.io/driftywinds/mpbot:latestGT # uncomment for use
|
|
restart: unless-stopped
|
|
env_file:
|
|
- .env
|
|
logging:
|
|
driver: json-file
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3"
|