-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
81 lines (71 loc) · 1.47 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:
reverseproxy:
build:
context: .
dockerfile: nginx/nginx.Dockerfile
depends_on:
- globomantics.identityserver
ports:
- "44395:44395"
networks:
globonet:
aliases:
- "id-local.globomantics.com"
- "www-local.globomantics.com"
globomantics.identityserver:
image: ${DOCKER_REGISTRY-}globomanticsidentityserver
build:
context: .
dockerfile: Globomantics.IdentityServer/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:5000
ports:
- "5000:5000"
networks:
- globonet
globomantics.ui:
build:
context: .
dockerfile: Globomantics.Core/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:5005
ports:
- "5005:5005"
networks:
- globonet
globomantics.api:
build:
context: .
dockerfile: Globomantics.Api/Dockerfile
environment:
- ASPNETCORE_URLS=http://*:5006
ports:
- "5006:5006"
networks:
- globonet
globoseq:
image: datalust/seq
restart: unless-stopped
ports:
- "5342:80"
environment:
- ACCEPT_EULA=Y
networks:
- globonet
globosmtp:
image: rnwood/smtp4dev
restart: always
ports:
- "5010:80"
networks:
- globonet
globosql:
image: arigatory/globomatics_database
restart: always
ports:
- "1435:1433"
networks:
- globonet
networks:
globonet: {}