diff --git a/umami/.env b/umami/.env new file mode 100644 index 0000000..485dd34 --- /dev/null +++ b/umami/.env @@ -0,0 +1,5 @@ +DATABASE_URL="" +DATABASE_TYPE"postgresql" +HASH_SALT="" +FORCE_SSL="1" +HOSTNAME="analytics.serguzim.me" diff --git a/umami/docker-compose.yml b/umami/docker-compose.yml new file mode 100644 index 0000000..e30bb4d --- /dev/null +++ b/umami/docker-compose.yml @@ -0,0 +1,10 @@ +version: '3' +services: + umami: + image: ghcr.io/mikecao/umami:postgresql-latest + ports: + - "3013:3000" + env_file: + - .env + - .secret.env + restart: always