mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
* WIP: Convert SchemaAPI to be DAX-centric
* Tables(), CreateField()
* CreateTable(), DeleteTable(), DeleteField()
* More cleanup
* Remove the old SchemaAPI
(cherry picked from commit a15783cb49)
29 lines
657 B
YAML
29 lines
657 B
YAML
version: '3'
|
|
|
|
services:
|
|
featurebase:
|
|
build:
|
|
context: ../.
|
|
dockerfile: ./Dockerfile-clustertests
|
|
environment:
|
|
PILOSA_DATA_DIR: /data
|
|
PILOSA_BIND: 0.0.0.0:10101
|
|
PILOSA_BIND_GRPC: 0.0.0.0:20101
|
|
PILOSA_ADVERTISE: featurebase:10101
|
|
command: /featurebase -test.run=TestRunMain -test.coverprofile=/testdata/batch_coverage.out server
|
|
volumes:
|
|
- ./testdata:/testdata
|
|
|
|
batch-test:
|
|
build:
|
|
context: ../.
|
|
dockerfile: ./batch/Dockerfile-test
|
|
volumes:
|
|
- ./testdata:/testdata
|
|
|
|
wait:
|
|
depends_on:
|
|
- "featurebase"
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile-wait
|