mirror of
https://github.com/whekin/household-bot.git
synced 2026-03-31 00:19:38 +00:00
20 lines
478 B
YAML
20 lines
478 B
YAML
services:
|
|
bot:
|
|
build:
|
|
context: .
|
|
dockerfile: apps/bot/Dockerfile
|
|
environment:
|
|
PORT: '8080'
|
|
TELEGRAM_BOT_TOKEN: '${TELEGRAM_BOT_TOKEN:-000000:dev-token}'
|
|
TELEGRAM_WEBHOOK_SECRET: '${TELEGRAM_WEBHOOK_SECRET:-dev-secret}'
|
|
TELEGRAM_WEBHOOK_PATH: '${TELEGRAM_WEBHOOK_PATH:-/webhook/telegram}'
|
|
ports:
|
|
- '8080:8080'
|
|
|
|
miniapp:
|
|
build:
|
|
context: .
|
|
dockerfile: apps/miniapp/Dockerfile
|
|
ports:
|
|
- '8081:8080'
|