-
-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
63 lines (52 loc) · 1.55 KB
/
docker-compose.yml
File metadata and controls
63 lines (52 loc) · 1.55 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: '3'
services:
# tag:build
build-frontend:
build:
context: .
dockerfile: Dockerfile.builder.frontend
image: defreitas/dns-proxy-server-build-frontend:${VERSION:-snapshot}
build-linux-amd64:
image: defreitas/dns-proxy-server-build:${VERSION:-snapshot}-amd64
build:
context: .
dockerfile: Dockerfile.builder.linux-amd64
build-linux-amd64-static:
image: defreitas/dns-proxy-server-build:${VERSION:-snapshot}-amd64-static
build:
context: .
dockerfile: Dockerfile.builder.linux-amd64-static
build-linux-aarch64:
image: defreitas/dns-proxy-server-build:${VERSION:-snapshot}-aarch64
build:
context: .
dockerfile: Dockerfile.builder.linux-aarch64
platform: linux/arm64/v8
build-linux-jre:
image: defreitas/dns-proxy-server-build:${VERSION:-snapshot}-jre
build:
context: .
dockerfile: Dockerfile.builder.linux-jre
# end:build
# tag:image
image-linux-amd64:
image: defreitas/dns-proxy-server:${VERSION:-snapshot}
build:
context: .
dockerfile: Dockerfile
image-linux-amd64-static:
image: defreitas/dns-proxy-server:${VERSION:-snapshot}-amd64-static
build:
context: .
dockerfile: Dockerfile.amd64-static
image-linux-aarch64:
image: defreitas/dns-proxy-server:${VERSION:-snapshot}-aarch64
build:
context: .
dockerfile: Dockerfile.aarch64
image-linux-jre:
image: defreitas/dns-proxy-server:${VERSION:-snapshot}-jre
build:
context: .
dockerfile: Dockerfile.jre
# end:image