First, pull the SPIGA image from Docker Hub:
docker pull biotechvana/spiga
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
-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 containerYour data will be persisted in the mounted volume at /path/to/your/data
Make sure to replace /path/to/your/data with your actual data directory path.
Content type
Image
Digest
sha256:625e35d86…
Size
641.3 MB
Last updated
over 1 year ago
docker pull biotechvana/spiga