Using Exasol AI Lab Docker Edition requires some specific prerequisites but also offers additional benefits.
The Operating System and Setup Guide helps you with the initial system setup.
AI Lab also offers a short introduction to Docker Images and Containers if you are new to this technology.
The Unix shell commands in the following sections will use some environment variables. By this you can adapt the commands to your specific preferences while still being able to execute them literally:
- Variable
VOLUMEis expected to contain the name of your Docker volume, see Managing User Data.- The related Command line option
--volumeis optional and enables keeping your changes to notebook files or the configuration parameters across separate sessions with the AI Lab Docker Edition.
- The related Command line option
- Variable
LISTEN_IPdefines the range of IP-addresses allowed to connect to the forwarded Jupyter port.0.0.0.0means all IP-addresses are allowed.- For local setups, we recommend
127.0.0.1. - Please contact your IT department if there are security restrictions.
- Variable
CONTAINER_NAMEdefines the name for the AI Lab Docker container. Giving the running container a name makes it easier to refer to it when stopping or restarting it.
Here is an example:
LISTEN_IP=0.0.0.0
VOLUME=my-vol
CONTAINER_NAME=ai-labThe AI Lab can connect to an External Exasol database, as well as using an Integrated Exasol Docker-DB.
You can use the command shown below with some limitations:
- Does not support Integrated Exasol Docker-DB.
- Does not allow creating Script Language Containers (SLCs), as is done in the examples in the notebooks Exporting a flavor and Customizing a flavor.
The command will
- Run a Docker container using the specified version of the AI Lab.
- If the Docker image is not yet available on your local machine, the command will download it from hub.docker.com.
- Mount the volume
$VOLUMEto the directory/home/jupyter/notebooksinside the container- Option
--volumeis optional and enables keeping your changes to notebook files or the configuration parameters across separate sessions with the AI Lab Docker Edition, see Managing User Data. - If the volume does not exist yet, then it will be created automatically.
- Option
- Forward port
49494on the daemon machine to allow connections from all IP addresses matched by$LISTEN_IP.
docker run \
--name ${CONTAINER_NAME} \
--volume ${VOLUME}:/home/jupyter/notebooks \
--publish ${LISTEN_IP}:49494:49494 \
exasol/ai-labAdditional options
- If port
49494is not available on your daemon machine you can forward port49494of the Jupyter server in the Docker container to another port, e.g.55555, on the daemon machine with--publish ${LISTEN_IP}:55555:49494. - Add option
--detachto run the container in the background, but please note that the initial welcome message with instructions will as a consequence be hidden. For further information, see Commanddocker logsand Stopping the AI Lab Docker Container. - You can override AI Lab's default password by passing environment variable
JUPYTER_PASSWORDafter CLI option--envor-eof commanddocker run. - If you want to use an Integrated Exasol Docker-DB or to create SLCs, you must enable the AI Lab Docker container to access the Docker daemon.
- Please note: In this case
- Additional Limitations and security risks apply.
- Only file system objects on the daemon machine can be mounted. This applies to ordinary directories as well as the
docker.sock. - On Windows mounting
docker.sockonly works with Docker Desktop with WSL 2.
- You can mount the Docker Socket with
--volume /var/run/docker.sock:/var/run/docker.sock, see graphical overview.
- Please note: In this case
The following example uses all additional options:
docker run \
--name ${CONTAINER_NAME} \
--detach \
--env JUPYTER_PASSWORD="individual_password" \
--volume ${VOLUME}:/home/jupyter/notebooks \
--volume /var/run/docker.sock:/var/run/docker.sock \
--publish ${LISTEN_IP}:55555:49494 \
exasol/ai-labAdditional requirements apply when you plan to write UDFs with GPU support while using an Integrated Exasol Docker-DB.
If you used one of the commands given in preceding sections without option --detach then you can stop the AI Lab Docker container by simply pressing Ctrl-C.
If you used option --detach then you need to use the following command:
docker stop ${CONTAINER_NAME}See also https://docs.docker.com/engine/reference/commandline/container_stop/.
In general we recommend to restart a stopped container instead of creating a new one. This has the benefit of keeping additional dependencies that you did install:
docker start ${CONTAINER_NAME}Please note
- If you accidently created a new AI Lab Docker container and the stopped container still exists please remove the new container and restart the existing one.
- If there is no stopped AI Lab container and you are using Exasol Docker-DB you need to link the newly created container to the Exasol Docker-DB network
db_network_DemoDb.
docker network connect db_network_DemoDb <CONTAINER>See also https://docs.docker.com/engine/reference/commandline/network_connect/.
When starting AI Lab as a Docker container the command line will display a welcome message showing instructions for connecting to the Jupyter server or overriding the default password.
The Server for Jupyter has been started successfully.
You can connect with http://<host>:<port>.
If you are using a Docker daemon on your local machine and forwarding
the port to the same port then you can connect with http://localhost:49494.
The default password is "ailab".
You can change it by passing the environment variable JUPYTER_PASSWORD
when running the Docker container:
docker run --env JUPYTER_PASSWORD=<your password> ... exasol/ai-lab
Using an internet browser you then can connect to the Jupyter server running in the Docker container in order to follow the tutorials presented by a set of Jupyter notebooks, see Connecting to Jupyter Service.
For the parameter <host>: If your daemon machine is identical to the machine your browser is running on then you can replace <host> by localhost otherwise please use the IP address of the daemon machine.
The following section explains how to log in to the Docker container to change settings.
First, you need to find out the container's ID. The following command shows the list of currently running Docker containers.
docker psHere is a sample output
CONTAINER ID IMAGE COMMAND NAMES
1199447716d4 image:2 "entrypoint" funny_rabbit
The following command enables you to log in as the user root to the specified container:
docker exec --user root -it ${CONTAINER_NAME} bashSee User Guide.
Please note: Removing the docker container docker rm <container> will discard all dependencies that have been installed additionally.
If your organization uses JupyterHub to manage multi-user access to Jupyter environments, you can configure JupyterHub to spin up the AI Lab docker container. The configuration process is outlined in the document AI Lab with JupyterHub configuration