skip to Main Content

Jenkins with docker-compose

Running the docker-compose start command, via the Linux command line, the project is built and started correctly, but in the pipeline that I have built when running docker-compose up the following error occurs ERROR: for php Cannot start service php:…

VIEW QUESTION

Kibana in Docker forgets the enrolment token after restart

I'm trying to run a single node setup of Elastic and Kibana locally in Docker Compose. I've got a working docker-compose.yaml: version: "3.9" networks: elastic: name: elastic volumes: elastic: services: elastic: image: docker.elastic.co/elasticsearch/elasticsearch:8.11.3 mem_limit: 1GB networks: - elastic ports: -…

VIEW QUESTION

Dockerfile Cant Find Successfully Copied Files with RUN

I am attempting to develop a Mozilla SOPS Docker container that uses Age for encryption. Here are my files: ./Dockerfile: FROM alpine:latest # Install sops RUN wget https://github.com/mozilla/sops/releases/download/v3.8.1/sops-v3.8.1.linux.amd64 -O /usr/local/bin/sops && chmod +x /usr/local/bin/sops # Install age RUN wget https://github.com/FiloSottile/age/releases/download/v1.1.1/age-v1.1.1-linux-amd64.tar.gz…

VIEW QUESTION
Back To Top
Search