-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
28 lines (28 loc) · 897 Bytes
/
docker-compose.yaml
File metadata and controls
28 lines (28 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
version: "3"
services:
lark:
build: ./lark
ports:
- "16008:16008"
environment:
- GIN_MODE=release
- APP_ID=your_lark_app_id
- APP_SECRET=your_lark_app_secret
- APP_ENCRYPT_KEY=your_lark_encrypt_key
- APP_VERIFICATION_TOKEN=your_lark_verification_token
- BOT_NAME=your_bot_name
- DISCORD_MIDJOURNEY_URL=http://midjourney:16007/v1/trigger/midjourney-bot
- DISCORD_UPLOAD_URL=http://midjourney:16007/v1/trigger/upload
restart: unless-stopped
midjourney:
build: ./midjourney
ports:
- "16007:16007"
environment:
- GIN_MODE=release
- DISCORD_USER_TOKEN=your_discord_user_token
- DISCORD_BOT_TOKEN=your_discord_bot_token
- DISCORD_SERVER_ID=your_discord_server_id
- DISCORD_CHANNEL_ID=your_discord_channel_id
- CB_URL=http://lark:16008/api/discord
restart: unless-stopped