diff options
| author | adamjanovsky | 2022-06-22 20:40:57 +0200 |
|---|---|---|
| committer | GitHub | 2022-06-22 20:40:57 +0200 |
| commit | 81d5a3e023ac30b63fb42f99588166d5052b5492 (patch) | |
| tree | 22669e4f0cc8db87856f8327c2f9bd4316324bdc /docs | |
| parent | 52ead1014c58a26509e5992089d735b199293384 (diff) | |
| parent | eca01edd4cc9f62ddae9bc400cea9a9f0ac51cd9 (diff) | |
| download | sec-certs-0.1.0.tar.gz sec-certs-0.1.0.tar.zst sec-certs-0.1.0.zip | |
Merge pull request #238 from crocs-muni:fix/document-hashes-constructors0.1.0
fix CommonCriteriaCert.InternalState constructor
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/quickstart.md | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/quickstart.md b/docs/quickstart.md index bcf34231..88bfac42 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -61,7 +61,9 @@ It may be handy to create a shared folder between your host machine and the dock ```bash mkdir seccerts-data && \ -docker run -it --mount type=bind,source="$(pwd)"/seccerts-data/,target=/home/user/data seccerts/sec-certs +docker run -it \ +--mount type=bind,source="$(pwd)"/seccerts-data/,target=/home/user/data \ +seccerts/sec-certs ``` The folder should be accessible on your machine on `./seccerts-data` path; from docker on `/home/user/data` path. @@ -71,7 +73,9 @@ The folder should be accessible on your machine on `./seccerts-data` path; from You can also use our docker image to serve `jupyter notebook` instance that you can access from your device. Run ```bash -docker run --rm -it -p 8888:8888 seccerts/sec-certs jupyter notebook --no-browser --ip 0.0.0.0 --NotebookApp.token='' --notebook-dir="/home/user/" +docker run --rm -it -p 8888:8888 \ +seccerts/sec-certs jupyter notebook \ +--no-browser --ip 0.0.0.0 --NotebookApp.token='' --notebook-dir="/home/user/" ``` Now, you should be able to access the notebook at `localhost:8888` from your machine. Navigate to `/home/user/sec-certs/notebooks/examples` to see some example notebooks. |
