-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdev-server-compose.yml
131 lines (123 loc) · 3.08 KB
/
dev-server-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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
version: "3.9"
services:
dev-domains:
image: thuthuka111/domain-pulse-domains:dev-latest
env_file:
- ./backend/.env
- ./backend/.postgresql.env
environment:
- DOMAINS_HOST=dev-domains
- ENGINE_HOST=dev-engine
- PROFILES_HOST=dev-profiles
- SOURCECONNECTOR_HOST=dev-sourceconnector
- WAREHOUSE_HOST=dev-warehouse
ports:
- "7000:8000"
restart: always
command: >
sh -c "uwsgi --ini domains.uwsgi.ini"
volumes:
- uwsgi_data:/tmp/uwsgi/
networks:
- dev-network
dev-engine:
image: thuthuka111/domain-pulse-engine:dev-latest
env_file:
- ./backend/.env
- ./backend/.postgresql.env
environment:
- DOMAINS_HOST=dev-domains
- ENGINE_HOST=dev-engine
- PROFILES_HOST=dev-profiles
- SOURCECONNECTOR_HOST=dev-sourceconnector
- WAREHOUSE_HOST=dev-warehouse
ports:
- "7001:8001"
restart: always
command: >
sh -c "uwsgi --ini engine.uwsgi.ini"
volumes:
- uwsgi_data:/tmp/uwsgi/
networks:
- dev-network
dev-profiles:
image: thuthuka111/domain-pulse-profiles:dev-latest
env_file:
- ./backend/.env
- ./backend/.postgresql.env
environment:
- DOMAINS_HOST=dev-domains
- ENGINE_HOST=dev-engine
- PROFILES_HOST=dev-profiles
- SOURCECONNECTOR_HOST=dev-sourceconnector
- WAREHOUSE_HOST=dev-warehouse
ports:
- "7002:8002"
restart: always
command: >
sh -c "uwsgi --ini profiles.uwsgi.ini"
volumes:
- uwsgi_data:/tmp/uwsgi/
networks:
- dev-network
dev-sourceconnector:
image: thuthuka111/domain-pulse-sourceconnector:dev-latest
env_file:
- ./backend/.env
- ./backend/.postgresql.env
environment:
- DOMAINS_HOST=dev-domains
- ENGINE_HOST=dev-engine
- PROFILES_HOST=dev-profiles
- SOURCECONNECTOR_HOST=dev-sourceconnector
- WAREHOUSE_HOST=dev-warehouse
ports:
- "7003:8003"
restart: always
command: >
sh -c "uwsgi --ini sourceconnector.uwsgi.ini"
volumes:
- uwsgi_data:/tmp/uwsgi/
networks:
- dev-network
dev-warehouse:
image: thuthuka111/domain-pulse-warehouse:dev-latest
env_file:
- ./backend/.env
- ./backend/.postgresql.env
environment:
- DOMAINS_HOST=dev-domains
- ENGINE_HOST=dev-engine
- PROFILES_HOST=dev-profiles
- SOURCECONNECTOR_HOST=dev-sourceconnector
- WAREHOUSE_HOST=dev-warehouse
ports:
- "7004:8004"
restart: always
command: >
sh -c "uwsgi --ini warehouse.uwsgi.ini"
volumes:
- uwsgi_data:/tmp/uwsgi/
networks:
- dev-network
dev-webserver:
image: thuthuka111/domain-pulse-webserver:dev-latest
environment:
- NGINX_CONF=dev-domainpulse.app.conf
restart: always
volumes:
- uwsgi_data:/tmp/uwsgi/
ports:
- "5000:80"
depends_on:
- dev-engine
- dev-domains
- dev-profiles
- dev-sourceconnector
- dev-warehouse
networks:
- dev-network
volumes:
uwsgi_data:
networks:
dev-network: