mirror of
https://github.com/Paillat-dev/Botator.git
synced 2026-01-02 17:24:55 +00:00
14 lines
325 B
YAML
14 lines
325 B
YAML
# Docker compose sample file
|
|
|
|
version: '3'
|
|
services:
|
|
botator:
|
|
image: botator/botator:latest
|
|
container_name: botator
|
|
restart: always
|
|
volumes:
|
|
- ./config:/config
|
|
environment:
|
|
- PERSPECTIVE_API_KEY=your_api_key
|
|
- WEBHOOK_URL=https://yourdomain.com/botator
|
|
- DISCORD_TOKEN=your_token |