-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
52 lines (52 loc) · 1.27 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
49
50
51
52
services:
binfmt:
image: tonistiigi/binfmt
container_name: binfmt
privileged: true
command: --install arm64,arm
networks:
- front-tier
#network_mode: bridge
#restart: "no"
klipper-touch_build_arm32v7:
build: .
image: klipper-touch_build_arm32v7
container_name: klipper-touch_build_arm32v7
platform: linux/arm/v7
#user: "1000:1000"
volumes:
#- ./src-tauri/target/release/bundle/deb/:/app/src-tauri/target/release/bundle/deb/
- ./:/app/
depends_on:
binfmt:
condition: service_completed_successfully
#ports:
# - '3000:3000'
# environment:
# - HOST=0.0.0.0
# - PORT=3000
# env_file: .env
networks:
- front-tier
klipper-touch_build_arm64v8:
build: .
image: klipper-touch_build_arm64v8
container_name: klipper-touch_build_arm64v8
platform: linux/arm64/v8
#user: "1000:1000"
volumes:
#- ./src-tauri/target/release/bundle/deb/:/app/src-tauri/target/release/bundle/deb/
- ./:/app/
depends_on:
binfmt:
condition: service_completed_successfully
#ports:
# - '3000:3000'
# environment:
# - HOST=0.0.0.0
# - PORT=3000
# env_file: .env
networks:
- front-tier
networks:
front-tier: {}