Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/load/clickhouse/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
services:
clickhouse:
image: clickhouse/clickhouse-server
container_name: dlt_test_clickhouse
restart: on-failure
ports:
- "9000:9000"
- "8123:8123"
Expand All @@ -13,7 +14,6 @@ services:
volumes:
- clickhouse_data:/var/lib/clickhouse/
- clickhouse_logs:/var/log/clickhouse-server/
restart: unless-stopped
healthcheck:
test: [ "CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:8123/ping" ]
interval: 3s
Expand Down
4 changes: 3 additions & 1 deletion tests/load/dremio/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
version: "3.7"
services:
dremio:
image: dremio/dremio-oss:25.0
container_name: dlt_test_dremio
restart: on-failure
ports:
- "9047:9047"
- "31010:31010"
Expand All @@ -11,6 +12,7 @@ services:
- dremio
minio:
image: minio/minio
container_name: dlt_test_dremio-minio-bucket
command: server /data --console-address ":9001"
environment:
- MINIO_ROOT_USER=minioadmin
Expand Down
5 changes: 2 additions & 3 deletions tests/load/filesystem_sftp/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
version: '3.8'

services:

sftpserver:
build:
context: bootstrap
dockerfile: Dockerfile
image: sftpserver:latest
container_name: dlt_test_filesystem-sftp
restart: on-failure
networks:
- sftpserver
ports:
Expand Down
5 changes: 2 additions & 3 deletions tests/load/postgres/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
version: "3.7"
services:
db:
env_file: postgres.env
build:
context: postgres
dockerfile: Dockerfile
container_name: dlt_postgres_db
restart: unless-stopped
container_name: dlt_test_postgres
restart: on-failure
volumes:
- db_home:/var/lib/postgresql/data
ports:
Expand Down
5 changes: 2 additions & 3 deletions tests/load/sources/sql_database/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
version: '3.8'

services:
mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
platform: linux/amd64
container_name: mssql_ct
container_name: dlt_test_mssql
restart: on-failure
environment:
- ACCEPT_EULA=Y
- MSSQL_SA_PASSWORD=Strong!Passw0rd
Expand Down
7 changes: 2 additions & 5 deletions tests/load/sqlalchemy/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# Use root/example as user/password credentials
version: '3.1'

services:

db:
image: mysql:8
restart: always
container_name: dlt_test_mysql
restart: on-failure
command: --sql-mode="STRICT_ALL_TABLES,STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION" --innodb-strict-mode
environment:
MYSQL_ROOT_PASSWORD: root
Expand Down
6 changes: 4 additions & 2 deletions tests/load/weaviate/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3.4'
services:
weaviate:
command:
Expand All @@ -9,9 +8,10 @@ services:
- --scheme
- http
image: semitechnologies/weaviate:1.21.1
container_name: dlt_test_weaviate
restart: on-failure
ports:
- 8080:8080
restart: on-failure:0
environment:
QUERY_DEFAULTS_LIMIT: 25
AUTHENTICATION_ANONYMOUS_ACCESS_ENABLED: 'true'
Expand All @@ -28,5 +28,7 @@ services:
NEIGHBOR_OCCURRENCE_IGNORE_PERCENTILE: 5
ENABLE_COMPOUND_SPLITTING: 'false'
image: semitechnologies/contextionary:en0.16.0-v1.2.1
container_name: dlt_test_weaviate-contextionary
restart: on-failure
ports:
- 9999:9999
Loading