blob: cb4ac4025a1c392693df0119f6df2502a78979a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
services:
aleebot:
image: aleebot
volumes:
- ./database.db:/bot/database.db
- ./.env:/bot/.env
ports:
- "3010:3010"
web:
image: aleebot-web
links:
- "aleebot:aleebot"
ports:
- "3000:3000"
|