Created
February 11, 2025 13:02
-
-
Save justynroberts/430be6787765e845202f75f8202f4d02 to your computer and use it in GitHub Desktop.
Rundeck Deployment
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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