This repository was archived by the owner on Jun 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
88 lines (88 loc) · 2.14 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
88 lines (88 loc) · 2.14 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
version: "3.8"
services:
pdns-api-proxy:
command: ["/pdns-api-proxy"]
build:
context: ./
dockerfile: ./build/ci/services/Containerfile
depends_on:
- pdns-primary
networks:
- pdns-distribute-net
ports:
- "9502:9502"
- "30000:30000"
pdns-health-checker:
command: ["/pdns-health-checker"]
build:
context: ./
dockerfile: ./build/ci/services/Containerfile
depends_on:
- pdns-primary
networks:
- pdns-distribute-net
ports:
- "9501:9501"
pdns-secondary-syncer:
command: ["/pdns-secondary-syncer"]
build:
context: ./
dockerfile: ./build/ci/services/Containerfile
depends_on:
- pdns-secondary
networks:
- pdns-distribute-net
ports:
- "9503:9503"
pdns-zone-provider:
command: ["/pdns-zone-provider"]
build:
context: ./
dockerfile: ./build/ci/services/Containerfile
depends_on:
- pdns-secondary
networks:
- pdns-distribute-net
ports:
- "9500:9500"
pdns-primary:
build:
context: ./build/ci/pdns-primary
dockerfile: Containerfile
depends_on:
- nats
networks:
- pdns-distribute-net
ports:
- "5301:5301"
- "8081:8081"
pdns-secondary:
build:
context: ./build/ci/pdns-secondary
dockerfile: Containerfile
depends_on:
- nats
networks:
- pdns-distribute-net
ports:
- "5300:53"
- "8082:8082"
nats:
image: docker.io/library/nats:2.11.4
command: ["--config", "nats-server.conf", "--jetstream", "--server_name", "nats-js-test", "--routes", "nats://ruser:T0pS3cr3t@nats2:6223"]
networks:
- pdns-distribute-net
ports:
- "4222:4222"
- "8222:8222"
nats2:
image: docker.io/library/nats:2.11.4
command: ["--config", "nats-server.conf", "--jetstream", "--server_name", "nats-js-test2", "--routes", "nats://ruser:T0pS3cr3t@nats:6222", "--port", "4223", "--http_port", "8223", "--cluster", "nats://nats2:6223"]
networks:
- pdns-distribute-net
ports:
- "4223:4223"
- "8223:8223"
networks:
pdns-distribute-net:
enable_ipv6: false