-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
menu.dockerapp
46 lines (40 loc) · 1.13 KB
/
menu.dockerapp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# This section contains your application metadata.
# Version of the application
version: 0.1.0
# Name of the application
name: menu
# A short description of the application
description:
# Namespace to use when pushing to a registry. This is typically your Hub username.
namespace: dogvscat
# List of application maintainers with name and email for each
maintainers:
- name: Bret Fisher
email: [email protected]
---
# This section contains the Compose file that describes your application services.
version: '3.4'
services:
menu:
image: bretfisher/dogvscat-menu
build:
context: menu
deploy:
replicas: 3
labels:
traefik.http.routers.dogvs.rule: Host(`www.dogvs.cat`) || Host(`dogvs.cat`)
traefik.http.routers.dogvs.entryPoints: websecure
traefik.http.routers.dogvs.service: dogvs
traefik.http.services.dogvs.loadbalancer.server.port: 80
# logging:
# driver: "gelf"
# options:
# gelf-address: "udp://127.0.0.1:5000"
networks:
- proxy
networks:
proxy:
external: true
---
# This section contains the default values for your application settings.
{}