Docker installation:
mkdir docker && cd docker
wget https://library.ahadiani.ca/install_docker_nproxyman.sh
chmod +x install_docker_nproxyman.sh
./install_docker_nproxyman.sh
Now after the Docker and the NPM installation, by using the stack menu of the Portainer we can create a new stack with the below script:
version: "2.1"
services:
heimdall:
image: lscr.io/linuxserver/heimdall:latest
container_name: heimdall
environment:
- PUID=1000
- PGID=1000
- TZ=America/Toronto
volumes:
- /root/docker/heimdall/config:/config
ports:
- 8280:80
restart: unless-stopped
By deploying the created stack, we can go to the host address by using port 8280 according to this example.
For more information regarding the features and learning its stuff you can watch the related learning video on Youtube.