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:
Stefan Ernst
2026-07-07 23:02:48 +02:00
committed by GitHub
parent f1210e6ac4
commit bc31807d6f
4 changed files with 81 additions and 0 deletions

View 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: {}

View 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}"

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

View File

@@ -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",