-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
79 lines (72 loc) · 1.34 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
version: '3'
services:
regdb:
image: postgres:latest
restart: always
ports:
- 7432:5432
environment:
- POSTGRES_PASSWORD=dbpassword
- POSTGRES_DB=registry
- POSTGRES_USER=registry
volumes:
- registry_db:/var/lib/postgresql/data
- ./sql/init.sql:/docker-entrypoint-initdb.d/init.sql
healthcheck:
test: ["CMD", "pg_isready", "-q"]
regadmin:
restart: always
container_name: regadmin
build:
context: ./admin
ports:
- 8088:8088
links:
- regdb
# whois service
regwhois:
restart: always
container_name: regwhois
build:
context: ./whois
ports:
- 8043:8043
links:
- regdb
# main EPP service
regcore:
restart: always
container_name: regcore
build:
context: ./registry
ports:
# EPP
- 8090:8090
# gRPC
- 51015:51015
links:
- regdb
# logger service
#reglogger:
# restart: always
# container_name: reglogger
# build:
# context: ./logger
# ports:
# - 51055:51055
# links:
# - regdb
# dns server
#bind9:
# restart: always
# container_name: bind9
# build:
# context: ./scripts
# ports:
# - "8053:53/tcp"
# - "8053:53/udp"
# links:
# - regdb
volumes:
registry_db:
driver: local