-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
48 lines (44 loc) · 1.02 KB
/
docker-compose.yml
File metadata and controls
48 lines (44 loc) · 1.02 KB
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
version: '3.8'
services:
build-jammy:
image: docker:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- .:/workspace
working_dir: /workspace
command: >
sh -c "
docker buildx build
--target jammy
--output type=local,dest=./output/jammy
-f dalec-spry.yaml
.
"
build-bookworm:
image: docker:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- .:/workspace
working_dir: /workspace
command: >
sh -c "
docker buildx build
--target bookworm
--output type=local,dest=./output/bookworm
-f dalec-spry.yaml
.
"
build-windows:
image: docker:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- .:/workspace
working_dir: /workspace
command: >
sh -c "
docker buildx build
--target windowscross
--output type=local,dest=./output/windows
-f dalec-spry.yaml
.
"