mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
* 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>
20 lines
347 B
YAML
20 lines
347 B
YAML
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
|