-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
74 lines (67 loc) · 1.33 KB
/
docker-compose.yml
File metadata and controls
74 lines (67 loc) · 1.33 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
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
nats:
image: nats:latest
ports:
- "4222:4222"
- "8222:8222"
expose:
- 4222
- 8222
command: "-js -m 8222 --user admin --pass password"
nats-dashboard:
image: mdawar/nats-dashboard:latest
ports:
- "8000:80"
environment:
# Some UIs allow pre-configuring the server URL
- NATS_URL=http://nats:8222
depends_on:
- nats
networks:
default:
name: "nimbus-dev"