diff --git a/README.md b/README.md index 8570233..3b3f70e 100644 --- a/README.md +++ b/README.md @@ -437,6 +437,7 @@ A collection of delicious docker recipes. - [x] api - [x] ui - [x] onerahmet/openai-whisper-asr-webservice +- [x] ghcr.io/thomiceli/opengist - [x] osixia/openldap - [x] openresty/openresty - [x] opensearchproject/opensearch :bucket: diff --git a/opengist/README.md b/opengist/README.md new file mode 100644 index 0000000..7d1b5dc --- /dev/null +++ b/opengist/README.md @@ -0,0 +1,9 @@ +opengist +======== + +[Opengist][1] is a self-hosted pastebin powered by Git. All snippets are stored in a +Git repository and can be read and/or modified using standard Git commands, or +with the web interface. It is similiar to GitHub Gist, but open-source and +could be self-hosted. + +[1]: https://github.com/thomiceli/opengist diff --git a/opengist/docker-compose.yml b/opengist/docker-compose.yml new file mode 100644 index 0000000..cb15b12 --- /dev/null +++ b/opengist/docker-compose.yml @@ -0,0 +1,10 @@ +version: "3.8" +services: + opengist: + image: ghcr.io/thomiceli/opengist:1.7 + ports: + - "2222:2222" + - "6157:6157" + volumes: + - ./data:/opengist + restart: unless-stopped