app
app copied to clipboard
Make your Docker Compose applications reusable, and share them on Docker Hub
**Proposal** While using `x-enabled` to disable a service, I have noticed that I'm frequently creating settings for each service that I want disabled. And, for the most part, those are...
Right now, the only way to decide your app renderer is setting `export DOCKERAPP_RENDERERS=some_renderer` before running `docker-app`. However, to do that, you need to know the renderer that the app...
**Description** It'd be helpful if there was an image for Docker App on Docker Hub, just like the [docker/compose](https://hub.docker.com/r/docker/compose/) image for Docker Compose. I'm experimenting with Docker App in my...
**Description** Docker Compose uses [environment variables for variable substitution](https://docs.docker.com/compose/environment-variables/) in Compose files. I leverage this heavily in GitLab CI pipelines to "render" Compose files (using `docker-compose config`). [CI variables](https://docs.gitlab.com/ce/ci/variables/README.html) are...
In Compose, we can specify multiple compose files by declaring the -f flag multiple times, so that we can combine multiple services together without having to define them into the...