Simple-DevOps-Project icon indicating copy to clipboard operation
Simple-DevOps-Project copied to clipboard

Results 62 Simple-DevOps-Project issues
Sort by recently updated
recently updated
newest added

file not found https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.54/bin/apache-tomcat-9.0.54.tar.gz

Solution for Error: Step 2/9 : RUN yum install java -y ---> Running in 39fc233aa965 CentOS Linux 8 - AppStream 184 B/s | 38 B 00:00 Error: Failed to download...

"yum install -y java" is not working on EC2. It works after replacing it with the below 4 lines: RUN cd /etc/yum.repos.d/ RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* RUN sed -i...

**Change the docker file** FROM centos RUN mkdir /opt/tomcat/ WORKDIR /opt/tomcat RUN curl -O https://dlcdn.apache.org/tomcat/tomcat-9/v9.0.62/bin/apache-tomcat-9.0.62.tar.gz RUN tar -xvzf apache-tomcat-9.0.62.tar.gz RUN mv apache-tomcat-9.0.62/* /opt/tomcat RUN cd /etc/yum.repos.d/ RUN sed -i 's/mirrorlist/#mirrorlist/g'...

Hi, `systemctl` is more powerful than `service` command, try to implement that in your project.

Hi Shankar, Brilliant course so far, learning a lot. I would like to inform you that running yum install java -y in the Dockerfile throws the follows error - Error...