skip to Main Content

Redis – Docker mounting rootfs caused not a directory error

I've been trying docker-compose up -d to my container but causes this error below: ERROR: for phpsample-feed_phpsample_1 Cannot start service phpsample: OCI runtime create failed: container_linux.go:346: starting container process caused "process_linux.go:449: container init caused "rootfs_linux.go:58: mounting \"/c/Users/testUser/Documents/phpsample-feed/src\" to rootfs \"/mnt/sda1/var/lib/docker/overlay2/e6bf66b01f587c8826c2944b676044c6a199a0c8c2b8807adf13de0e0f8c4509/…

VIEW QUESTION

Php versions – How I can automatically mark a docker php image that has its version as a tag as latest?

For my custom docker php building system I have the following docker-compose version: "3.7" services: base72: build: context: . dockerfile: ./dockerfiles/7.2/Dockerfile image: myapp/php7.2:$VERSION_PHP_72 stdin_open: true tty: true develop72: build: context: . dockerfile: ./dockerfiles/7.2/Dockerfile_develop links: - base72 image: myapp/php7.2-dev:$VERSION_PHP_72 volumes: -…

VIEW QUESTION
Back To Top
Search