-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.axon.yaml
More file actions
30 lines (30 loc) · 1.01 KB
/
docker-compose.axon.yaml
File metadata and controls
30 lines (30 loc) · 1.01 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
services:
heroes-af5-axonserver-n1:
image: axoniq/axonserver:2025.2.4
hostname: axonserver
ports:
- "8024:8024" # HTTP port
- "8124:8124" # gRPC port
environment:
AXONIQ_AXONSERVER_HOSTNAME: axonserver
AXONIQ_AXONSERVER_STANDALONE_DCB: true
AXONIQ_AXONSERVER_DEVMODE_ENABLED: true
volumes:
- ./volumes/axonserver-n1/data:/axonserver/data
- ./volumes/axonserver-n1/events:/axonserver/events
- ./volumes/axonserver-n1/plugins:/axonserver/plugins
- ./volumes/axonserver-n1/log:/axonserver/log
# - ./volumes/axonserver-n1/axoniq.license:/axonserver/config/axoniq.license # uncomment if you have a license file
heroes-af5-postgres:
image: postgres:18
labels:
org.springframework.boot.ignore: true
environment:
POSTGRES_DB: heroes_db
POSTGRES_USER: heroes_user
POSTGRES_PASSWORD: heroes_password
ports:
- "6555:6555"
volumes:
- ./volumes/postgres-axon:/var/lib/postgresql/18/docker
command: -p 6555