github.com/simonferquel/app@v0.6.1-0.20181012141724-68b7cccf26ac/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: tac 6 # A short description of the application 7 description: my cool app 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: bob 13 email: 14 - name: joe 15 email: joe@joe.com 16 17 --- 18 # This section contains the Compose file that describes your application services. 19 version: "3.2" 20 services: 21 nginx: 22 image: nginx:${NGINX_VERSION} 23 command: nginx $NGINX_ARGS 24 25 --- 26 # This section contains the default values for your application settings. 27 NGINX_ARGS: FILL ME 28 NGINX_VERSION: latest