-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcompose.yml
More file actions
24 lines (24 loc) · 783 Bytes
/
compose.yml
File metadata and controls
24 lines (24 loc) · 783 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
services:
bridge-bot:
image: "ghcr.io/skykings-network/bridge-bot:latest"
restart: unless-stopped
container_name: bridge-bot # optional: set a custom container name
volumes:
- .minecraft:/root/.minecraft
environment:
- BRIDGE_USE_ENV_CONFIG=true
- BRIDGE_ACCOUNT_EMAIL=
- BRIDGE_DISCORD_TOKEN=
- BRIDGE_DISCORD_CHANNEL=
# you can add additional bridge bots by duplicating the above, like so:
# bridge-bot-2:
# image: "ghcr.io/skykings-network/bridge-bot:latest"
# restart: unless-stopped
# container_name: bridge-bot-2
# volumes:
# - .minecraft:/root/.minecraft
# environment:
# - BRIDGE_USE_ENV_CONFIG=true
# - BRIDGE_ACCOUNT_EMAIL=
# - BRIDGE_DISCORD_TOKEN=
# - BRIDGE_DISCORD_CHANNEL=