diff --git a/services.yml.md b/services.yml.md new file mode 100644 index 0000000..e32c55e --- /dev/null +++ b/services.yml.md @@ -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 +``` \ No newline at end of file