-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
23 lines (23 loc) · 808 Bytes
/
docker-compose.yaml
File metadata and controls
23 lines (23 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
services:
axonserver-n1:
image: 'axoniq/axonserver:2025.2.1'
ports:
- '8024:8024' # HTTP port
- '8124:8124' # gRPC port
environment:
axoniq_axonserver_standalone: true
axoniq_axonserver_hostname: axon-server
axoniq_axonserver_autocluster_first: axon-server
axoniq_axonserver_autocluster_contexts: _admin
spring_servlet_multipart_max-file-size: 95MB
spring_servlet_multipart_max-request-size: 95MB
# volumes:
# - ./axonserver/axoniq.license:/axonserver/config/axoniq.license # uncomment if you have a license file
postgres:
image: postgres:16
environment:
POSTGRES_DB: heroes_of_ddd_development
POSTGRES_USER: heroes_of_ddd_db_user
POSTGRES_PASSWORD: heroes_of_ddd_db_password
ports:
- "6446:5432"