mirror of
https://github.com/Dokploy/templates.git
synced 2026-03-12 01:56:43 -05:00
feat: add drizzle gateway (#274)
* feat: add drizzle gateway * fix: add missing template * Update and rename drizzle-gateway.yml to docker-compose.yml * feat: add meta json * Update meta.json * Update docker-compose.yml * Update docker-compose.yml --------- Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
This commit is contained in:
19
blueprints/drizzle-gateway/docker-compose.yml
Normal file
19
blueprints/drizzle-gateway/docker-compose.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
services:
|
||||
drizzle-gateway:
|
||||
image: ghcr.io/drizzle-team/gateway:latest
|
||||
restart: always
|
||||
environment:
|
||||
PORT: "4983"
|
||||
STORE_PATH: "/app"
|
||||
MASTERPASS: ${MASTERPASS}
|
||||
volumes:
|
||||
- drizzle-gateway:/app
|
||||
networks:
|
||||
- dokploy-network
|
||||
|
||||
volumes:
|
||||
drizzle-gateway:
|
||||
|
||||
networks:
|
||||
dokploy-network:
|
||||
external: true
|
||||
1
blueprints/drizzle-gateway/drizzle-gateway.svg
Normal file
1
blueprints/drizzle-gateway/drizzle-gateway.svg
Normal file
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><svg id="a" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 160"><rect width="160" height="160" stroke-width="0"/><path d="M49.93,79.2c1.3-2.27.5-5.15-1.78-6.43-2.29-1.28-5.2-.47-6.5,1.8l-15.3,26.7c-1.3,2.27-.5,5.15,1.78,6.43,2.29,1.28,5.2.47,6.5-1.8l15.3-26.7Z" fill="#c1f24d" stroke-width="0"/><path d="M82.91,58.73c1.3-2.27.5-5.15-1.78-6.43-2.29-1.28-5.2-.47-6.5,1.8l-15.3,26.7c-1.3,2.27-.5,5.15,1.78,6.43,2.29,1.28,5.2.47,6.5-1.8l15.3-26.7Z" fill="#c1f24d" stroke-width="0"/><path d="M133.66,58.73c1.3-2.27.5-5.15-1.78-6.43-2.29-1.28-5.2-.47-6.5,1.8l-15.3,26.7c-1.3,2.27-.5,5.15,1.78,6.43,2.29,1.28,5.2.47,6.5-1.8l15.3-26.7Z" fill="#c1f24d" stroke-width="0"/><path d="M100.67,79.2c1.3-2.27.5-5.15-1.78-6.43-2.29-1.28-5.2-.47-6.5,1.8l-15.3,26.7c-1.3,2.27-.5,5.15,1.78,6.43,2.29,1.28,5.2.47,6.5-1.8l15.3-26.7Z" fill="#c1f24d" stroke-width="0"/></svg>
|
||||
|
After Width: | Height: | Size: 894 B |
14
blueprints/drizzle-gateway/template.toml
Normal file
14
blueprints/drizzle-gateway/template.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
masterpass = "${base64:32}"
|
||||
|
||||
[config]
|
||||
env = [
|
||||
"MASTERPASS=${masterpass}",
|
||||
]
|
||||
mounts = []
|
||||
|
||||
[[config.domains]]
|
||||
serviceName = "drizzle-gateway"
|
||||
port = 4_983
|
||||
host = "${main_domain}"
|
||||
16
meta.json
16
meta.json
@@ -1452,6 +1452,22 @@
|
||||
"diagrams"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "drizzle-gateway",
|
||||
"name": "drizzle gateway",
|
||||
"version": "latest",
|
||||
"description": "Drizzle Gateway is a self-hosted database gateway that allows you to connect to your databases from anywhere.",
|
||||
"logo": "drizzle-gateway.svg",
|
||||
"links": {
|
||||
"github": "https://github.com/drizzle-team/drizzle-gateway",
|
||||
"website": "https://drizzle-team.github.io/",
|
||||
"docs": "https://drizzle-team.github.io/docs"
|
||||
},
|
||||
"tags": [
|
||||
"database",
|
||||
"gateway"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "dumbassets",
|
||||
"name": "DumbAssets",
|
||||
|
||||
Reference in New Issue
Block a user