Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Install Docker Engine on Ubuntu

Please install the Docker Engine according to the instructions at https://docs.docker.com/engine/install/ubuntu/ or use the following command to check if the Docker Engine is installed correctly:

sudo docker run hello-world

With the following command, the current Smartstore Docker image is downloaded from https://github.com/orgs/smartstore/packages.

sudo docker pull ghcr.io/smartstore/smartstore-linux:latest

Now the image can be executed as follows. The Container port 80 ist exposed as local port 80.

sudo docker run -p 80:80 ghcr.io/smartstore/smartstore-linux

Open any browser and enter localhost or the local IP address in the address bar. The installation start page of Smartstore opens.

Now you can install Smartstore. To do this, however, you still need an accessible MS SQL Server or a MySQL instance. If you want to run this instance directly with Smartstore as a Docker container, please proceed as follows.

  • No labels