forked from JasperFx/wolverine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
178 lines (161 loc) · 4.02 KB
/
Copy pathdocker-compose.yml
File metadata and controls
178 lines (161 loc) · 4.02 KB
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
networks:
app-tier:
driver: bridge
sb-emulator:
sb-emulator-2:
services:
mosquitto:
image: "eclipse-mosquitto:2"
ports:
- "1883:1883"
volumes:
- ./docker/mosquitto/mosquitto.conf:/mosquitto/config/mosquitto.conf
postgresql:
image: "postgres:17"
ports:
- "5433:5432"
environment:
- POSTGRES_DATABASE=postgres
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
gcp-pubsub:
image: gcr.io/google.com/cloudsdktool/google-cloud-cli:emulators
ports:
- "8085:8085"
command:
[
"gcloud",
"--quiet",
"beta",
"emulators",
"pubsub",
"start",
"--host-port",
"0.0.0.0:8085",
"--project",
"wolverine",
"--verbosity",
"debug",
"--log-http",
"--user-output-enabled",
]
rabbitmq:
image: "rabbitmq:4-management"
ports:
- "5672:5672"
- "15672:15672"
sqlserver:
image: "mcr.microsoft.com/azure-sql-edge:latest"
ports:
- "1434:1433"
environment:
- "ACCEPT_EULA=Y"
- "SA_PASSWORD=P@55w0rd"
- "MSSQL_PID=Developer"
pulsar:
image: "apachepulsar/pulsar:4.0.3"
ports:
- "6650:6650"
- "8080:8080"
command: bin/pulsar standalone
localstack:
image: localstack/localstack:4
ports:
- "127.0.0.1:4566:4566" # LocalStack Gateway
- "127.0.0.1:4510-4559:4510-4559" # external services port range
environment:
- DEBUG=${DEBUG-}
- PERSISTENCE=${PERSISTENCE-}
- LAMBDA_EXECUTOR=${LAMBDA_EXECUTOR-}
- LOCALSTACK_API_KEY=${LOCALSTACK_API_KEY-} # only required for Pro
- DOCKER_HOST=unix:///var/run/docker.sock
volumes:
- "${LOCALSTACK_VOLUME_DIR:-./volume}:/var/lib/localstack"
- "/var/run/docker.sock:/var/run/docker.sock"
kafka:
image: confluentinc/confluent-local:7.7.1
ports:
- "8082:8082"
- "9092:9092"
- "9101:9101"
redis-server:
image: "redis:7-alpine"
command: redis-server
ports:
- "6379:6379"
nats:
image: "nats:2"
ports:
- "4222:4222"
- "8222:8222"
command: ["--jetstream", "-m", "8222"]
mysql:
image: "mysql:8.0"
ports:
- "3306:3306"
environment:
- "MYSQL_ROOT_PASSWORD=P@55w0rd"
- "MYSQL_DATABASE=wolverine"
oracle:
image: "gvenzl/oracle-free:23-slim"
ports:
- "1521:1521"
environment:
- "ORACLE_PASSWORD=P@55w0rd"
- "APP_USER=wolverine"
- "APP_USER_PASSWORD=wolverine"
volumes:
- ./docker/oracle:/container-entrypoint-initdb.d
asb-sql:
image: "mcr.microsoft.com/azure-sql-edge:latest"
environment:
- "ACCEPT_EULA=Y"
- "MSSQL_SA_PASSWORD=Strong_Passw0rd#2025"
networks:
sb-emulator:
asb-emulator:
image: "mcr.microsoft.com/azure-messaging/servicebus-emulator:latest"
volumes:
- ./docker/asb/Config.json:/ServiceBus_Emulator/ConfigFiles/Config.json
ports:
- "5673:5672"
- "5300:5300"
environment:
SQL_SERVER: asb-sql
MSSQL_SA_PASSWORD: "Strong_Passw0rd#2025"
ACCEPT_EULA: "Y"
EMULATOR_HTTP_PORT: 5300
depends_on:
- asb-sql
networks:
sb-emulator:
cosmosdb:
image: "mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:vnext-preview"
ports:
- "8081:8081"
- "1234:1234"
environment:
- "PROTOCOL=https"
asb-sql-2:
image: "mcr.microsoft.com/azure-sql-edge:latest"
environment:
- "ACCEPT_EULA=Y"
- "MSSQL_SA_PASSWORD=Strong_Passw0rd#2025"
networks:
sb-emulator-2:
asb-emulator-2:
image: "mcr.microsoft.com/azure-messaging/servicebus-emulator:latest"
volumes:
- ./docker/asb/Config.json:/ServiceBus_Emulator/ConfigFiles/Config.json
ports:
- "5674:5672"
- "5301:5300"
environment:
SQL_SERVER: asb-sql-2
MSSQL_SA_PASSWORD: "Strong_Passw0rd#2025"
ACCEPT_EULA: "Y"
EMULATOR_HTTP_PORT: 5300
depends_on:
- asb-sql-2
networks:
sb-emulator-2: