Here are the commands that are used in our BlueSpice 5 installation video on YouTube: https://www.youtube.com/watch?v=9sak-OMrDTc

Download sites

Installation

Step 1: preparing the installation (1:14)

Refreshing the list of available packages from the software repository:

sudo apt-get update

Installing ca-certificates and curl:

sudo apt-get install ca-certificates curl

Running commands to fix permissions:

sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

Adding the key to the key chain:

echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null

Running another update:

sudo apt-get update

Step 2: installing and running docker (1:55)

Installing Docker:

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Ensuring Docker is running:

sudo docker run hello-world

Step 3: creating the BlueSpice installation directory (2:30)

Creating the installation directory and changing into it:

mkdir /docker
cd  /docker

Step 4: checking that git is installed (2:40)

apt install git

Step 5: cloning the repository (2:52)

git clone -b 5.1.1 https://github.com/hallowelt/bluespice-deploy.git bluespice

Changing to the compose directory:

cd bluespice/
cd compose/

Step 6: editing the environment file (3:20)

cp .env.sample .env
vim .env

Step 7: deploying and starting docker containers (5:22)

Pulling the Docker containers:

./bluespice-deploy pull

Starting the containers:

./bluespice-deploy up -d

Step 8: checking that the containers are running (7:28)

/bluespice-deploy ps

Printing the logs:

./bluespice-deploy logs -f

Checking the volumes:

ls -la /docker/bluespice/_data

Step 9: logging into the front end (8:33)

cat /docker/bluespice/_dataded/wiki/initialAdminPassword


PDF exclude - start

To submit feedback about this documentation, visit our community forum.

PDF exclude - end