github.com/docker/app@v0.9.1-beta3.0.20210611140623-a48f773ab002/e2e/testdata/init-singlefile.dockerapp (about)

     1  # This section contains your application metadata.
     2  # Version of the application
     3  version: 0.1.0
     4  # Name of the application
     5  name: myapp
     6  # A short description of the application
     7  description: some description
     8  # List of application maintainers with name and email for each
     9  maintainers:
    10    - name: dev1
    11      email: 
    12    - name: dev2
    13      email: dev2@example.com
    14  
    15  ---
    16  # This section contains the Compose file that describes your application services.
    17  version: "3.2"
    18  services:
    19    nginx:
    20      image: nginx:latest
    21      command: nginx $NGINX_ARGS ${NGINX_DRY_RUN}
    22  
    23  ---
    24  # This section contains the default values for your application parameters.
    25  NGINX_ARGS: FILL ME
    26  NGINX_DRY_RUN: -t