Skip to content

Commit 956ad5e

Browse files
committed
[DOP-23743] All hardcoded passwords in this repo are used ONLY for tests
1 parent f6921cc commit 956ad5e

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

.env

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ TZ=UTC
44
CH_HOST=localhost
55
CH_PORT=8123
66
CH_PORT_CLIENT=9001
7-
CH_DATABASE=default
8-
CH_USER=default
9-
CH_PASSWORD=
7+
CH_DATABASE=spark
8+
CH_USER=spark
9+
CH_PASSWORD=123UsedForTestOnly@!

docker-compose.test.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@ services:
33
test-clickhouse:
44
image: ${CLICKHOUSE_IMAGE:-clickhouse/clickhouse-server:latest-alpine}
55
restart: unless-stopped
6+
environment:
7+
TZ: UTC
8+
CLICKHOUSE_DB: spark
9+
CLICKHOUSE_USER: spark
10+
CLICKHOUSE_PASSWORD: 123UsedForTestOnly@!
11+
CLICKHOUSE_DEFAULT_ACCESS_MANAGEMENT: 1
612
ports:
713
- 8123:8123
814
- 9001:9000
9-

0 commit comments

Comments
 (0)