forked from docker/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare DDL docs for GA (docker#14648)
* Prepare doc pages for DDL GA release - Add DDL screenshots Signed-off-by: Anca Iordache <[email protected]> * Menu entries for DDL Signed-off-by: Anca Iordache <[email protected]> * update installation instructions Signed-off-by: Anca Iordache <[email protected]> * Update download links Signed-off-by: Anca Iordache <[email protected]>
- Loading branch information
Showing
27 changed files
with
1,402 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
<!-- This text will be included in the Docker Desktop install topic for each Linux distribution --> | ||
|
||
To start Docker Desktop for Linux, search **Docker Desktop** on the | ||
**Applications** menu and open it. This launches the whale menu icon and opens | ||
the Docker Dashboard, reporting the status of Docker Desktop. | ||
|
||
Alternatively, open a terminal and run: | ||
|
||
```console | ||
$ systemctl --user start docker-desktop | ||
``` | ||
|
||
When Docker Desktop starts, it creates a dedicated [context](/engine/context/working-with-contexts) that the Docker CLI | ||
can use as a target and sets it as the current context in use. This is to avoid | ||
a clash with a local Docker Engine that may be running on the Linux host and | ||
using the default context. On shutdown, Docker Desktop resets the current | ||
context to the previous one. | ||
|
||
The Docker Desktop installer updates Docker Compose and the Docker CLI binaries | ||
on the host. It installs Docker Compose V2 and gives users the choice to | ||
link it as docker-compose from the Settings panel. Docker Desktop installs | ||
the new Docker CLI binary that includes cloud-integration capabilities in `/usr/local/bin` | ||
and creates a symlink to the classic Docker CLI at `/usr/local/bin/com.docker.cli`. | ||
|
||
After you’ve successfully installed Docker Desktop, you can check the versions | ||
of these binaries by running the following commands: | ||
|
||
```console | ||
$ docker compose version | ||
Docker Compose version v2.5.0 | ||
|
||
$ docker --version | ||
Docker version 20.10.14, build a224086349 | ||
|
||
$ docker version | ||
Client: Docker Engine - Community | ||
Cloud integration: 1.0.24 | ||
Version: 20.10.14 | ||
API version: 1.41 | ||
... | ||
``` | ||
|
||
To enable Docker Desktop to start on login, from the Docker menu, select | ||
**Settings** > **General** > **Start Docker Desktop when you log in**. | ||
|
||
Alternatively, open a terminal and run: | ||
|
||
```console | ||
$ systemctl --user enable docker-desktop | ||
``` | ||
|
||
To stop Docker Desktop, click on the whale menu tray icon to open the Docker menu and select **Quit Docker Desktop**. | ||
|
||
Alternatively, open a terminal and run: | ||
|
||
```console | ||
$ systemctl --user stop docker-desktop | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
.PHONY: | ||
check: | ||
for img in $$(git ls-files images); do \ | ||
base=$$(basename "$$img"); \ | ||
if ! git grep -q -F "$$base"; then \ | ||
echo >&2 "unused image: $$img"; \ | ||
pass=false; \ | ||
fi; \ | ||
done; \ | ||
$$pass |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.