Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hackerschoice/docker-erfs-server
https://github.com/hackerschoice/docker-erfs-server
Last synced: 3 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/hackerschoice/docker-erfs-server
- Owner: hackerschoice
- Created: 2020-06-10T16:16:39.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-06-23T06:01:39.000Z (over 4 years ago)
- Last Synced: 2024-08-07T06:06:02.506Z (3 months ago)
- Language: Shell
- Size: 21.5 KB
- Stars: 7
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# docker-erfs-server
**NOTE**: You are in the wrong place. To use THC's 'Encrypted Remote File System' please go to [hackerschoice/erfs-client](https://github.com/hackerschoice/erfs-client)
This is the server side to run an 'Encrypted Remote File System'. This is only needed if you decide to run your own server instead of using rfs.thc.org.
The server software runs as an isolated docker instance. The example assumes 127.0.13.37 as the server's IP and port 2222 is used for testing.
---
**Installing the server software on the server**```
$ docker build -t erfs-server github.com/hackerschoice/docker-erfs-server
```Running the server:
```
$ mkdir -p ~/erfs
$ docker run -it -p 2222:22 --log-driver=none -v ~/rfs:/mnt/rfs erfs-server
```---
**Testing the server**See [hackerschoice/erfs-client](https://github.com/hackerschoice/erfs-client)
```
$ export THC_RFS_SERVER=127.0.13.37
$ export THC_RFS_PORT=2222
$ ./erfs init
```