-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
84 lines (78 loc) · 1.93 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
82
83
84
# version: '3.4'
# services:
# rabbitmq:
# image: rabbitmq:3.7.8-management-alpine
# container_name: gitloy.rabbitmq
# hostname: gitloy.rabbitmq
# networks:
# - gitloy.net
# ports:
# - 15672:15672
# environment:
# RABBITMQ_DEFAULT_USER: "gitloy"
# RABBITMQ_DEFAULT_PASS: "P@ssword123!"
# deploy:
# restart_policy:
# condition: on-failure
# db:
# image: microsoft/mssql-server-linux:2017-latest
# container_name: gitloy.db
# networks:
# - gitloy.net
# environment:
# ACCEPT_EULA: "Y"
# SA_PASSWORD: "P@ssword123!"
# ports:
# - "1433:1433"
# deploy:
# restart_policy:
# condition: on-failure
# worker:
# image: gitloy/worker
# container_name: gitloy.worker
# networks:
# - gitloy.net
# environment:
# - ASPNETCORE_ENVIRONMENT=Development
# - ASPNETCORE_URLS=https://+:443;http://+:80
# build:
# context: .
# dockerfile: JobRunner/Dockerfile
# deploy:
# replicas: 4
# restart_policy:
# condition: on-failure
# depends_on:
# - rabbitmq
# # webhookapi:
# # image: gitloy/webhookapi
# # container_name: gitloy.webhook
# # networks:
# # - gitloy.net
# # environment:
# # - ASPNETCORE_ENVIRONMENT=Development
# # - ASPNETCORE_URLS=https://+:443;http://+:80
# # build:
# # context: .
# # dockerfile: WebhookAPI/Dockerfile
# # deploy:
# # restart: on-failure
# # depends_on:
# # - db
# # - rabbitmq
# # - worker
# # webportal:
# # image: gitloy/webportal
# # container_name: gitloy.webportal
# # networks:
# # - gitloy.net
# # build:
# # context: .
# # dockerfile: FrontPortal/Dockerfile
# # deploy:
# # restart: on-failure
# # depends_on:
# # - db
# # - rabbitmq
# networks:
# gitloy.net: