-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
71 lines (63 loc) · 1.59 KB
/
Copy pathdocker-compose.yml
File metadata and controls
71 lines (63 loc) · 1.59 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
version: '3.1'
services:
# front_service
front-envoy:
image: envoyproxy/envoy-alpine:v1.7.0
volumes:
- ./Envoy/envoy-config.yaml:/etc/envoy-config.yaml
- ./TlsSecret/server.key:/etc/tls-secret/server.key
- ./TlsSecret/server.crt:/etc/tls-secret/server.crt
ports:
- "443:443"
- "80:80"
- "9901:9901"
command: "/usr/local/bin/envoy -c /etc/envoy-config.yaml --v2-config-only -l info --service-cluster 'gateway' --service-node 'gateway' --log-format '[METADATA][%Y-%m-%d %T.%e][%t][%l][%n] %v'"
networks:
- net
# usersecurityservice:
# hostname: usersecurityservice
# image: user_security_service:latest
# ports:
# - "18080:18080"
# networks:
# - net
# basicdisplayservice:
# hostname: usersecurityservice
# image: basic_display_service:latest
# ports:
# - "28080:28080"
# networks:
# - net
# nextclientservice:
# hostname: nextclientservice
# image: next_client_service:latest
# ports:
# - "3000:3000"
# networks:
# - net
usersecuritydb:
hostname: usersecuritydb
image: postgres:14.1
environment:
POSTGRES_DB: "postgres"
POSTGRES_PASSWORD: "changeme"
POSTGRES_USER: "postgres"
PGPORT: 15432
ports:
- "15432:15432"
networks:
- net
basicdisplaydb:
hostname: basicdisplaydb
image: postgres:14.1
environment:
POSTGRES_DB: "postgres"
POSTGRES_PASSWORD: "changeme"
POSTGRES_USER: "postgres"
PGPORT: 25432
ports:
- "25432:25432"
networks:
- net
networks:
net: