skip to Main Content

Rundeck dead? – Docker setup

I've been looking at trying out rundeck but what I've found is that the project is kind of abandoned? The github material is all abandoned and deprecated and there is no comprehensive guides for rundeck anywhere to be found. Does…

VIEW QUESTION

rundeck configuration email notifications job in docker

I'd like to configure an email notification for a job done in rundeck with docker. I've this docker-compose.yaml and but it doesn't work. version: '3' services: rundeck: image: ${RUNDECK_IMAGE:-rundeck/rundeck:SNAPSHOT} links: - postgres environment: RUNDECK_DATABASE_DRIVER: org.postgresql.Driver RUNDECK_DATABASE_USERNAME: rundeck RUNDECK_DATABASE_PASSWORD: rundeck RUNDECK_DATABASE_URL:…

VIEW QUESTION

nginx reverse proxy+rundeck is not wokring as expected

I want to use rundeck with NBINX reverse proxy but not working as exptected. rundeck is at: http://host.domain:4440/rundeck nginx reverse proxy is at: https://host.domain/rundeck nginx's configuration: location /rundeck/ { proxy_http_version 1.1; proxy_set_header X-Forwarded-Proto https; proxy_pass http://192.168.1.102:4440/rundeck/; } rundeck's customize: RUNDECK_SERVER_CONTEXTPATH=/rundeck…

VIEW QUESTION
Back To Top
Search