-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (35 loc) · 972 Bytes
/
docker-compose.yml
File metadata and controls
35 lines (35 loc) · 972 Bytes
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
version: '3'
services:
discovery-server:
build: simple-service-discovery
ports:
- 9000:9090
admin-dashboard:
build: simple-admin-server
ports:
- 9001:9094
environment:
EUREKA_CLIENT_SERVICE_URL_DEFAULT_ZONE: http://discovery-server:9090/eureka/
depends_on:
- discovery-server
forex-service:
build: simple-forex-service
environment:
SERVER_PORT: 0
EUREKA_CLIENT_SERVICE_URL_DEFAULT_ZONE: http://discovery-server:9090/eureka/
depends_on:
- discovery-server
oauth2-authorization-server:
build: simple-authorization-server
environment:
EUREKA_CLIENT_SERVICE_URL_DEFAULT_ZONE: http://discovery-server:9090/eureka/
depends_on:
- discovery-server
service-gateway:
build: simple-service-gateway
ports:
- 9002:9092
environment:
EUREKA_CLIENT_SERVICE_URL_DEFAULT_ZONE: http://discovery-server:9090/eureka/
depends_on:
- discovery-server