2022-02-05 20:17:00 +01:00
|
|
|
# Copy this file to `docker-compose.yml` and modify it to your liking.
|
|
|
|
# Copy `.env.example` to `.env` to configure environment variables.
|
|
|
|
|
|
|
|
version: "3.1"
|
|
|
|
|
|
|
|
services:
|
|
|
|
bot:
|
|
|
|
build: ./bot
|
|
|
|
environment:
|
|
|
|
- DB_HOST=mongo:27017
|
|
|
|
- DB_USERNAME=mogus
|
|
|
|
- DB_PASS
|
|
|
|
- DB_NAME=admin
|
|
|
|
- BOT_TOKEN
|
|
|
|
- BOT_OWNERS
|
|
|
|
- LOG_WEBHOOK
|
|
|
|
- NODE_ENV=production
|
|
|
|
- API_WS_URL=ws://api:9000/internal/ws
|
|
|
|
- API_WS_TOKEN=${INTERNAL_API_TOKEN}
|
|
|
|
- WEB_UI_URL=${PUBLIC_WEB_URL}
|
|
|
|
- BOT_PREFIX
|
2022-02-12 15:25:24 +01:00
|
|
|
- BOT_METRICS_PORT
|
|
|
|
- BOT_METRICS_MSG_PING_CHANNEL
|
2022-04-09 17:13:31 +02:00
|
|
|
- BOT_STATUS
|
|
|
|
- BOT_STATUS_INTERVAL
|
2022-02-12 15:25:24 +01:00
|
|
|
# Uncomment if you enabled Prometheus metrics
|
|
|
|
#ports:
|
|
|
|
# - 127.0.0.1:${BOT_METRICS_PORT}:${BOT_METRICS_PORT}
|
2022-02-05 20:17:00 +01:00
|
|
|
depends_on:
|
|
|
|
- mongo
|
|
|
|
- api
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
api:
|
|
|
|
build: ./api
|
|
|
|
environment:
|
|
|
|
- BOT_API_TOKEN=${INTERNAL_API_TOKEN}
|
|
|
|
- DB_HOST=mongo:27017
|
|
|
|
- DB_USERNAME=mogus
|
|
|
|
- DB_PASS
|
|
|
|
- DB_NAME=admin
|
|
|
|
expose:
|
|
|
|
- 9000
|
|
|
|
ports:
|
|
|
|
- 0.0.0.0:9000:9000
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
# If you prefer to host the web app on a different
|
|
|
|
# platform like Vercel, you can remove this part.
|
|
|
|
web:
|
|
|
|
build:
|
|
|
|
context: ./web
|
|
|
|
args:
|
|
|
|
- VITE_API_URL=${PUBLIC_API_URL}
|
|
|
|
- VITE_BOT_PREFIX=${BOT_PREFIX}
|
|
|
|
ports:
|
|
|
|
- 0.0.0.0:8080:80
|
|
|
|
restart: unless-stopped
|
|
|
|
|
|
|
|
mongo:
|
|
|
|
image: mongo
|
|
|
|
environment:
|
|
|
|
- MONGO_INITDB_ROOT_USERNAME=mogus
|
|
|
|
- MONGO_INITDB_ROOT_PASSWORD=${DB_PASS}
|
|
|
|
expose:
|
|
|
|
- 27017
|
|
|
|
# If you want to access the database from outside
|
|
|
|
#ports:
|
|
|
|
# - "0.0.0.0:36602:27017"
|
|
|
|
volumes:
|
|
|
|
- ./db:/data/db:rw
|
|
|
|
restart: unless-stopped
|