-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
49 lines (41 loc) · 878 Bytes
/
docker-compose.yml
File metadata and controls
49 lines (41 loc) · 878 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
version: "3.9"
services:
Registry-server:
image: registry-eureka:latest
container_name: Registry-server
ports:
- "8761:8761"
environment:
- SPRING_PROFILES_ACTIVE=docker
networks:
- thalinet
GatewayService:
image: gateway:latest
container_name: GatewayService
ports:
- "8885:8885"
environment:
- SPRING_PROFILES_ACTIVE=docker
networks:
- thalinet
Confiserver:
image: config-server:latest
container_name: Confiserver
ports:
- "8081:8081"
environment:
- SPRING_PROFILES_ACTIVE=docker
networks:
- thalinet
NephthaliOpenAi:
image: nephthaliopenai:latest
container_name: NephthaliOpenAi
ports:
- "9000:9000"
environment:
- SPRING_PROFILES_ACTIVE=docker
networks:
- thalinet
networks:
thalinet:
driver: bridge