Self hosted RUNDECK CE/OS version !!! WORK IN PROGRESS !!!
3.0K
NOTE: This repo in in preparation !!! Currently uses
/sbin/initto start processes so i can login in to shell and test anp gather info. When I'll make ready it will automatically start docker container with rundeck process. I will also add detailed instructions on how to deploy it.
### CREATE VOLUME
docker volume create RUNDECK
### RUN RUNDECK IN CONTAINER
docker run --detach --name rundeck -v RUNDECK:/rundeck/srv -e RUNDECK_WEBAPP_URL=https://rundeck.example.com balantj/rundeck
docker-compose.yaml file:version: '3.8'
services:
rundeck:
image: balantj/rundeck
restart: unless-stopped
environment:
- RUNDECK_WEBAPP_URL: https://rundeck.example.com
- RUNDECK_SERVICE_PORT: 4440
volumes:
- rundeck:/rundeck/srv
volumes:
RUNDECK:
docker compose up -dNOTE: Listen port variable
RUNDECK_SERVICE_PORTis optional if you need to setup different port for service inside container to listen on (eg. to set reverse proxy, ingress or if port is already taken by other service) .
Enjoy!
Content type
Image
Digest
sha256:1d6a8659b…
Size
643.9 MB
Last updated
3 months ago
docker pull balantj/rundeck