-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (27 loc) · 791 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
31 lines (27 loc) · 791 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
version: "3.2"
services:
sqlite-server:
image: edge-sqlite-db:1.0.0
hostname: server
networks:
- sqlite
ports:
- 29000:29000
environment:
DISCOVERY: "server"
HOSTNAME: "server"
CLUSTER_HEAD: "true" #There should be only 1 cluster head that takes care of data placement. Default value is false.
PLACEMENT: "false" #Enable/disable data placement algorithms
JAVA_OPTS: "-Xms256m -Xmx256m" #Java heap size
SIZE: "512" #Size for total off-heap storage (1/2 for persistence and 1/2 for in-memory caches)
volumes:
- sqlite_databases:/mnt/databases
networks:
sqlite:
volumes:
sqlite_databases:
driver: local
driver_opts:
type: none
o: bind
device: C:\Users\30695\Desktop\thesis\sqlite