-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
37 lines (34 loc) · 868 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
37 lines (34 loc) · 868 Bytes
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
services:
scylladb:
image: scylladb/scylla
container_name: telepathy-scylladb
command: --smp 1 --memory 1G --overprovisioned 1 --api-address 0.0.0.0
ports:
- "9042:9042"
- "10000:10000"
volumes:
- scylla-data:/var/lib/scylla
restart: unless-stopped
redis:
image: redis:8-alpine
container_name: telepathy-redis
ports:
- "6379:6379"
volumes:
- redis-data:/data
restart: unless-stopped
# scylla-manager:
# image: scylladb/scylla-manager
# container_name: telepathy-scylla-manager
# ports:
# - "8080:8080"
# environment:
# - CLUSTER_NAME=telepathy
# - SCYLLA_MANAGER_USERNAME=admin
# - SCYLLA_MANAGER_PASSWORD=admin123
# - SCYLLA_CONTACT_POINTS=telepathy-scylladb
# restart: unless-stopped
name: telepathy_docker
volumes:
scylla-data:
redis-data: