789 B
789 B
Docker Setup
- Install Docker on your system where NLS should run
- Download latest release (date of writing
v3.4.1
) - Copy archive (
nls-X.Y.Z-bios.zip
) to your Docker-Server - Set version
export VERSION=3.4.1
- Extract archive
unzip nls-$VERSION-bios.zip
cd nls-$VERSION-bios
- Import Images into Docker
docker load --input dls_appliance_$VERSION.tar.gz
docker load --input dls_pgsql_$VERSION.tar.gz
docker load --input dls_upgrade_$VERSION.tar.gz
(optional) - Goto
docker
directorycd docker
- Create Environment-File
touch .env
- Add the following line to this file
echo "DLS_PUBLIC_IP=<your-ipv4>" > .env
- Start Docker-Stack
docker compose up -d
- Show running containers
docker container ls