aboutsummaryrefslogtreecommitdiff
path: root/docker-compose.yml
blob: 2f86485e7a8b99a7662349c6c9f8866be0c1901e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
services:
  aleebot:
    image: aleebot
    hostname: aleebot
    volumes:
      - ./database.db:/bot/database.db
      - ./.env:/bot/.env
    ports:
      - "3010:3010"
  web:
    image: aleebot-web
    links:
      - "aleebot:aleebot"
    ports:
      - "3000:3000"