├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md └── ISSUE_TEMPLATE.md └── README.md /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: enhancement 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Tell us about your request** 11 | A clear and concise description of what you want to happen or the change you would like to see 12 | 13 | **Which service(s) is this request for?** 14 | Let us know which product(s) you want this for? 15 | 16 | **Tell us about the problem you're trying to solve. What are you trying to do, and why is it hard?** 17 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 18 | 19 | **Are you currently working around the issue?** 20 | A clear and concise description of any alternative solutions or features you've considered or are using today. 21 | 22 | **Additional context** 23 | Add any other context or screenshots about the feature request here. 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: bug 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Version [e.g. 22] 29 | 30 | **Version of Docker Desktop:** 31 | You can find the version by clicking on the `About Docker Desktop` menu 32 | ``` 33 | (paste your output here) 34 | ``` 35 | 36 | **Additional context** 37 | Add any other context about the problem here. 38 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 31 | 32 | **Description** 33 | 34 | 37 | 38 | **Steps to reproduce the issue:** 39 | 1. 40 | 2. 41 | 3. 42 | 43 | **Describe the results you received:** 44 | 45 | 46 | **Describe the results you expected:** 47 | 48 | 49 | **Version of Docker Desktop:** 50 | You can find the version by clicking on the `About Docker Desktop` menu 51 | ``` 52 | (paste your output here) 53 | ``` 54 | 55 | **Additional information you deem important (e.g. issue happens only occasionally):** 56 | 57 | **Output of `docker version`:** 58 | 59 | ``` 60 | (paste your output here) 61 | ``` 62 | 63 | **Output of `docker context show`:** 64 | You can also run `docker context inspect context-name` to give us more details but don't forget to remove sensitive content. 65 | 66 | ``` 67 | (paste your output here) 68 | ``` 69 | 70 | **Output of `docker info`:** 71 | 72 | ``` 73 | (paste your output here) 74 | ``` 75 | 76 | **Additional environment details (AWS ECS, Azure ACI, local, etc.):** 77 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > [!WARNING] 2 | > Dev Environments has been deprecated and removed from Docker Desktop version 4.42 and later. 3 | 4 | # Dev Environments 5 | This repository contains a feedback and issue tracker for Docker Dev Environments. 6 | 7 | ## Getting Docker Environments 8 | Docker Dev Environments are free as part of Docker Desktop for Mac and Windows ([download](https://www.docker.com/products/docker-desktop)). 9 | 10 | ## Introduction 11 | Docker Dev Environments make sharing and collaborating on your code easier than ever before. With just one click, you can share your work-in-progress code with your entire team for faster, higher-quality code reviews. That means less time fixing dependencies, and more time writing new code. With your whole team's work near at hand, you’re just one click away from faster code collaboration. 12 | 13 | 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 | If you have new feature requests/improvements then please feel free to open a new feature request here, if you have a new idea not related to Dev Environments then please add something to Dockers public roadmap [See the roadmap](http://github.com/docker/roadmap) 16 | 17 | [Contribute to our roadmap](https://github.com/docker/roadmap/issues/new/choose) 18 | 19 | ### Early Access to features 20 | For users of Docker Desktop interested in early access to new features please join our Developer Preview Program. 21 | 22 | ### Security 23 | Please do not create a public github issue. If you discover a potential security issue in this project we ask that you notify Docker Security send your report privately to security@docker.com. Please do not create a public github issue. 24 | 25 | ## FAQs 26 | Q: How do I get started with Dev Environments? 27 | 28 | A: Please read through our [docs](https://docs.docker.com/desktop/dev-environments/). 29 | 30 | Q: I have a bug on Docker Desktop not related to Dev Environments. 31 | 32 | A: Please open an issue either on for win, for mac or on engine as appropriate. 33 | 34 | - [Docker Desktop Windows](https://github.com/docker/for-win/) 35 | - [Docker Desktop Mac](https://github.com/docker/for-mac/) 36 | - [Docker Engine](https://github.com/moby/moby) 37 | 38 | Q: How do I use the sharing feature? 39 | 40 | A: Sharing of Dev Environments is a team feature, check out our team plans to find out more. 41 | 42 | # License 43 | This library is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. 44 | 45 | If you are curious about anything else Docker related then please head over to: www.docker.com 46 | --------------------------------------------------------------------------------