-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
45 lines (43 loc) · 1.14 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
version: '3.3'
services:
axonserver:
image: axoniq/axonserver:latest-dev
hostname: axonserver
volumes:
- axonserver-data:/axonserver/data
- axonserver-events:/axonserver/events
- axonserver-plugins:/axonserver/plugins
- axonserver-config:/axonserver/config:ro
ports:
- '8024:8024' # HTTP/UI/REST API - Axon Server management UI
- '8124:8124' # gRPC - Used for Axon Server messaging (not intended for direct access through a web browser)
- '8224:8224' # Internal cluster communication related to projections within Axon Server (not intended for direct access through a web browser)
networks:
- axon-demo
volumes:
axonserver-data:
driver: local
driver_opts:
o: bind
type: none
device: ${PWD}/data
axonserver-events:
driver: local
driver_opts:
o: bind
type: none
device: ${PWD}/events
axonserver-plugins:
driver: local
driver_opts:
o: bind
type: none
device: ${PWD}/plugins
axonserver-config:
driver: local
driver_opts:
o: bind
type: none
device: ${PWD}/config
networks:
axon-demo: