-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
35 lines (33 loc) · 1.43 KB
/
docker-compose.yml
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
version: '3.7'
services:
questdb:
image: questdb/questdb
container_name: questdb
restart: always
ports:
- 9000:9000
- 9009:9009
- 8812:8812
- 9003:9003
volumes:
- ./questdb:/root/.questdb
environment:
- QDB_LOG_W_STDOUT_LEVEL=ERROR
- QDB_LOG_W_FILE_LEVEL=ERROR
- QDB_LOG_W_HTTP_MIN_LEVEL=ERROR
- QDB_SHARED_WORKER_COUNT=2 # Amount of worker threads
- QDB_PG_USER=${username} # postgresql user -> Configured in .env file
- QDB_PG_PASSWORD=${password} # postgresql password -> Configured in .env file
- QDB_TELEMETRY_ENABLED=false # Disable telemetry
# - QDB_HTTP_ENABLED=false # Disable http server gui and rest interface
# - QDB_HTTP_BIND_TO=0.0.0.0:9000 # http server
# - QDB_HTTP_SECURITY_READONLY=true # HTTP read only mode
# - QDB_HTTP_MIN_ENABLED=false # Disable http health server
# - QDB_HTTP_MIN_BIND_TO=0.0.0.0:9003 # http health server
# - QDB_PG_ENABLED=false # Disable postgresql
# - QDB_PG_NET_BIND_TO=0.0.0.0:8812 # postgresql server
# - QBD_LINE_TCP_ENABLED=false # Disable influxdb tcp server
# - QBD_LINE_TCP_NET_BIND_TO=0.0.0.0:9009 # influxdb tcp server
# - QBD_LINE_UDP_ENABLED=false # Disable influxdb udp server
# - QBD_LINE_UDP_NET_BIND_TO=0.0.0.0:9009 # influxdb udp server
## Additional variables can be found here: https://questdb.io/docs/reference/configuration