How to tell AzCopy linux batch to overwrite files? [duplicate] - azcopy

This question already has answers here:
How do I avoid the prompts while using azcopy on Linux in a script?
(2 answers)
Closed 4 years ago.
In azcopy linux version how do we tell Yes to a prompt when part of a script. in the windows version of azcopy it was /Y. what is it the similar parameter for linux version?

Try running azcopy --help and you should get a list of options. My guess is azcopy -y.

Related

docker daemon not running and docker desktop is stopped [closed]

Closed. This question is not about programming or software development. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 days ago.
Improve this question
can't run docker run command and docker desktop is stopped...
i tried reinstalling and upgraded wsl 1 to 2
Post "http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.24/containers/create": open //./pipe/docker_engine: The system cannot find the file specified. See 'docker run --help'.
The error suggests that docker is not running or properly installed, if you installed it, check the following.
From the search bar, type "Turn Windows features on or off" and make sure you enable the following:
Windows subsystem for Linux
virtual machine platform
windows hypervisor platform
You may also check the PATH of the docker if it is properly added in the environment variable.
From the search bar type "Edit the system environment variable" then click on "Environment variable" in the bottom right corner then under the System variable section choose "path" in the "variable" column then "edit"
A new window will open. Make sure that the following path is added
C:\Program Files\Docker\Docker\resources\bin
If you have done all these steps. You should make sure that the docker desktop app is running, then try to run docker commands.
If the problem still persists, you may uninstall the app and reinstall it again and it should work

"Docker Desktop stopped..." message after installation [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 12 months ago.
The community reviewed whether to reopen this question 5 months ago and left it closed:
Original close reason(s) were not resolved
Improve this question
Installed docker desktop for windows, after having installed the linux kernel update package and changing to wsl 2 version (virtualization is enabled) but i get the message "Docker Desktop stopped..." as shown below.
Tried:
uninstalling and reinstalling again
run application as administrator
From https://github.com/docker/for-win/issues/12545#issuecomment-1037225140
Just go to the config file at C:\Users\<username>\AppData\Roaming\Docker\settings.json, and set "wslEngineEnabled": true
I had to restart after saving.
I had the same problem. If you are using docker 4.5.0, try uninstall and install 4.4.4 instead. That worked for me.
A new version of Docker Desktop (4.5.1), released on 2022-02-15 fixes this problem.
If you are running Docker Desktop on Windows Home, installing 4.5.1 will switch it back to WSL 2 automatically. If you are running another version of Windows, and you want Docker Desktop to use the WSL 2 backend, you must manually switch by enabling the Use the WSL 2 based engine option in the Settings > General section. Alternatively, you can edit the Docker Desktop settings file located at %APPDATA%\Docker\settings.json and manually switch the value of the wslEngineEnabled field to true.
I also get the same problem after updating my Docker version from 4.4.4 to 4.5. It was crashed when I want to run my container today. I try to reinstall with 4.5 version and get the error "Docker Desktop stopped...". Then, I try to reinstall with 4.4.4 version, and now it just run perfectly fine like before.
Also had this issue on Mac (Intel chip) after updating to v4.5.0.
Reinstalling and a system restart solved the issue.

Installing Delphi via the command-line (i.e. non UI) for Docker image [duplicate]

This question already has answers here:
What is the minimal agent install footprint for Delphi build automation?
(2 answers)
Closed 4 years ago.
I am looking at converting our build machines to use Docker images, and although the Delphi compiler has a command line option, the actual installer itself does not seem to, and therefore requires a Windows user interface, meaning it can't be installer into Docker for Windows. Has anyone managed to build a Delphi compiler docker image?
There is an article Unattended Delphi installation on how to perform an unattended install of Delphi by using command line parameters, meaning that the installation does not require any user input and does not show any GUI. Unfortunately you do not specify which version of Delphi you want to install. If I remember correctly Delphi starting with version 2007 uses InstallAware as its installer. According to the question Can RAD Studio 2007 to XE6 be installed from pure command line? the instructions in the article are still valid for Delphi XE6 and possibly for later versions as well.

Docker over Linux but running Windows inside [duplicate]

This question already has answers here:
Can Windows containers be hosted on Linux?
(10 answers)
Closed 9 months ago.
I wonder if it is possible to run Windows docker container at Linux environment.
Yes, it is.
You can find here the list of all official Windows containers provided by Microsoft :
https://hub.docker.com/u/microsoft/

Running Jasmine on a Jenkins CI server [duplicate]

This question already has an answer here:
How to run Jasmine tests in TeamCity
(1 answer)
Closed 8 years ago.
I would like to run jasmine, for our Ruby on Rails client side, on a Jenkins CI server machine using rake jasmine:ci. Ideally, I would like it not to use any browser, alternatively if I try to run it with firefox v21 installed, it fails to get connection (I believe this is a known issue).
So to sum my short questions:
Is there a stable way to run it without invoking a browser?
Does anyone know if the firefox issue has been resolved?
I believe JASMINE_BROWSER can control which browser will be used, however I've failed to find instructions what are its legal values.
Have you thought about using phantomjs? It would allow you to not invoke a browser. Looks like this guard-phantomjs-jasmine on Github has the ability to work with jasmine. The documentation has a usecase for CI. Hope that helps!

Resources