app
app copied to clipboard
Make your Docker Compose applications reusable, and share them on Docker Hub
**Description** I use traefik as a proxy to allow multiple subdomains to be served under the same HTTP/HTTPS ports. The traefik service uses the network `ingress_www`. ``` $ docker network...
```sh $ docker app inspect ccrone/hello-world:0.0.1 hello-world 0.1.0 Maintained by: user Hello, World! Service (1) Replicas Ports Image ----------- -------- ----- ----- hello 1 8080 ccrone/cnab-demo@sha256:ba27d460cd1f22a1a4331bdf74f4fccbc025552357e8a3249c40ae216275de96 Parameters (2) Value --------------...
**- What I did** Added a range of automatically generated parameters for - replicas - limits - reservations **- How I did it** Overrides are materialized to CNAB parameters, whose...
**Description** When rendering it would be useful to specify more complex substitutions from settings.yml rather than being restricted to only single items. For instance, I should be able to specify...
**Proposal** I notice a lack of options, which exist in "docker stack deploy" but not in "docker-app deploy". In particular, they are not _--prune_ (already noted in #347) and _--resolve-image_.
**Description** The application I am working on requires some secrets e.g. we generate some auth tokens that are stored as docker secrets and utilized by services in the stack. Because...
**Description** One of the promise of the CNAB storage to a registry is that if a CNAB manifest is deeply copied (or mounted) into another repo (on the same or...
**Description** A YAML node can be disabled using a "enabled" key with a value: ```yaml version: "3.4" services: monitor: enabled: "! ${myapp.debug}" ``` But the [code handling this feature](https://github.com/docker/app/blob/master/internal/templateloader/loader.go#L53) says...
[Enhancement Request] - Use version metadata in docker-app configuration as an environment variable
I have a case where I want to keep a version of an image used in the docker app configuration to have the same tag as the version of the...
**Description** docker-app render changes "mode" property value of the configs when the numeric value start with "0" **Steps to reproduce the issue:** 1. Create a docker-compose with a config mode...