-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdocker-compose.ghcr.yml
More file actions
45 lines (43 loc) Β· 991 Bytes
/
docker-compose.ghcr.yml
File metadata and controls
45 lines (43 loc) Β· 991 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
38
39
40
41
42
43
44
45
services:
scylla-node:
container_name: scylla-node
image: scylladb/scylla:6.2
command:
- --smp=1
- --memory=2GB
- --overprovisioned=1
- --developer-mode=1
- --seeds=scylla-node
ports:
- "9042:9042"
healthcheck:
test:
- CMD-SHELL
- cqlsh -e "SHOW VERSION" || exit 1
interval: 15s
timeout: 30s
retries: 15
start_period: 30s
networks:
- scylla-network
scylla-studio:
container_name: scylla-studio
image: ghcr.io/basementdevs/scylla-studio:main
tty: true
environment:
- NEXT_PUBLIC_DOCKER_COMPOSE=1
- NEXT_TELEMETRY_DISABLED=1
- COREPACK_ENABLE_DOWNLOAD_PROMPT=0
ports:
- "3000:3000"
depends_on:
scylla-node:
condition: service_healthy
networks:
- scylla-network
networks:
scylla-network:
name: scylla-network
driver: bridge
driver_opts:
com.docker.network.bridge.name: scylla-network