Skip to content
Advertisement

Tag: docker

Docker nginx php permissions issue

I’m just learning Docker and took on a little pet project and wondering if something is possible permission wise with docker/nginx/php. I’m attempting to convert an old IIS-Windows/php/MySql project of mine to Docker/nginx/php/mysql I’m most of the way there and have the 3 containers linked and all is working well EXCEPT, this system has a file upload/view/delete component to it.

Docker bind source path does not exist even though it does

I have two ubuntu server VMs running on the same proxmox server. Both are running docker. I want to migrate one container from one of the VMs to the other. For that I need to attach a USB drive to the target VM which will be mounted inside the docker container. I mounted the drive exactly the same way in

Save multiple docker images using one command

Currently I am exporting docker images using below command docker save imageName | gzip > imageName.tar.gz docker save mysql | gzip > mysql.tar.gz This command working fine for single image, i have tons of docker images in my local system, want to export. but i don’t know how to export all images which is available in docker images. Please guide

docker run failed at “python3: can’t open file”

My code is in directory /test-scripts, details structure is as follows. Run the following command in directory /test-scripts. /test-scripts(master)> And my Dockerfile content is as follows. Use $user, $pwd above to replace the real value in this question. In my opinion, the file IssueAnalyzer.py will be copy from current directory /test-scripts to /testdocker, but actually it is not. Please help

“protoc: not found” on an Alpine-based Docker container running Protocol Buffers

I’m trying to build a simple container which downloads a Protocol Buffers binary from the release page (https://github.com/protocolbuffers/protobuf/releases/tag/v3.13.0) and adds it to the path. Following the Linux instructions at http://google.github.io/proto-lens/installing-protoc.html, I’ve attempted the following Dockerfile: The problem is that if I build it using and run a shell in it, I get a protoc: not found error, even though the

How to get Docker desktop on Ubuntu?

I am new to Docker/Kubernetes and trying to see if there is a way to get ‘Docker Desktop’ like functionality on Ubuntu, which is my primary development machine. All I know from my search is that the ‘Docker Desktop’ is only from Windows and Mac. It contains many useful tools bundled together as below which is great for someone like

Advertisement