Did you know ... | Search Documentation: |
![]() | Pack logtalk -- logtalk-3.90.1/scripts/docker/portable/README.md |
This file is part of Logtalk https://logtalk.org/ SPDX-FileCopyrightText: 2024-2025 Paulo Moura <pmoura@logtalk.org> SPDX-License-Identifier: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Includes Logtalk and a subset of the supported (and experimental/legacy) Prolog backends:
Includes all Logtalk developer tool dependencies.
Includes the nano
text editor for small editing tasks. For actual
development, use the VSCode or VSCodium recommended setups as described
below.
Includes a SSH server (not running by default) configured with user root
and password portable
. Can be started using the `service ssh start`
command.
master
)81
)v1.23.0-m1
)0.98.3
)master
)swipl-devel
repo; master
)0.3.4
)main
)git-origin
)master
)
Valid identifiers are as shown in the backend repositories or download
websites. Setting the backend version build argument to none
skips
installing the backend.With all the backends supported by the Docker file:
docker build -t logtalk3 .
Excluding a backend from the image. For example, excluding the B-Prolog legacy system:
docker build -t logtalk3 --build-arg B_VERSION=none .
docker run -it --name test logtalk3
You can then run Logtalk with any of the installed backends. For details, see:
https://github.com/LogtalkDotOrg/logtalk3/blob/master/QUICK_START.md
docker run -it --name test -p 2222:22 logtalk3 docker exec -it test service ssh restart
You can then connect to the server using the command:
ssh root@localhost -p 2222
Enter the password portable
when prompted.
docker run -it --name test -v /home/jdoe/project:/source logtalk3
Note that you need to use absolute paths for your project directory.
In alternative, open your local project using the "File" menu "Open Folder..." item and add dev container configuration files to it:
{ "name": "Logtalk", "image": "logtalk/logtalk3-portable:latest", "customizations": { "vscode": { "extensions": [ "logtalkdotorg.logtalk-extension-pack" ], "settings": { "logtalk.home.path": "/usr/local/share/logtalk", "logtalk.user.path": "/root/logtalk", "logtalk.backend": "swi" } } } }
jeanp413
.portable
when prompted.The "Logtalk for VSCode" extension can be configured by opening the "Settings" pane, typing "Logtalk" in the search box, and selecting "Remote" settings. The required settings are:
b
ciao
cx
eclipse
gnu
swi
tau
trealla
xsb
yap
Install the "Jupyter" extension in the container if missing (it's included in the "Logtalk Extension Pack" extension). Create a new notebook by selecting the "File" menu "New File..." item and selecting the Jupyter notebook file type or open an existing notebook in your mounted volume. If necessary, select the Logtalk kernel by clicking in the "Select Kernel" button in the top right corner of the notebook file.
To select the backend used to run the notebook (default is SWI-Prolog),
create in the same directory a file named logtalk_kernel_config.py
and
edit it to select the backend. A copy of this file can be found in the
image in the `/root/.jupyter` directory where the default backend is set.
A Logtalk kernel overview notebook and a Logtalk tutorial notebook can be found at:
https://github.com/LogtalkDotOrg/logtalk-jupyter-kernel/tree/master/notebooks
Open a new integrated terminal in VSCode and run the following command from the container directory containing your notebooks:
jupyter-lab --allow-root --NotebookApp.token='' --NotebookApp.password=''
VSCode will display a dialog with a button to open the JupyterLab start page on your host web browser. If you need a different port than the default 8888, e.g. 8891, use instead:
jupyter-lab --allow-root --NotebookApp.token='' --NotebookApp.password='' --port=8891
See the JupyterLab documentation for more details on available options.
To check that everything is running, create a new Logtalk notebook using the JupyterLab interface and type in a cell:
%versions
Executing the cell (by default, Shift-Enter) should print the Logtalk version, the backend version, and the Logtalk Jupyter kernel version.
Most of the examples NOTES.md
files can be open as Jupyter notebooks.
Open a new integrated terminal in VSCode and run the following commands:
cd /root/logtalk/examples jupyter-lab --allow-root --NotebookApp.token='' --NotebookApp.password=''
You can then open the examples NOTES.md
files as notebooks in JupyterLab by
control-clicking on them and selecting the "Open With" > "Notebook" option.
To configure the backend to be used when opening the examples NOTES.md
files as notebooks (default is SWI-Prolog), edit the image file
`/root/.jupyter/logtalk_kernel_config.py`. Currently, only ECLiPSe,
SWI-Prolog, and Trealla Prolog can reliably be used as backends in the
notebooks.