-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathcompose.yml
More file actions
28 lines (26 loc) · 746 Bytes
/
compose.yml
File metadata and controls
28 lines (26 loc) · 746 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
services:
marketbot:
image: ghcr.io/${GITHUB_REPOSITORY_OWNER:-codez0mb1e}/binancebot-marketbot:latest
container_name: binancebot-marketbot
restart: unless-stopped
environment:
- BINANCE_API_KEY=${BINANCE_API_KEY}
- BINANCE_SECRET=${BINANCE_SECRET}
env_file:
- .env
networks:
- binancebot-network
marketviewer:
image: ghcr.io/${GITHUB_REPOSITORY_OWNER:-codez0mb1e}/binancebot-marketviewer:latest
container_name: binancebot-marketviewer
restart: unless-stopped
environment:
- BINANCE_API_KEY=${BINANCE_API_KEY}
- BINANCE_SECRET=${BINANCE_SECRET}
env_file:
- .env
networks:
- binancebot-network
networks:
binancebot-network:
driver: bridge