14 lines
221 B
YAML
14 lines
221 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
bot:
|
|
build: .
|
|
container_name: vndb_bot
|
|
restart: always
|
|
env_file:
|
|
- .env
|
|
logging:
|
|
driver: "json-file"
|
|
options:
|
|
max-size: "10m"
|
|
max-file: "3" |