-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
43 lines (38 loc) · 1.2 KB
/
docker-compose.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
volumes:
app_config:
app_logs:
app_pictures:
services:
bitbot:
image: ghcr.io/donbing/bitbot:latest
privileged: true
restart: unless-stopped
network_mode: "host" # alows us to show IP address
volumes:
- app_config:/code/config:rw
- app_logs:/code/logs:rw
- app_pictures:/code/pictures:rw
- /etc/localtime:/etc/localtime:ro # share timezone with the pi
#environment:
# - BITBOT_OUTPUT=disk, waveshare.epd2in7b_V2, inky
config-editor:
image: ghcr.io/donbing/bitbot-config-server:latest
restart: unless-stopped
volumes:
- app_config:/code/config:rw
- app_logs:/code/logs:rw
- app_pictures:/code/pictures:rw
ports:
- "8080:8081"
# display-driver:
# platform: linux/arm64/v7
# restart: unless-stopped
# build:
# dockerfile: display-driver.dockerfile
# context: .
# volumes:
# - app_config:/code/config:rw
# - app_logs:/code/logs:rw
# - app_pictures:/code/pictures:rw
# ports:
# - 8076:8080