change documentation

This commit is contained in:
joseelinchevalay 2020-03-16 16:40:23 +01:00
parent 7ef3a65ab5
commit 671916418b
2 changed files with 22 additions and 0 deletions

View File

@ -13,6 +13,10 @@ RUN apt-get update -y && \
rm -rf /var/lib/apt/lists/* && \
useradd -ms /bin/bash astroport
RUN git clone https://git.scuttlebot.io/%25133ulDgs%2FoC1DXjoK04vDFy6DgVBB%2FZok15YJmuhD5Q%3D.sha256 sbotc
WORKDIR /sbotc
RUN make && make install
USER astroport
WORKDIR /home/astroport
RUN mkdir -p /home/astroport/.ssb/

View File

@ -59,4 +59,22 @@ Then, browse your filesystem to select your Duniter secret key stored in ~/.ssb/
![Cesium log with keychain file](https://git.p2p.legal/axiom-team/ssb-g1like/raw/dev-boris/doc/cesium-dunikey-800.png)
## With docker (experimental)
First you need to build docker image
```
docker build -t ssb-g1like .
```
create your dunikey
```
docker run -ti --rm -v ~/.ssb:/home/astroport/.ssb ssb-g1like -c /usr/bin/secret2dunikey
```
run main script
```
docker run -ti --rm -v ~/.ssb:/home/astroport/.ssb ssb-g1like
```