-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
53 lines (47 loc) · 862 Bytes
/
docker-compose.yml
File metadata and controls
53 lines (47 loc) · 862 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
openwrt:
image: easypi/openwrt
container_name: openwrt
hostname: OpenWrt
ports:
- "8022:22/tcp"
- "8080:80/tcp"
volumes:
- ./ipk:/tmp/ipk
privileged: no
restart: unless-stopped
base:
image: easypi/openwrt:base
command: sleep infinity
environment:
- TERM=xterm
restart: unless-stopped
bcm2708:
extends:
service: base
image: easypi/openwrt:bcm2708
volumes:
- ./data/bcm2708:/data
bcm2709:
extends:
service: base
image: easypi/openwrt:bcm2709
volumes:
- ./data/bcm2709:/data
bcm2710:
extends:
service: base
image: easypi/openwrt:bcm2710
volumes:
- ./data/bcm2710:/data
mt7628:
extends:
service: base
image: easypi/openwrt:mt7628
volumes:
- ./data/mt7628:/data
x86-64:
extends:
service: base
image: easypi/openwrt:x86-64
volumes:
- ./data/x86-64:/data