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