├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── README.md └── security.md /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug report 2 | description: Create a report to help us improve! 3 | labels: 4 | - needs-triage 5 | body: 6 | - type: markdown 7 | attributes: 8 | value: | 9 | This repository is for reporting bugs with the Docker Desktop software, which we respond to on a best-effort basis. 10 | - type: textarea 11 | id: description 12 | attributes: 13 | label: Description 14 | description: Please give a clear and concise description of the bug 15 | validations: 16 | required: true 17 | - type: textarea 18 | id: repro 19 | attributes: 20 | label: Reproduce 21 | description: Steps to reproduce the bug 22 | placeholder: | 23 | 1. docker run ... 24 | 2. docker kill ... 25 | 3. docker rm ... 26 | validations: 27 | required: true 28 | - type: textarea 29 | id: expected 30 | attributes: 31 | label: Expected behavior 32 | description: What is the expected behavior? 33 | placeholder: | 34 | E.g. "`docker rm` should remove the container and cleanup all associated data" 35 | - type: textarea 36 | id: version 37 | attributes: 38 | label: docker version 39 | description: Output of `docker version` 40 | render: bash 41 | placeholder: | 42 | Client: 43 | Version: 20.10.17 44 | API version: 1.41 45 | Go version: go1.17.11 46 | Git commit: 100c70180fde3601def79a59cc3e996aa553c9b9 47 | Built: Mon Jun 6 21:36:39 UTC 2022 48 | OS/Arch: linux/amd64 49 | Context: default 50 | Experimental: true 51 | 52 | Server: 53 | Engine: 54 | Version: 20.10.17 55 | API version: 1.41 (minimum version 1.12) 56 | Go version: go1.17.11 57 | Git commit: a89b84221c8560e7a3dee2a653353429e7628424 58 | Built: Mon Jun 6 22:32:38 2022 59 | OS/Arch: linux/amd64 60 | Experimental: true 61 | containerd: 62 | Version: 1.6.6 63 | GitCommit: 10c12954828e7c7c9b6e0ea9b0c02b01407d3ae1 64 | runc: 65 | Version: 1.1.2 66 | GitCommit: a916309fff0f838eb94e928713dbc3c0d0ac7aa4 67 | docker-init: 68 | Version: 0.19.0 69 | GitCommit: 70 | validations: 71 | required: true 72 | - type: textarea 73 | id: info 74 | attributes: 75 | label: docker info 76 | description: Output of `docker info` 77 | render: bash 78 | placeholder: | 79 | Client: 80 | Context: default 81 | Debug Mode: false 82 | Plugins: 83 | buildx: Docker Buildx (Docker Inc., 0.8.2) 84 | compose: Docker Compose (Docker Inc., 2.6.0) 85 | 86 | Server: 87 | Containers: 4 88 | Running: 2 89 | Paused: 0 90 | Stopped: 2 91 | Images: 80 92 | Server Version: 20.10.17 93 | Storage Driver: overlay2 94 | Backing Filesystem: xfs 95 | Supports d_type: true 96 | Native Overlay Diff: false 97 | userxattr: false 98 | Logging Driver: local 99 | Cgroup Driver: cgroupfs 100 | Cgroup Version: 1 101 | Plugins: 102 | Volume: local 103 | Network: bridge host ipvlan macvlan null overlay 104 | Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog 105 | Swarm: inactive 106 | Runtimes: runc io.containerd.runc.v2 io.containerd.runtime.v1.linux 107 | Default Runtime: runc 108 | Init Binary: docker-init 109 | containerd version: 10c12954828e7c7c9b6e0ea9b0c02b01407d3ae1 110 | runc version: a916309fff0f838eb94e928713dbc3c0d0ac7aa4 111 | init version: 112 | Security Options: 113 | apparmor 114 | seccomp 115 | Profile: default 116 | Kernel Version: 5.13.0-1031-azure 117 | Operating System: Ubuntu 20.04.4 LTS 118 | OSType: linux 119 | Architecture: x86_64 120 | CPUs: 4 121 | Total Memory: 15.63GiB 122 | Name: dev 123 | ID: UC44:2RFL:7NQ5:GGFW:34O5:DYRE:CLOH:VLGZ:64AZ:GFXC:PY6H:SAHY 124 | Docker Root Dir: /var/lib/docker 125 | Debug Mode: true 126 | File Descriptors: 46 127 | Goroutines: 134 128 | System Time: 2022-07-06T18:07:54.812439392Z 129 | EventsListeners: 0 130 | Registry: https://index.docker.io/v1/ 131 | Labels: 132 | Experimental: true 133 | Insecure Registries: 134 | 127.0.0.0/8 135 | Live Restore Enabled: true 136 | validations: 137 | required: true 138 | - type: input 139 | id: diagnostics 140 | attributes: 141 | label: Diagnostics ID 142 | description: | 143 | [Generate a diagnostics ID](https://docs.docker.com/docker-for-windows/troubleshoot/#diagnose) either from inside the app or from the command line. 144 | validations: 145 | required: true 146 | - type: textarea 147 | id: additional 148 | attributes: 149 | label: Additional Info 150 | description: Additional info you want to provide such as logs, system info, environment, etc. 151 | validations: 152 | required: false 153 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | contact_links: 3 | - name: "Feature request" 4 | about: "Check our Public Roadmap to request new features on Docker Desktop." 5 | url: "https://github.com/docker/roadmap/issues" 6 | - name: "Docker support" 7 | about: "Get the help you need to build, share, and run your Docker applications." 8 | url: "https://www.docker.com/support/" 9 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Docker Desktop for Linux 2 | 3 | ### Getting Docker Desktop for Linux 4 | 5 | Docker Desktop for Linux is free to [download](https://docs.docker.com/desktop/install/linux-install/). 6 | 7 | ### Documentation 8 | 9 | If you don't understand something about Docker Desktop for Linux, the [documentation](https://docs.docker.com/desktop/get-started/) is a great place to look for answers. 10 | 11 | ### This Repository 12 | 13 | This repository contains an issue tracker for Docker Desktop for Linux -- an integrated Docker experience on Linux. If you find a problem with the software, first browse the existing issues or search from the bar at the top (`s` to focus) and then, if you don't find your issue, open a new issue. 14 | 15 | 16 | ### Component Projects 17 | 18 | Docker Desktop for Linux uses many open source components. A full list of 19 | components and licenses is available inside of Docker Desktop from `About Docker Desktop 20 | -> Acknowledgements` in the :whale: menu. 21 | -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- 1 | ### Reporting a Vulnerability 2 | 3 | Please **DO NOT** file a public issue, instead send your report privately to security@docker.com. 4 | 5 | Security reports are greatly appreciated and we will publicly thank you for it, although we will keep your name confidential if you request it. We also like to send gifts—if you're into swag, make sure to let us know. We currently do not offer a paid security bug bounty program, but are not ruling it out in the future. 6 | --------------------------------------------------------------------------------