
ORA-01882: timezone region not found in Docker
This Issue comes when the development environment and the DB Environment are different.For Eg: I have my Local Box running in the IST Zone and the docker container in UTC Zone....
Search | Technology | Blogging
This Issue comes when the development environment and the DB Environment are different.For Eg: I have my Local Box running in the IST Zone and the docker container in UTC Zone....
The above Error states that the server you are accessing has some certificate, and you did not have it in your machine. You have to import this local, in the case...
Before starting this post, Make Sure you copy the certificate to the location where you have the docker file. Edit the following docker file according to your requirement. My Requirement was...
Follow the below steps to read the docker images from local instead of pulling them every time from the docker hub. By default, it always reads the images from the docker...
Follow my previous post and create the sample spring struts integration project from here.Create a Docker File: DockerfileFROM tomcat:latestADD target/SpringStrutsDemo-0.0.1-SNAPSHOT.war /usr/local/tomcat/webapps/EXPOSE 8080CMD ["catalina.sh","run"]Build and tag the Docker File:spring-strutsdemoC:\Users\Syed\Spring-workspace\SpringStrutsDemo>docker build -t spring-strutsdemo .Sending...
To Understand the Jenkins pipeline and trigger build refer to my previous here. Prerequisite.Install the Following plugins in Jenkins. navigating to ManageJenkins > ManagPluginsMaven Integration pluginDocker PipelineStep1: Create the Docker credentials in...