app
app copied to clipboard
Make your Docker Compose applications reusable, and share them on Docker Hub
Docker product page https://www.docker.com/products/docker-app presents this tool without mentioning a word "experimental". Docker docs page for App https://docs.docker.com/engine/reference/commandline/app_version/ stil warns about being experimental. My questions are: - is the docker...
Hello, I am wondering if it is possible to define inline files as discussed here? https://github.com/docker/compose/issues/3538 It's implied that it's possible to do so using `docker app` in that discussion,...
HI I'm very interested in Docker App(https://docs.docker.com/app/working-with-app/) project . I think that lately, There is no update on Docker App project. who do you know Docker App road map in...
**Description** `docker app build/validate` does not involve parameter substitution -> _false negatives_ **Steps to reproduce the issue:** 1. *docker-compose.yml* ```yml version: '3.2' services: hello-world: image: hello-world volumes: - ${test}:/path/to/bar ```...
**Description** We've encountered users of our system that like to separate the downloading of an update from the applying of an update. I would like to add an optional flag...
I am using V0.8.0. I am following the README file example, but some commands are wrong: ``` $ docker app build . -f hello.dockerapp -t cdupont2/hello:0.1.0 unknown shorthand flag: 'f'...
**Description** PR #432 introduced a change to [Forbid variable substitution on service's image field](https://github.com/docker/app/pull/432). This change significantly impacts my ability to use docker-app in CI/CD pipelines. **Use Case** Let's say...
**- What I did** **- How I did it** **- How to verify it** **- Description for the changelog** **- A picture of a cute animal (not mandatory)**
**Description** By default, the most common way (from my perspective) is to set some default values for the keys specified in the parameters file, which is in the root of...
**Description** I have a dockerfile which takes a build arg (it's an access token). This dockerfile is referenced as the build of a service in docker-compose.yml. running `docker-compose build --build-arg...