-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump * error with an api status code * remove redundant import * fix ApiError * fix ApiError by converting StatusCode to u16 * revert * u16 as StatusCode * update tests * improve tests readability * fix: ci tests & add docker-compose local test harness --------- Co-authored-by: Gero Gerke <[email protected]>
- Loading branch information
Showing
5 changed files
with
65 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
version: '3' | ||
services: | ||
influxdb: | ||
image: influxdb:1.8 | ||
ports: | ||
- 8086:8086 | ||
authed_influxdb: | ||
image: influxdb:1.8 | ||
ports: | ||
- 9086:8086 | ||
environment: | ||
INFLUXDB_HTTP_AUTH_ENABLED: true | ||
INFLUXDB_ADMIN_USER: admin | ||
INFLUXDB_ADMIN_PASSWORD: password | ||
INFLUXDB_USER: nopriv_user | ||
INFLUXDB_USER_PASSWORD: password | ||
influxdbv2: | ||
image: influxdb:2.6 | ||
ports: | ||
- 2086:8086 | ||
environment: | ||
DOCKER_INFLUXDB_INIT_MODE: setup | ||
DOCKER_INFLUXDB_INIT_USERNAME: admin | ||
DOCKER_INFLUXDB_INIT_PASSWORD: password | ||
DOCKER_INFLUXDB_INIT_ORG: testing | ||
DOCKER_INFLUXDB_INIT_BUCKET: mydb | ||
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: admintoken |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters