github.com/simonferquel/app@v0.6.1-0.20181012141724-68b7cccf26ac/examples/hello-world/hello-world.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: hello-world
     6  # A short description of the application
     7  description: "Hello, World!"
     8  # Namespace to use when pushing to a registry. This is typically your Hub username.
     9  namespace: myHubUsername
    10  # List of application maintainers with name and email for each
    11  maintainers:
    12    - name: user
    13      email: "user@email.com"
    14  
    15  ---
    16  # This section contains the Compose file that describes your application services.
    17  version: "3.6"
    18  services:
    19    hello:
    20      image: hashicorp/http-echo
    21      command: ["-text", "${text}"]
    22      ports:
    23        - ${port}:5678
    24  
    25  ---
    26  # This section contains the default values for your application settings.
    27  port: 8080
    28  text: Hello, World!