Files
Botator/docker-compose.yml
Paillat a0e387b2fb fix(google-palm-process.py): replace actual API key with placeholder 'S'
fix(docker-compose.yml): add build configuration for botator service
feat(docker-compose.yml): add env_file configuration for botator service
2023-07-14 17:53:59 +02:00

17 lines
359 B
YAML

# Docker compose sample file
version: '3'
services:
botator:
build:
context: .
dockerfile: Dockerfile
restart: always
volumes:
- ./database:/Botator/database
environment:
- PERSPECTIVE_API_KEY=your_api_key
- WEBHOOK_URL=https://yourdomain.com/botator
- DISCORD_TOKEN=your_token
env_file:
- .env