forked from mindsdb/mindsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f04fad2
commit 62a6af9
Showing
6 changed files
with
82 additions
and
8 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,3 @@ | ||
docker-compose build | ||
docker-compose push | ||
#docker-compose -f docker-compose-up-only.yml up -d |
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,32 @@ | ||
{ | ||
"config_version":"1.4", | ||
"storage_dir": "./mdb_storage", | ||
"log": { | ||
"level": { | ||
"console": "ERROR", | ||
"file": "WARNING", | ||
"db": "WARNING" | ||
} | ||
}, | ||
"debug": false, | ||
"integrations": {}, | ||
"api": { | ||
"http": { | ||
"host": "192.168.8.142", | ||
"port": "47334" | ||
}, | ||
"mysql": { | ||
"host": "192.168.8.142", | ||
"password": "", | ||
"port": "47335", | ||
"user": "mindsdb", | ||
"database": "mindsdb", | ||
"ssl": true | ||
}, | ||
"mongodb": { | ||
"host": "192.168.8.142", | ||
"port": "47336", | ||
"database": "mindsdb" | ||
} | ||
} | ||
} |
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.2" | ||
|
||
services: | ||
|
||
mindsdb: | ||
platform: linux/amd64 | ||
restart: always | ||
image: clickzetta/mindsdb:1.0.0 | ||
ports: | ||
- '47334:47334' | ||
- '47335:47335' | ||
- '47336:47336' | ||
# watchfiles will reload the app when python files are changed | ||
command: bash -c "watchfiles --filter python 'python -m mindsdb' ." | ||
environment: | ||
MINDSDB_DOCKER_ENV: "True" | ||
MINDSDB_STORAGE_DIR: "/mindsdb/var" | ||
# OPENAI_API_KEY: "..." | ||
volumes: | ||
- type: bind | ||
source: . | ||
target: /mindsdb | ||
healthcheck: | ||
test: ["CMD", "curl", "-f", "http://localhost:47334/api/util/ping"] | ||
interval: 30s | ||
timeout: 4s | ||
retries: 100 |
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