-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
38 lines (38 loc) · 1 KB
/
docker-compose.yml
File metadata and controls
38 lines (38 loc) · 1 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
services:
kurrrentdb:
image: docker.kurrent.io/kurrent-preview/kurrentdb:25.0.1-experimental-arm64-8.0-jammy
environment:
- KURRENTDB_CLUSTER_SIZE=1
- KURRENTDB_RUN_PROJECTIONS=All
- KURRENTDB_START_STANDARD_PROJECTIONS=true
- KURRENTDB_INSECURE=true
- KURRENTDB_ENABLE_ATOM_PUB_OVER_HTTP=true
ports:
- "2113:2113"
volumes:
- type: volume
source: kurrrentdb-volume-data
target: /var/lib/kurrrentdb
- type: volume
source: kurrrentdb-volume-logs
target: /var/log/kurrrentdb
cassandra:
image: cassandra:latest
ports:
- "9042:9042"
volumes:
- type: volume
source: cassandra-volume-data
target: /var/lib/cassandra
init:
image: cassandra:latest
depends_on:
- cassandra
restart: "no"
entrypoint: [ "/cassandra-init.sh" ]
volumes:
- ./cassandra-init.sh:/cassandra-init.sh
volumes:
kurrrentdb-volume-data:
kurrrentdb-volume-logs:
cassandra-volume-data: