skip to Main Content

SonarQube Docker Installation CorruptIndexException: checksum failed

I'm trying to create docker container with SonarQube inside it, but I get this error while composing for the first time: Caused by: java.util.concurrent.ExecutionException: org.apache.lucene.index.CorruptIndexException: checksum failed (hardware problem?) : expected=f736ed01 actual=298dcde2 (resource=BufferedChecksumIndexInput(NIOFSIndexInput(path="/opt/sonarqube/data/es7/nodes/0/_state/_7w.fdt"))) I tried installing it on a fresh…

VIEW QUESTION

Can't open phpmyadmin on browser with Docker

I have created a docker-compose.yml file with the following parameters: version: '3' services: php: build: ./docker/images/php ports: - 80:80 volumes: - ./htdocs:/var/www/html container_name: php networks: - default mysql: image: mysql:latest container_name: mysql environment: MYSQL_ROOT_PASSWORD: dani MYSQL_DATABASE: mysql_database MYSQL_USER: dani MYSQL_PASSWORD:…

VIEW QUESTION

Command in dockerfile doesn't take effect

Below is my dockerfile. After the dependencies are installed, I want to delete a specific binary (ffmpeg) from the node_modules folder on the container, and then reinstall it using the install.js file that exists under the same folder in node_modules.…

VIEW QUESTION
Back To Top
Search