Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ For the (latest) SSHFS (v3.7), useful to test the above tips:
## Docker
You may use Docker to mount encrypted EGA files using FUSE and decrypt them on-the-fly with your Crypt4GH private key:

docker build -t ega_crypt4ghfs:{tag}
docker build -t ega_crypt4ghfs:{tag} .
docker run -d --name ega_crypt4ghfs_container \
-v /path/to/private.key:/tmp/ega_secret_key:ro \
-e USER_PRIVATE_KEY_FILE="/tmp/ega_secret_key" \
Expand Down
2 changes: 1 addition & 1 deletion crypt4ghfs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""The pipeline package contains code to start an *Ingestion pipeline*."""

__title__ = 'Crypt4GH FUSE file system'
__version__ = '1.2.2'
__version__ = '1.2.3'
__author__ = 'Frédéric Haziza'
__license__ = 'Apache 2.0'
__copyright__ = 'Crypt4ghFS @ CRG, Barcelona'
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from pathlib import Path
import re
from setuptools import setup, find_packages
import os

# In this way, we are sure we are getting
# the installer's version of the library
Expand Down