skip to Main Content

Docker – Bitbucket pipeline err

getting the below error in my pipeline. Can anyone help me on this ? Am trying the deploy my ecs service via bitbucket pipelines but facing this error. I tried updating docker, pip, docker-compose everything but no luck current versions:…

VIEW QUESTION

Dockerizing Magento 2.4.3-p2 on Ubuntu 22.04

I have been trying to Dockerizing Magento 2.4.3-p2 on my Ubuntu 22.04. So here is my `docker-compose.yml version: '3.0' services: nginx: build: context: . dockerfile: docker/nginx/dockerfile ports: - '8000:80' volumes: - ./docker/nginx/conf.d:/etc/nginx/conf.d - ./src:/var/www/html restart: always php-fpm: build: context: .…

VIEW QUESTION

Docker commands failed in private runners

I set up the runner on Mac through the tutorial and assign the job to it to run. Below is my configuration in .gitlab-ci.yml based on this answer. OPTION 1 image: docker:latest services: - docker:18.09.7-dind OPTION 2 image: name: docker:latest…

VIEW QUESTION
Back To Top
Search