-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (47 loc) · 922 Bytes
/
docker-compose.yml
File metadata and controls
52 lines (47 loc) · 922 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
50
51
52
version: "3"
services:
seq:
image: datalust/seq:latest
ports:
- "5341:80"
environment:
ACCEPT_EULA: "Y"
SEQ_FIRSTRUN_NOAUTHENTICATION: true
redis:
image: redis
ports:
- "6379:6379"
expose:
- 6379
artemis:
image: apache/activemq-artemis:latest
ports:
- "5672:5672" # AMQP
- "8161:8161" # Web Console
environment:
- ARTEMIS_USER=admin
- ARTEMIS_PASSWORD=admin
expose:
- 5672
- 8161
sqlserver:
build:
context: docker/sqlserver
ports:
- "1433:1433"
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "Nimbus_Dev_123!"
MSSQL_PID: Developer
expose:
- 1433
postgres:
image: postgres:17
ports:
- "5432:5432"
environment:
POSTGRES_DB: nimbus
POSTGRES_USER: nimbus
POSTGRES_PASSWORD: Nimbus_Dev_123!
expose:
- 5432