Installation
SIGNIUS Sealing Server Dashboard installation
Environment
Make sure that http server is installed on your device to host the webapp (except when using docker version)
App deployment
Windows and Linux
Download the SIGNIUS Sealing Server Dashboard installation package from the official website or using the link provided by the manufacturer.
Deploy downloaded webapp into Your http server.
Docker
Download the SIGNIUS Sealing Server Dashboard installation package from the official website or using the link provided by the manufacturer.
add docker image to Your repository
schema:
docker load -i <docker_image_file>
example:
docker load -i sseal_server_dashboard_image_v0.0.0.tar
build container via command (or via docker compose)
schema:
docker run -itd --name <container_name> <docker_image:tag>
example:
docker run -itd --name signius-sealing-server-dashboard-container sseal-server-dashboard-image:v0.0.0
copy config files from container to directory on host, which You want to use as a volume
schema:
docker cp <container_name>:/usr/share/nginx/html/assets/config.json <path_to_file_on_host>
docker cp <container_name>:/etc/nginx/conf.d/default.conf <path_to_file_on_host>
example:
docker cp signius-sealing-server-dashboard-container:/usr/share/nginx/html/assets/config.json ./config.json
docker cp signius-sealing-server-dashboard-container:/etc/nginx/conf.d/default.conf ./nginx.conf
Stop container
schema:
docker stop <container_name>
example:
docker stop signius-sealing-server-dashboard-container
Remove container
schema:
docker rm <container_name>
example:
docker rm signius-sealing-server-dashboard-container
License
no license needed
Last updated