This is the docker-compose.yml to create a rundeck instance on docker.
services:
rundeck:
image: rundeck/rundeck:SNAPSHOT
container_name: rundeck
hostname: rundeck
restart: unless-stopped
environment:
- PUID=1001
- PGID=1001
- TZ=Europe/Nicosia
- RUNDECK_SERVER_ADDRESS=0.0.0.0
- RUNDECK_GRAILS_URL=
http://192.168.1.20:4440 ports:
- 4440:4440
volumes:
- rundeck:/home/rundeck
- rundeck:/home/rundeck/var/logs
- rundeck:/home/rundeck/server/data
volumes:
rundeck:
Is there a variable, or any way, to define the username/password for the web login?
Thanks