so_github_makes_folder

This commit is contained in:
lllllllillllllillll 2024-05-20 00:35:55 -07:00
parent 6aa325ed8e
commit 37fd6f320d
4 changed files with 0 additions and 47 deletions

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
**/db.sqlite
**/node_modules
**/appdata
**/templates
.github
.git

View File

@ -1,46 +0,0 @@
{
"version": "2",
"templates": [
{
"type": 1,
"name": "couchdb",
"title": "CouchDB",
"note": "",
"description": "Apache CouchDB is open source database software that focuses on ease of use and having a scalable architecture. It has a document-oriented NoSQL database architecture and is implemented in the concurrency-oriented language Erlang; it uses JSON to store data, JavaScript as its query language using MapReduce, and HTTP for an API. <a href='https://couchdb.apache.org/' target='_blank'>Website</a>. <a href='https://hub.docker.com/_/couchdb' target='_blank'>Docker Hub</a>",
"logo": "https://raw.githubusercontent.com/lllllllillllllillll/DweebUI-Icons/main/couchdb.png",
"image": "couchdb",
"categories": [
"Database"
],
"volumes": [
{
"bind": "/home/docker/couchdb",
"container": "/opt/couchdb/data",
"mode": "rw"
}
],
"ports" : [
{
"host": "5984",
"container": "5984"
}
],
"env": [
{
"name": "COUCHDB_USER",
"label": "User",
"description": "Database user",
"type": "text",
"default": "heimdall"
},
{
"name": "COUCHDB_PASSWORD",
"label": "Password",
"description": "Database password",
"type": "password",
"default": "password"
}
]
}
]
}

View File