From 3e5d24328b5fe787a5d21ba8860e9720e9320f36 Mon Sep 17 00:00:00 2001 From: Bryan Joshua Pedini Date: Wed, 5 Apr 2023 14:34:30 +0200 Subject: [PATCH] turned base into uptime kuma deployment --- LICENSE | 2 +- README.md | 3 +-- docker-compose.yml | 5 ++++- env.example | 12 ++++++++---- 4 files changed, 14 insertions(+), 8 deletions(-) diff --git a/LICENSE b/LICENSE index fe6f694..614f30c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Bryan Joshua Pedini +Copyright (c) 2023 Bryan Joshua Pedini Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 3ffde1e..cf96d1d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1 @@ -# Base App Deployment -This is the base on which (almost) every deployment is sort-of-based on. +# Uptime Kuma Deployment diff --git a/docker-compose.yml b/docker-compose.yml index cf8e041..9a06465 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,7 @@ --- services: - app: + uptimekuma: + image: louislam/uptime-kuma:${UPTIMEKUMA_VERSION} restart: unless-stopped labels: ### Section Træfik @@ -29,6 +30,8 @@ services: - diun.exclude_tags=${DIUN_EXCLUDE} networks: - traefik + volumes: + - ${UPTIMEKUMA_DATA}:/app/data networks: traefik: diff --git a/env.example b/env.example index 263f7aa..314c2e2 100644 --- a/env.example +++ b/env.example @@ -1,10 +1,10 @@ # Træfik TRAEFIK_ENABLED=true TRAEFIK_NETWORK=traefik -TRAEFIK_ROUTER=app_example_com -TRAEFIK_SERVICE=app_example_com -TRAEFIK_SERVICE_PORT=80 -TRAEFIK_MATCHRULE=Host(`app.example.com`) +TRAEFIK_ROUTER=uptime_example_com +TRAEFIK_SERVICE=uptime_example_com +TRAEFIK_SERVICE_PORT=3001 +TRAEFIK_MATCHRULE=Host(`uptime.example.com`) TRAEFIK_TLSENABLED=true TRAEFIK_CERTRESOLVER=letsencrypt TRAEFIK_HTTP_MIDDLEWARES=http-to-https @@ -16,3 +16,7 @@ DIUN_WATCHREPO=true DIUN_SORTALGO=semver DIUN_INCLUDE= DIUN_EXCLUDE= + +# Uptime Kuma +UPTIMEKUMA_VERSION=1.21.2 +UPTIMEKUMA_DATA=./data/uptimekuma