this is how I install rundeck
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.23:4440 ports:
- 4440:4440
volumes:
- rundeck:/home/rundeck
- rundeck:/home/rundeck/var/logs
- rundeck:/home/rundeck/server/data
is there a way to set this value to 0 in docker-compose.yml?
rundeck.api.tokens.duration.max=30d
thanks