-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
40 lines (35 loc) · 1.01 KB
/
docker-compose.yml
File metadata and controls
40 lines (35 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
31
32
33
34
35
36
37
38
39
40
version: '3.8'
services:
carepet-scylla1:
image: scylladb/scylla:5.2
restart: always
command: --seeds=carepet-scylla1,carepet-scylla2 --smp 1 --memory 750M --overprovisioned 1 --api-address 0.0.0.0
ports:
- "9042:9042"
volumes:
- carepet-scylla1-data:/var/lib/scylla
networks:
- carepet-network
carepet-scylla2:
image: scylladb/scylla:5.2
restart: always
command: --seeds=carepet-scylla1,carepet-scylla2 --smp 1 --memory 750M --overprovisioned 1 --api-address 0.0.0.0
volumes:
- carepet-scylla2-data:/var/lib/scylla
networks:
- carepet-network
carepet-scylla3:
image: scylladb/scylla:5.2
restart: always
command: --seeds=carepet-scylla1,carepet-scylla2 --smp 1 --memory 750M --overprovisioned 1 --api-address 0.0.0.0
volumes:
- carepet-scylla3-data:/var/lib/scylla
networks:
- carepet-network
volumes:
carepet-scylla1-data:
carepet-scylla2-data:
carepet-scylla3-data:
networks:
carepet-network:
driver: bridge