Revision as of 15:01, 6 August 2025 by Redaktion (talk | contribs) (Created page with "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) === <syntaxhighlight lang="bash"> sudo apt-get update </syntaxhighlight><syntaxhighlight lang="bash"> sudo apt-get install ca-certificates curl </syntaxhighlight><syntaxhighlight lang="bash"> sudo apt-get update sudo apt-get install ca-certificates curl su...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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)

sudo apt-get update
sudo apt-get install ca-certificates curl
sudo apt-get update
sudo apt-get install ca-certificates curl
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
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
sudo apt-get update
sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
sudo docker run hello-world
mkdir /docker
cd  /docker
git clone -b 5.1.1 https://github.com/hallowelt/bluespice-deploy.git bluespice
cd bluespice/compose
cp .env.sample .env
vim .env
./bluespice-deploy pull
./bluespice-deploy up -d
/bluespice-deploy ps
./bluespice-deploy logs -f
ls -la /docker/bluespice/_data
cat /docker/bluespice/_dataded/wiki/initialAdminPassword


PDF exclude - start

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

PDF exclude - end