Docs: Update Docker profile and fix method call in druidapi tutorial (#14308)

This commit is contained in:
Victoria Lim 2023-05-18 07:29:02 -07:00 committed by GitHub
parent c546df3866
commit 058eb99a8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View File

@ -673,7 +673,7 @@
"metadata": {},
"outputs": [],
"source": [
"sql_client.show_tables(consts.SYS_SCHEMA)"
"sql_client.tables(consts.SYS_SCHEMA)"
]
},
{
@ -711,7 +711,7 @@
"metadata": {},
"outputs": [],
"source": [
"sql_client.show_tables()"
"sql_client.tables()"
]
},
{

View File

@ -162,7 +162,7 @@ services:
context: ..
dockerfile: Dockerfile
container_name: jupyter
profiles: ["jupyter", "all-services"]
profiles: ["jupyter", "druid-jupyter", "all-services"]
environment:
DOCKER_STACKS_JUPYTER_CMD: "notebook"
NOTEBOOK_ARGS: "--NotebookApp.token=''"

View File

@ -160,7 +160,7 @@ services:
jupyter:
image: imply/druid-notebook:latest
container_name: jupyter
profiles: ["jupyter", "all-services"]
profiles: ["jupyter", "druid-jupyter", "all-services"]
environment:
DOCKER_STACKS_JUPYTER_CMD: "notebook"
NOTEBOOK_ARGS: "--NotebookApp.token=''"