If you are talking about the setup wizard in jenkinx 2.x, you can overwrite it by -Djenkins.install.runSetupWizard=false, a sample dockerfile
FROM jenkins:latest USER jenkins RUN install-plugins.sh git workflow-aggregator # Skip initial setup ENV JAVA_OPTS -Djenkins.install.runSetupWizard=false On Thursday, October 13, 2016 at 11:54:25 PM UTC+8, Ryan Cocks wrote: > > Hi, > > I'm a bit surprised to find Jenkins installation requires manual > intervention via a user interface. > > Are there any guides on how to avoid the UI and do an automated deploy of > Jenkins itself? > > Best idea I have is to store a post-setup jenkins docker image. I'd much > prefer to be able to pass in the configuration in files or the environment. > > Best regards, > Ryan > > -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/a3d352cd-11a4-48dd-b0cb-9e7cb5508f9a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
