Add umami

This commit is contained in:
Tobias Reisinger 2022-03-09 13:19:07 +01:00
parent 5783eea8c9
commit 2d279c5fa1
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
2 changed files with 15 additions and 0 deletions

5
umami/.env Normal file
View file

@ -0,0 +1,5 @@
DATABASE_URL=""
DATABASE_TYPE"postgresql"
HASH_SALT=""
FORCE_SSL="1"
HOSTNAME="analytics.serguzim.me"

10
umami/docker-compose.yml Normal file
View file

@ -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