parent
2e8b87103f
commit
df7267af48
@ -1,2 +1,15 @@
|
||||
# gmnd
|
||||
My gemini server
|
||||
# gMNd
|
||||
gMNd is my gemini server, which is written in python.
|
||||
|
||||
Currently it only serves static files. You can build and run it from the supplied Dockerfile if you so whish
|
||||
```
|
||||
docker build -t gmnd:latest .
|
||||
```
|
||||
By just running it, it will create self signed certs and serve example content from this repo
|
||||
```
|
||||
docker run -p 1965:1965 gmnd
|
||||
```
|
||||
A slightly more interesting thing it can do is serve your own content, in this example from /tm/content on your host machine
|
||||
```
|
||||
docker run --mount type=bind,source="/tmp/content,target=/app/content" -p 1965:1965 gmnd
|
||||
```
|
||||
|
@ -0,0 +1,4 @@
|
||||
# Heading test
|
||||
|
||||
* item
|
||||
* item 2
|
@ -0,0 +1,2 @@
|
||||
# Text
|
||||
Plain text me old son
|
Loading…
Reference in new issue