skip to Main Content

Redis – ERROR: Service 'web' failed to build: The command '/bin/sh -c apk add –no-cache gcc musl-dev linux-headers' returned a non-zero code: 3

i just follow the demo of docker-compose official documentation virtual machine: VMware Workstation 15 Player OS: Centos7 docker-compose.yml version: '3' services: web: build: . ports: - "5000:5000" redis: image: "redis:alpine" Dockerfile: ROM python:3.7-alpine WORKDIR /code ENV FLASK_APP app.py ENV FLASK_RUN_HOST…

VIEW QUESTION

Redis – Docker Compose 2 Node Elasticsearch cluster with Kibana

I' having issues setting up my docker-compose.yml file to get 2 Elasticsearch nodes running with Kibana. Getting the error 'Kibana server is not ready yet' In the container logs I'm getting {"type":"log","@timestamp":"2020-04-11T13:19:45Z","tags":["warning","elasticsearch","data"],"pid":7,"message":"No living connections"} {"type":"log","@timestamp":"2020-04-11T13:19:45Z","tags":["warning","plugins","licensing"],"pid":7,"message":"License information could not be obtained…

VIEW QUESTION
Back To Top
Search