mirror of
https://github.com/Dokploy/templates.git
synced 2026-07-08 07:25:23 +02:00
feat: add windshift to dokploy (#787)
* Adding Windshift for Dokploy * Added up-to-date version and better tags * Updated logo with less transparency * Update docker-compose.yml with latest version Signed-off-by: Stefan Ernst <ernst.stefan@icloud.com> --------- Signed-off-by: Stefan Ernst <ernst.stefan@icloud.com>
This commit is contained in:
44
blueprints/windshift/docker-compose.yml
Normal file
44
blueprints/windshift/docker-compose.yml
Normal file
@@ -0,0 +1,44 @@
|
||||
version: "3.8"
|
||||
|
||||
services:
|
||||
windshift:
|
||||
image: ghcr.io/windshiftapp/windshift:v0.5.3
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- BASE_URL=https://${DOMAIN}
|
||||
- PORT=8080
|
||||
- USE_PROXY=true
|
||||
- SSO_SECRET=${SSO_SECRET}
|
||||
- ATTACHMENT_PATH=/data/attachments
|
||||
- DB_TYPE=postgres
|
||||
- POSTGRES_HOST=db
|
||||
- POSTGRES_PORT=5432
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
- POSTGRES_DB=${POSTGRES_DB}
|
||||
- LOG_LEVEL=info
|
||||
- LOG_FORMAT=json
|
||||
volumes:
|
||||
- windshift-data:/data
|
||||
depends_on:
|
||||
db:
|
||||
condition: service_healthy
|
||||
|
||||
db:
|
||||
image: postgres:17.4
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- POSTGRES_USER=${POSTGRES_USER}
|
||||
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
||||
- POSTGRES_DB=${POSTGRES_DB}
|
||||
volumes:
|
||||
- postgres-data:/var/lib/postgresql/data
|
||||
healthcheck:
|
||||
test: ["CMD-SHELL", "pg_isready -U $${POSTGRES_USER} -d $${POSTGRES_DB}"]
|
||||
interval: 5s
|
||||
timeout: 5s
|
||||
retries: 5
|
||||
|
||||
volumes:
|
||||
windshift-data: {}
|
||||
postgres-data: {}
|
||||
19
blueprints/windshift/template.toml
Normal file
19
blueprints/windshift/template.toml
Normal file
@@ -0,0 +1,19 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
sso_secret = "${hash:64}"
|
||||
db_password = "${password:32}"
|
||||
|
||||
[config]
|
||||
env = [
|
||||
"DOMAIN=${main_domain}",
|
||||
"SSO_SECRET=${sso_secret}",
|
||||
"POSTGRES_USER=windshift",
|
||||
"POSTGRES_PASSWORD=${db_password}",
|
||||
"POSTGRES_DB=windshift",
|
||||
]
|
||||
mounts = []
|
||||
|
||||
[[config.domains]]
|
||||
serviceName = "windshift"
|
||||
port = 8080
|
||||
host = "${main_domain}"
|
||||
BIN
blueprints/windshift/windshift.png
Normal file
BIN
blueprints/windshift/windshift.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 80 KiB |
18
meta.json
18
meta.json
@@ -7109,6 +7109,24 @@
|
||||
"os"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "windshift",
|
||||
"name": "Windshift",
|
||||
"version": "v0.5.0",
|
||||
"description": "Self-hosted work management platform with projects, tasks, sprints, and team collaboration.",
|
||||
"logo": "windshift.png",
|
||||
"links": {
|
||||
"github": "https://github.com/Windshiftapp/core",
|
||||
"website": "https://windshift.sh/",
|
||||
"docs": "https://windshift.sh/docs"
|
||||
},
|
||||
"tags": [
|
||||
"project-management",
|
||||
"collaboration",
|
||||
"productivity",
|
||||
"self-hosted"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "wordpress",
|
||||
"name": "Wordpress",
|
||||
|
||||
Reference in New Issue
Block a user