├── .github └── ISSUE_TEMPLATE.md └── README.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | ### Expected behavior 2 | 3 | ### Actual behavior 4 | 5 | ### Information 6 | 7 | - Full output of the diagnostics from "docker-diagnose" ran from one of the instance 8 | - A reproducible case if this is a bug, Dockerfiles FTW 9 | - Page URL if this is a docs issue or the name of a man page 10 | 11 | ### Steps to reproduce the behavior 12 | 13 | 1. ... 14 | 2. ... 15 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Docker CE for AWS 2 | 3 | ### Getting Docker CE for AWS 4 | 5 | "Docker CE for AWS" is free to deploy ![Docker CE for AWS](https://s3.amazonaws.com/cloudformation-examples/cloudformation-launch-stack.png) 6 | 7 | ### Documentation 8 | 9 | If you don't understand something about Docker CE for AWS, the [extensive 10 | documentation](https://docs.docker.com/docker-for-aws/) is a great place 11 | to look for answers. 12 | 13 | ### Support 14 | 15 | Users from the Docker CE community trade tips and tricks and discuss Docker CE 16 | for AWS in [the user forum](https://forums.docker.com/c/docker-for-aws). 17 | 18 | Problems with the Docker CE for AWS deployment can be filed as issues in this 19 | ([docker/for-aws](https://github.com/docker/for-aws)) repository. 20 | 21 | ### This Repository 22 | 23 | This repository contains an issue tracker for Docker CE for AWS -- an 24 | integrated Docker CE experience on AWS. If you find a problem 25 | with the software, first [browse the existing 26 | issues](https://github.com/docker/for-aws/issues) or search from the bar 27 | at the top (`s` to focus) and then, if you don't find your issue, [open 28 | a new issue](https://github.com/docker/for-aws/issues/new). 29 | 30 | ### Labels 31 | 32 | Initially, issues are 33 | [unlabeled](https://github.com/docker/for-aws/issues?q=is%3Aopen+is%3Aissue+no%3Alabel). Issues 34 | are labeled in order to make tracking them easier. The meaning of the 35 | labels is roughly: 36 | 37 | | Label | Meaning | 38 | |------------------|----------------------------------------------------| 39 | | [area/compose](https://github.com/docker/for-aws/labels/area/compose) | related to [docker/compose](https://github.com/docker/compose) | 40 | | [area/database](https://github.com/docker/for-aws/labels/area/database) | related to the configuration database | 41 | | [area/docker](https://github.com/docker/for-aws/labels/area/docker) | related to the Docker engine ([docker/docker](https://github.com/docker/docker)) | 42 | | [area/gui](https://github.com/docker/for-aws/labels/area/gui) | related to the Graphical User Interface | 43 | | [area/linux](https://github.com/docker/for-aws/labels/area/linux) | related to the Linux component | 44 | | [area/mounts](https://github.com/docker/for-aws/labels/area/mounts) | related to `-v` bind mounts | 45 | | [area/network](https://github.com/docker/for-aws/labels/area/network) | related to container networking | 46 | | [area/notary](https://github.com/docker/for-aws/labels/area/notary) | related to [docker/notary](https://github.com/docker/notary) | 47 | | [area/aws](https://github.com/docker/for-aws/labels/area/aws) | related to AWS integration | 48 | | [area/startup](https://github.com/docker/for-aws/labels/area/startup) | related to application installation or initialization | 49 | | [area/storage](https://github.com/docker/for-aws/labels/area/storage) | related to image and container storage ([storage drivers](https://docs.docker.com/engine/userguide/storagedriver/imagesandcontainers/)) | 50 | | [area/volumes](https://github.com/docker/for-aws/labels/area/volumes) | related to Docker volumes ([volume drivers](https://docs.docker.com/engine/reference/commandline/volume_create/)) | 51 | | [kind/bug](https://github.com/docker/for-aws/labels/kind/bug) | this issue describes a defect | 52 | | [kind/docs](https://github.com/docker/for-aws/labels/kind/docs) | this issue describes a documentation change | 53 | | [kind/enhancement](https://github.com/docker/for-aws/labels/kind/enhancement) | this issue describes a change to existing functionality | 54 | | [kind/feature](https://github.com/docker/for-aws/labels/kind/feature) | this issue describes totally new functionality | 55 | | [kind/performance](https://github.com/docker/for-aws/labels/kind/performance) | this issue describes a performance problem or measurement | 56 | | [status/0-triage](https://github.com/docker/for-aws/labels/status/0-triage) | The issue needs triaging | 57 | | [status/0-wont-fix](https://github.com/docker/for-aws/labels/status/0-wont-fix) | This issue will not be fixed and therefore can be closed | 58 | | [status/0-more-info-needed](https://github.com/docker/for-aws/labels/status/0-more-info-needed) | The issue needs more information before it can be triaged | 59 | | [status/1-acknowledged](https://github.com/docker/for-aws/labels/status/1-acknowledged) | The issue has been triaged and is being investigated | 60 | | [status/2-in-progress](https://github.com/docker/for-aws/labels/status/2-in-progress) | The issue has been assigned to a engineer and is waiting a fix | 61 | | [status/3-fixed](https://github.com/docker/for-aws/labels/status/3-fixed) | The issue has been fixed in `master` | 62 | | [status/4-fix-released-beta](https://github.com/docker/for-aws/labels/status/4-fix-released-beta) | The fix has been released! | 63 | | [status/4-fix-released-stable](https://github.com/docker/for-aws/labels/status/4-fix-released-stable) | The fix has been released! | 64 | 65 | ### Component Projects 66 | 67 | Docker for AWS uses many open source components. A full list of 68 | components and licenses is available within our [docs](https://docs.docker.com/docker-for-aws/opensource/) 69 | 70 | --------------------------------------------------------------------------------