Skip to content

Instantly share code, notes, and snippets.

@Malanius
Created March 17, 2021 20:36
Show Gist options
  • Select an option

  • Save Malanius/d0c4deb9016c46c99a4a12435ebffda4 to your computer and use it in GitHub Desktop.

Select an option

Save Malanius/d0c4deb9016c46c99a4a12435ebffda4 to your computer and use it in GitHub Desktop.
Axon server docker compose
version: '3.9'
services:
axonserver:
image: axoniq/axonserver
hostname: axonserver
volumes:
- axonserver-data:/data
- axonserver-events:/eventdata
- axonserver-config:/config:ro
ports:
- '8024:8024'
- '8124:8124'
- '8224:8224'
networks:
- axon-demo
volumes:
axonserver-data:
driver: local
driver_opts:
o: bind
type: none
device: ./axon-server/data
axonserver-events:
driver: local
driver_opts:
o: bind
type: none
device: ./axon-server/events
axonserver-config:
driver: local
driver_opts:
o: bind
type: none
device: ./axon-server/config
networks:
axon-demo:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment