You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
301 B

version: '3.8'
services:
bot:
image: discord_ai_bot
build: .
volumes:
- ./config.json:/app/config.json
depends_on:
- db
db:
image: surrealdb/surrealdb
command: start --user root --pass root rocksdb:///data/database
volumes:
- db:/data
volumes:
db: