Skip to content

Instantly share code, notes, and snippets.

@justynroberts
Created February 11, 2025 13:02
Show Gist options
  • Save justynroberts/430be6787765e845202f75f8202f4d02 to your computer and use it in GitHub Desktop.
Save justynroberts/430be6787765e845202f75f8202f4d02 to your computer and use it in GitHub Desktop.
Rundeck Deployment
version: '3.8'
services:
rundeck:
platform: linux/amd64
image: rundeck/rundeck:5.9.0
container_name: rundeck
restart: unless-stopped
ports:
- "4440:4440"
- "4443:4443"
environment:
- RUNDECK_GRAILS_URL=http://localhost:4440
- RUNDECK_SERVER_FORWARDED=true
volumes:
- rundeck_data:/home/rundeck/server/data
- rundeck_plugins:/home/rundeck/libext
- config_data:/home/rundeck/server/config # Use a named volume here
volumes:
rundeck_data:
rundeck_plugins:
config_data:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment