feat(templates): add uptime kuma, directus, baserow, ghost, n8n

This commit is contained in:
Mauricio Siu
2024-06-29 19:14:46 -06:00
parent 85f025c729
commit 210fed30a2
19 changed files with 482 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
version: "3.4"
services:
baserow:
image: baserow/baserow:1.25.2
networks:
- dokploy-network
environment:
BASEROW_PUBLIC_URL: "http://${BASEROW_HOST}"
ports:
- "80"
labels:
- traefik.enable=true
- traefik.http.routers.${HASH}.rule=Host(`${BASEROW_HOST}`)
- traefik.http.services.${HASH}.loadbalancer.server.port=${BASEROW_PORT}
volumes:
- baserow_data:/baserow/data
volumes:
baserow_data:
networks:
dokploy-network:
external: true