forked from exonet/powerdns-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
81 lines (74 loc) · 2.01 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
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
version: "3.7"
services:
powerdns41:
image: psitrax/powerdns:4.1
container_name: pdns41
environment:
MYSQL_USER: root
MYSQL_PASS: verySecretPassword
MYSQL_HOST: db-pdns41
depends_on:
- db-pdns41
ports:
- 8041:8081
volumes:
- ./.docker/powerdns:/etc/pdns/conf.d
db-pdns41:
image: mysql:5.7
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: verySecretPassword
powerdns42:
image: psitrax/powerdns:v4.2
container_name: pdns42
environment:
MYSQL_USER: root
MYSQL_PASS: verySecretPassword
MYSQL_HOST: db-pdns42
depends_on:
- db-pdns42
ports:
- 8042:8081
volumes:
- ./.docker/powerdns:/etc/pdns/conf.d
db-pdns42:
image: mysql:5.7
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: verySecretPassword
powerdns43:
image: psitrax/powerdns:v4.3
container_name: pdns43
environment:
MYSQL_USER: root
MYSQL_PASS: verySecretPassword
MYSQL_HOST: db-pdns43
depends_on:
- db-pdns43
ports:
- 8043:8081
volumes:
- ./.docker/powerdns:/etc/pdns/conf.d
db-pdns43:
image: mysql:5.7
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: verySecretPassword
powerdns44:
image: psitrax/powerdns:v4.4
container_name: pdns44
environment:
MYSQL_USER: root
MYSQL_PASS: verySecretPassword
MYSQL_HOST: db-pdns44
depends_on:
- db-pdns44
ports:
- 8044:8081
volumes:
- ./.docker/powerdns44:/etc/pdns/conf.d
db-pdns44:
image: mysql:5.7
restart: unless-stopped
environment:
MYSQL_ROOT_PASSWORD: verySecretPassword