OSX machines on travis-ci take more than 30 minutes to spawn. This makes it impossible for us to run unit tests for auto-sklearn and its dependencies SMAC3 and ConfigSpace. In case you’re having issues installing the pyrfr package, check out this installation suggestion on github. Possible other solutions (not tested): virtual machine. Gem install docker-sync.detailed installation instructions. Docker-sync is: Support for OSX, Windows, Linux and FreeBSD; Runs on Docker for Mac, Docker for Windows and Docker Toolbox; Uses either nativeosx, unison or rsync as possible strategies. The container performance is not influenced at all, see performance; Very efficient due to the.
Estimated reading time: 3 minutes
Docker Desktop for Mac is the Community version of Docker for Mac.You can download Docker Desktop for Mac from Docker Hub.
By downloading Docker Desktop, you agree to the terms of the Docker Software End User License Agreement and the Docker Data Processing Agreement.
System requirements
Your Mac must meet the following requirements to successfully install Docker Desktop:
macOS must be version 10.14 or newer. That is, Mojave, Catalina, or Big Sur. We recommend upgrading to the latest version of macOS.
If you experience any issues after upgrading your macOS to version 10.15, you must install the latest version of Docker Desktop to be compatible with this version of macOS.
Note
Docker supports Docker Desktop on the most recent versions of macOS. That is, the current release of macOS and the previous two releases. As new major versions of macOS are made generally available, Docker stops supporting the oldest version and supports the newest version of macOS (in addition to the previous two releases). Docker Desktop currently supports macOS Mojave, macOS Catalina, and macOS Big Sur.
At least 4 GB of RAM.
VirtualBox prior to version 4.3.30 must not be installed as it is not compatible with Docker Desktop.
Docker-credential-helpers is a suite of programs to use native stores to keep Docker credentials safe. Go to the Releases page and download the binary that works better for you. Installing using Docker¶ Docker is awesome, it allows users to run w3af without installing any of it’s dependencies. The only pre-requisite is to install docker, which is widely supported. Once the docker installation is running these steps will yield a running w3af console. The Docker Desktop installation includes Docker Engine, Docker CLI client, Docker Compose, Notary, Kubernetes, and Credential Helper. Install and run Docker Desktop on Mac Double-click Docker.dmg to open the installer, then drag the Docker icon to the Applications folder.
What’s included in the installer
The Docker Desktop installation includes Docker Engine, Docker CLI client, Docker Compose, Notary, Kubernetes, and Credential Helper.
Install and run Docker Desktop on Mac
Double-click
Docker.dmg
to open the installer, then drag the Docker icon to the Applications folder.Double-click
Docker.app
in the Applications folder to start Docker. (In the example below, the Applications folder is in “grid” view mode.)The Docker menu in the top status bar indicates that Docker Desktop is running, and accessible from a terminal.
If you’ve just installed the app, Docker Desktop launches the onboarding tutorial. The tutorial includes a simple exercise to build an example Docker image, run it as a container, push and save the image to Docker Hub.
Click the Docker menu () to seePreferences and other options.
Select About Docker to verify that you have the latest version.
Congratulations! You are now successfully running Docker Desktop.
If you would like to rerun the tutorial, go to the Docker Desktop menu and select Learn.
Automatic updates
Starting with Docker Desktop 3.0.0, updates to Docker Desktop will be available automatically as delta updates from the previous version.
When an update is available, Docker Desktop automatically downloads it to your machine and displays an icon to indicate the availability of a newer version. All you need to do now is to click Update and restart from the Docker menu. This installs the latest update and restarts Docker Desktop for the changes to take effect.
Uninstall Docker Desktop
To uninstall Docker Desktop from your Mac:
- From the Docker menu, select Troubleshoot and then select Uninstall.
- Click Uninstall to confirm your selection.
Important
Uninstalling Docker Desktop destroys Docker containers, images, volumes, andother Docker related data local to the machine, and removes the files generatedby the application. Refer to the back up and restore datasection to learn how to preserve important data before uninstalling.
Where to go next
- Getting started provides an overview of Docker Desktop on Mac, basic Docker command examples, how to get help or give feedback, and links to other topics about Docker Desktop on Mac.
- Troubleshooting describes common problems, workarounds, howto run and submit diagnostics, and submit issues.
- FAQs provide answers to frequently asked questions.
- Release notes lists component updates, new features, and improvements associated with Docker Desktop releases.
- Get started with Docker provides a general Docker tutorial.
- Back up and restore data provides instructionson backing up and restoring data related to Docker.
Rclone is a Go program and comes as a single binary file.
Quickstart
- Download the relevant binary.
- Extract the
rclone
orrclone.exe
binary from the archive - Run
rclone config
to setup. See rclone config docs for more details.
See below for some expanded Linux / macOS instructions.
See the Usage section of the docs for how to use rclone, orrun rclone -h
.
Script installation
To install rclone on Linux/macOS/BSD systems, run:
For beta installation, run:
Note that this script checks the version of rclone installed first andwon't re-download if not needed.
Linux installation from precompiled binary
Fetch and unpack
Copy binary file
Install manpage
Run rclone config
to setup. See rclone config docs for more details.
macOS installation with brew
macOS installation from precompiled binary, using curl
To avoid problems with macOS gatekeeper enforcing the binary to be signed andnotarized it is enough to download with curl
.
Download the latest version of rclone.
Unzip the download and cd to the extracted folder.
Move rclone to your $PATH. You will be prompted for your password.
(the mkdir
command is safe to run, even if the directory already exists).
Install Docker Using Wsl
Remove the leftover files.
Run rclone config
to setup. See rclone config docs for more details.
macOS installation from precompiled binary, using a web browser
When downloading a binary with a web browser, the browser will set the macOSgatekeeper quarantine attribute. Starting from Catalina, when attempting to runrclone
, a pop-up will appear saying:
The simplest fix is to run
Install with docker
The rclone maintains a docker image for rclone.These images are autobuilt by docker hub from the rclone source basedon a minimal Alpine linux image.
The :latest
tag will always point to the latest stable release. Youcan use the :beta
tag to get the latest build from master. You canalso use version tags, e.g. :1.49.1
, :1.49
or :1
.
There are a few command line options to consider when starting an rclone Docker containerfrom the rclone image.
You need to mount the host rclone config dir at
/config/rclone
into the Dockercontainer. Due to the fact that rclone updates tokens inside its config file, and thatthe update process involves a file rename, you need to mount the whole host rcloneconfig dir, not just the single host rclone config file.You need to mount a host data dir at
/data
into the Docker container.By default, the rclone binary inside a Docker container runs with UID=0 (root).As a result, all files created in a run will have UID=0. If your config and data filesreside on the host with a non-root UID:GID, you need to pass these on the containerstart command line.
If you want to access the RC interface (either via the API or the Web UI), it isrequired to set the
--rc-addr
to:5572
in order to connect to it from outsidethe container. An explanation about why this is necessary is present here.- NOTE: Users running this container with the docker network set to
host
shouldprobably set it to listen to localhost only, with127.0.0.1:5572
as the value for--rc-addr
- NOTE: Users running this container with the docker network set to
It is possible to use
rclone mount
inside a userspace Docker container, and exposethe resulting fuse mount to the host. The exactdocker run
options to do that mightvary slightly between hosts. See, e.g. the discussion in thisthread.You also need to mount the host
/etc/passwd
and/etc/group
for fuse to work insidethe container.
Here are some commands tested on an Ubuntu 18.04.3 host:
Install from source
Make sure you have at least Go 1.12installed. Download go if necessary. Thelatest release is recommended. Then
This will leave you a checked out version of rclone you can modify andsend pull requests with. If you use make
instead of go build
thenthe rclone build will have the correct version information in it.
Install Docker Mac Using Brew
You can also build the latest stable rclone with:
or the latest version (equivalent to the beta) with
These will build the binary in $(go env GOPATH)/bin
(~/go/bin/rclone
by default) after downloading the source to the gomodule cache. Note - do not use the -u
flag here. This causes goto try to update the dependencies that rclone uses and sometimes thesedon't work with the current version of rclone.
Installation with Ansible
This can be done with Stefan Weichinger's ansiblerole.
Instructions
Install Docker Script
git clone https://github.com/stefangweichinger/ansible-rclone.git
into your local roles-directory- add the role to the hosts you want rclone installed to: