cosmetics

This commit is contained in:
cupcakearmy 2021-05-02 14:54:57 +02:00
parent ea82b38a60
commit b053fc15f4
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
3 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,5 @@
<p align="center">
<img src="./design/Logo.svg">
<img src="./design/github.svg">
</p>
## About?
@ -12,7 +12,6 @@ _cryptgeon_ is an secure, open source sharing note service inspired by [_PrivNot
- in memory, no persistence
- in browser encryption → server cannot decrypt contents
## How does it work?
each note has a 512bit generated <i>id</i> that is used to retrieve the note. data is stored in memory and never persisted to disk.
@ -29,13 +28,12 @@ version: '3.7'
services:
memcached:
image: memcached:1-alpine
entrypoint: memcached -m 128
entrypoint: memcached -m 128 # Limit to 128 MB Ram, customize at free will.
app:
image: cupcakearmy/cryptgeon:latest
ports:
- 80:5000
```
###### Attributions

BIN
design/github.svg (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,5 +1,5 @@
# DEV Compose file.
# For a production file see: ...
# For a production file see: README.md
version: '3.7'