-
Notifications
You must be signed in to change notification settings - Fork 16
/
docker-compose.yml
48 lines (44 loc) · 1.16 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
44
45
46
47
48
version: '3.5'
services:
dock: # Build the Dock with HDMI out and USB in...
privileged: true
build:
context: .
dockerfile: Dockerfile
args:
BOARD: lichee_rv_dock
DISK_MB: 7300
GNU_TOOLS_TAG: 10.2.1
UBOOT_TAG: d1-wip
KERNEL_TAG: d1/all
KERNEL_COMMIT: ""
volumes:
- './lichee_rv_dock:/outport'
panel:
privileged: true
build:
context: .
dockerfile: Dockerfile
args:
BOARD: lichee_rv_86
DISK_MB: 7300
GNU_TOOLS_TAG: 10.2.1
UBOOT_TAG: d1-2022-10-31
KERNEL_TAG: d1-wip-v5.18-rc1
KERNEL_COMMIT: ""
volumes:
- './lichee_rv_86:/outport'
#lcd: # Build the Dock with LCD display enabled
#privileged: true
#build:
#context: .
#dockerfile: Dockerfile
#args:
#BOARD: lichee_rv_lcd
#DISK_MB: 8000
#GNU_TOOLS_TAG: 10.2.1
#UBOOT_TAG: d1-2022-10-31
#KERNEL_TAG: d1-wip-v5.18-rc1
#KERNEL_COMMIT: b466df9
#volumes:
#- './lichee_rv_lcd:/outport'