31 lines
522 B
YAML
31 lines
522 B
YAML
---
|
|
services:
|
|
bot:
|
|
image: ghcr.io/esmbot/esmbot:edge
|
|
container_name: bots-esmbot
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./logs:/app/logs
|
|
- bot-help:/app/help
|
|
- bot-temp:/app/temp
|
|
- ./config:/app/config
|
|
- /srv/www/images/esmbot:/images
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
OUTPUT: /app/help/help.md
|
|
TEMPDIR: /app/temp
|
|
user: root
|
|
|
|
networks:
|
|
- postgres
|
|
|
|
volumes:
|
|
bot-help:
|
|
bot-temp:
|
|
|
|
networks:
|
|
postgres:
|
|
name: postgres
|
|
external: true
|