Created services.yml (markdown)

master
Hunter Long 2020-05-11 11:51:08 -07:00
parent ddfcf5fff4
commit 8adacba357
1 changed files with 47 additions and 0 deletions

47
services.yml.md Normal file

@ -0,0 +1,47 @@
```yaml
x-tcpservice: &tcpservice
type: tcp
check_interval: 60
timeout: 15
allow_notifications: true
notify_after: 0
notify_all_changes: true
public: true
redirect: true
x-httpservice: &httpservice
type: http
check_interval: 45
timeout: 10
allow_notifications: true
notify_after: 2
notify_all_changes: true
public: true
redirect: true
services:
- name: traefik
type: tcp
domain: traefik
port: 80
<<: *tcpservice
- name: portainer
type: tcp
domain: portainer
port: 9000
<<: *tcpservice
- name: organizr
type: tcp
domain: organizr
port: 80
<<: *tcpservice
- name: heimdall
type: tcp
domain: heimdall
port: 80
<<: *tcpservice
```