Sign inSign up

biotechvana/spiga

By biotechvana

•Updated over 1 year ago

spiga backend server

Image
0

427

biotechvana/spiga repository overview

⁠How to Pull and Run SPIGA from Docker Hub

⁠1. Pull the Image

First, pull the SPIGA image from Docker Hub:

docker pull biotechvana/spiga

⁠2. Run the Container

Run the SPIGA container with the following command:

docker run -p 8080:80 -p 2202:22 \
-e GPRO_USER_ID=$(id -u) \
-e GPRO_USER_GID=$(id -g) \
-v /path/to/your/data:/data/gpro_user \
biotechvana/spiga
⁠Command Explanation:
  • -p 8080:80: Maps container's port 80 to host's port 8080 (web interface)
  • -p 2202:22: Maps container's SSH port 22 to host's port 2202
  • -e GPRO_USER_ID=$(id -u): Sets user ID to match host system user
  • -e GPRO_USER_GID=$(id -g): Sets group ID to match host system group
  • -v /path/to/your/data:/data/gpro_user: Mounts your local data directory into the container

⁠3. Access SPIGA

  • Open App and set connection setting for
  • Server : localhost
  • Username : g_user (or your setting)
  • Password : g_user (or your setting)
  • SSH access: Port 2202 (your mapping)
  • API Port : 8080 (your mapping)

⁠4. Data Persistence

Your data will be persisted in the mounted volume at /path/to/your/data

⁠Note

Make sure to replace /path/to/your/data with your actual data directory path.

Tag summary

Content type

Image

Digest

sha256:625e35d86…

Size

641.3 MB

Last updated

over 1 year ago

docker pull biotechvana/spiga