-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
28 lines (26 loc) · 920 Bytes
/
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
version: '3.5'
services:
openwrt-packages-build:
image: "openwrtorg/sdk:x86_64-19.07.7"
container_name: openwrt-packages-build
volumes:
- ./bin:/home/build/openwrt/bin
- ./key-build:/home/build/openwrt/key-build
- ./build.sh:/home/build/openwrt/build.sh
command: "./build.sh"
openwrt-packages-build_ar71xx:
image: "openwrtorg/sdk:ar71xx-nand-19.07.7"
container_name: openwrt-packages-build_ar71xx
volumes:
- ./bin:/home/build/openwrt/bin
- ./key-build:/home/build/openwrt/key-build
- ./build.sh:/home/build/openwrt/build.sh
command: "./build.sh"
openwrt-packages-build_r2s:
image: "openwrtorg/sdk:rockchip-armv8-21.02-SNAPSHOT"
container_name: openwrt-packages-build_r2s
volumes:
- ./bin:/home/build/openwrt/bin
- ./key-build:/home/build/openwrt/key-build
- ./build.sh:/home/build/openwrt/build.sh
command: "./build.sh"