add opengist

This commit is contained in:
kev 2024-05-08 15:25:05 +08:00
parent 1049430b53
commit 269dd7716c
3 changed files with 20 additions and 0 deletions

View File

@ -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:

9
opengist/README.md Normal file
View File

@ -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

View File

@ -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